:root {
    --bg: #04080d;
    --bg-soft: #0a1219;
    --surface: rgba(10, 18, 26, 0.78);
    --surface-2: rgba(12, 22, 31, 0.92);
    --surface-3: rgba(255, 255, 255, 0.06);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f7f4;
    --muted: rgba(233, 239, 235, 0.68);
    --muted-strong: rgba(233, 239, 235, 0.86);
    --accent: #8ee7d7;
    --accent-strong: #c9fff4;
    --accent-deep: #62bfae;
    --gold: #d7c39a;
    --success: #25d366;
    --shadow-xl: 0 32px 110px rgba(0, 0, 0, 0.34);
    --shadow-lg: 0 22px 64px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.2);
    --radius-xs: 12px;
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 40px;
    --container: 1200px;
    --section-space: clamp(84px, 9vw, 132px);
    --header-height: 84px;
    --motion-fast: 220ms;
    --motion-medium: 420ms;
    --motion-slow: 900ms;
    --glow-intensity: 0.26;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% -10%, rgba(83, 167, 193, 0.18), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(142, 231, 215, 0.12), transparent 24%),
        linear-gradient(180deg, #03070b 0%, #071018 34%, #060c13 67%, #03070b 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 72%);
    opacity: 0.26;
    z-index: 0;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 15px 16px;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.shell {
    width: min(var(--container), calc(100vw - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section,
.page-section,
section[id] {
    scroll-margin-top: 110px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    padding: 12px 16px;
    background: var(--accent);
    color: #071116;
    border-radius: 999px;
    z-index: 100;
    transition: top var(--motion-fast) ease;
}

.skip-link:focus {
    top: 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(142, 231, 215, 0.7);
}

.section {
    position: relative;
    padding: var(--section-space) 0;
}

.section-header,
.page-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.section-header > *,
.page-header > * {
    min-width: 0;
}

.section-title,
.page-title {
    margin: 16px 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-copy,
.page-copy {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.inline-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.9rem;
}

.inline-note::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.primary-button,
.secondary-button,
.ghost-button,
.whatsapp-button,
.text-button,
.service-link,
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    border-radius: 18px;
    transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, border-color var(--motion-fast) ease, background var(--motion-fast) ease, color var(--motion-fast) ease;
}

.primary-button,
.page-link.primary,
.service-link.primary {
    padding: 0 26px;
    color: #071116;
    background: linear-gradient(180deg, rgba(142, 231, 215, 0.98), rgba(98, 191, 174, 0.94));
    box-shadow: 0 16px 36px rgba(98, 191, 174, 0.22);
}

.secondary-button,
.page-link.secondary,
.service-link.secondary {
    padding: 0 24px;
    color: var(--text);
    border: 1px solid rgba(142, 231, 215, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.ghost-button,
.text-button {
    padding: 0 18px;
    color: var(--muted-strong);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.whatsapp-button {
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.24);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.whatsapp-button:hover,
.service-link:hover,
.page-link:hover,
.text-button:hover {
    transform: translateY(-2px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    padding: 16px 0;
    transition: padding var(--motion-fast) ease, background var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.site-header.is-scrolled {
    padding: 10px 0;
}

.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(7, 13, 19, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 56px rgba(0, 0, 0, 0.24);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 52px;
    height: 52px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy small {
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand-copy strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.header-nav a {
    padding: 14px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
}

.header-nav a:hover,
.header-nav a.is-active {
    color: var(--accent-strong);
    background: rgba(255, 255, 255, 0.05);
}

.header-cta {
    padding: 0 20px;
    min-height: 50px;
    border-radius: 999px;
    background: rgba(142, 231, 215, 0.1);
    border: 1px solid rgba(142, 231, 215, 0.24);
    color: var(--accent-strong);
    font-weight: 500;
}

.mobile-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line-strong);
    background: rgba(0, 0, 0, 0.34);
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: #fff;
    border-radius: 999px;
    transition: transform var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 39;
    display: grid;
    place-items: center;
    padding: 120px 24px 32px;
    background: rgba(3, 7, 11, 0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-medium) ease;
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-inner {
    width: min(440px, 100%);
    display: grid;
    gap: 12px;
}

.mobile-nav a {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    font-size: 1.1rem;
    text-align: center;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding: 154px 0 72px;
    overflow: hidden;
}

.hero-bg,
.hero-overlay,
.hero-radiance,
.hero-orbit-layer,
.hero-landscape {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(1.05) brightness(0.42) contrast(1.04);
    transform: scale(1.05);
    animation: hero-drift 24s ease-in-out infinite alternate;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(3, 7, 11, 0.34) 0%, rgba(3, 7, 11, 0.66) 44%, rgba(3, 7, 11, 0.9) 76%, rgba(3, 7, 11, 0.98) 100%),
        radial-gradient(circle at 50% 52%, rgba(19, 112, 126, 0.18), transparent 22%);
}

.hero-radiance {
    background:
        radial-gradient(circle at 50% 56%, rgba(142, 231, 215, 0.18), transparent 24%),
        radial-gradient(circle at 30% 22%, rgba(90, 146, 182, 0.12), transparent 16%),
        radial-gradient(circle at 72% 30%, rgba(142, 231, 215, 0.08), transparent 18%);
    filter: blur(26px);
    animation: hero-breathe 12s ease-in-out infinite;
}

.hero-orbit-layer {
    inset: 12% 6% auto;
    height: 52%;
    opacity: 0.72;
}

.hero-orbit-layer svg,
.hero-landscape svg {
    width: 100%;
    height: 100%;
    display: block;
}

.orbit-line {
    fill: none;
    stroke: rgba(142, 231, 215, 0.16);
    stroke-width: 1.2;
    stroke-dasharray: 12 18;
    animation: orbit-dash 26s linear infinite;
}

.orbit-dot {
    fill: var(--accent-strong);
    filter: drop-shadow(0 0 12px rgba(201, 255, 244, 0.92));
    animation: orbit-pulse 3.6s ease-in-out infinite;
}

.hero-landscape {
    inset: auto 0 0;
    height: min(40vh, 320px);
    opacity: 0.98;
}

.hero-shell {
    position: relative;
}

.hero-content {
    max-width: 760px;
}

.hero-title {
    margin: 24px 0 0;
    font-size: clamp(3.7rem, 7.8vw, 7.4rem);
    line-height: 0.94;
    letter-spacing: 0;
    font-weight: 500;
}

.hero-title .normal {
    color: rgba(247, 251, 250, 0.96);
}

.hero-title .handwritten {
    color: var(--accent-strong);
    font-family: "Caveat", cursive;
    font-weight: 600;
    display: inline-block;
    margin-left: 12px;
    transform: translateY(-8px);
    text-shadow: 0 0 24px rgba(142, 231, 215, 0.16);
}

.hero-subtitle {
    margin: 24px 0 0;
    max-width: 640px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
}

.hero-trust-item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.overview-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.overview-line {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.overview-line svg {
    width: 100%;
    height: 100%;
}

.overview-line path,
.overview-line circle {
    fill: none;
    stroke: rgba(142, 231, 215, 0.16);
    stroke-width: 1.4;
}

.overview-line .line-dot {
    fill: var(--accent);
    stroke: none;
}

.overview-card,
.service-panel,
.work-card,
.how-panel,
.proof-panel,
.pricing-card,
.faq-item,
.contact-panel,
.manifesto-card,
.subpage-panel,
.detail-card,
.process-card,
.related-card,
.case-summary-card,
.case-quote,
.metric-chip {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow-lg);
}

.overview-card {
    padding: 28px;
    min-height: 280px;
    backdrop-filter: blur(16px);
}

.overview-card::before,
.service-panel::before,
.work-card::before,
.how-panel::before,
.subpage-panel::before,
.detail-card::before,
.process-card::before,
.related-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(142, 231, 215, 0.12), transparent 32%);
    pointer-events: none;
}

.overview-card h3,
.service-panel h3,
.work-card h3,
.pricing-card h3,
.subpage-panel h3,
.detail-card h3,
.process-card h3,
.related-card h3,
.case-summary-card h3 {
    margin: 18px 0 0;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.overview-card p,
.service-panel p,
.work-card p,
.how-copy,
.proof-copy,
.pricing-card p,
.faq-answer,
.contact-copy,
.manifesto-card p,
.subpage-panel p,
.detail-card p,
.process-card p,
.related-card p,
.case-body p,
.case-summary-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.card-meta,
.service-meta,
.case-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.metric-chip,
.service-badge,
.work-tag,
.pricing-tag,
.case-tag,
.page-kicker,
.page-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.metric-chip::before,
.service-badge::before,
.work-tag::before,
.pricing-tag::before,
.case-tag::before,
.page-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.card-link-row,
.service-link-row,
.work-actions,
.page-link-row,
.related-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.service-stack {
    display: grid;
    gap: 24px;
}

.service-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: 24px;
    padding: 26px;
    background: linear-gradient(180deg, rgba(8, 16, 24, 0.94), rgba(9, 17, 25, 0.98));
}

.service-visual {
    position: relative;
    min-height: 270px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at center, rgba(142, 231, 215, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    overflow: hidden;
}

.service-visual::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-grid-line {
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 1;
}

.service-flow {
    fill: none;
    stroke: rgba(142, 231, 215, 0.3);
    stroke-width: 2;
    stroke-dasharray: 12 16;
    animation: orbit-dash 18s linear infinite;
}

.service-flow-strong {
    stroke: rgba(142, 231, 215, 0.84);
}

.service-node {
    fill: rgba(142, 231, 215, 0.08);
    stroke: rgba(142, 231, 215, 0.42);
    stroke-width: 1.6;
}

.service-node-accent {
    fill: rgba(201, 255, 244, 0.9);
    filter: drop-shadow(0 0 12px rgba(201, 255, 244, 0.7));
}

.service-body {
    display: grid;
    align-content: center;
}

.service-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.service-header .inline-note {
    margin-left: auto;
}

.service-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted-strong);
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(142, 231, 215, 0.86);
    box-shadow: 0 0 14px rgba(142, 231, 215, 0.42);
}

.service-support-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.7;
}

.work-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 20px;
}

.work-column {
    display: grid;
    gap: 20px;
}

.work-card {
    min-height: 340px;
    background: #0a131b;
}

.work-card.is-featured {
    min-height: 560px;
}

.work-card-media {
    position: absolute;
    inset: 0;
}

.work-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) brightness(0.76);
    transition: transform var(--motion-slow) ease, filter var(--motion-medium) ease;
}

.work-card:hover .work-card-media img {
    transform: scale(1.04);
    filter: saturate(1.1) brightness(0.92);
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(5, 9, 14, 0.18) 35%, rgba(5, 9, 14, 0.82));
}

.work-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
    padding: 28px;
}

.work-actions {
    margin-top: 22px;
}

.case-play {
    padding: 0 18px;
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.how-panel {
    padding: 30px;
    background: linear-gradient(180deg, rgba(8, 15, 22, 0.96), rgba(7, 14, 20, 0.98));
}

.how-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.how-tab {
    padding: 0 18px;
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
}

.how-tab.is-active {
    color: var(--accent-strong);
    border-color: rgba(142, 231, 215, 0.28);
    background: rgba(142, 231, 215, 0.09);
}

.how-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 22px;
}

.how-steps {
    display: grid;
    gap: 14px;
}

.how-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 18px 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.how-step-index {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(142, 231, 215, 0.08);
    color: var(--accent-strong);
    font-weight: 700;
}

.how-step-copy h3 {
    margin: 0;
    font-size: 1.08rem;
}

.how-step-copy p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.how-step-time {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.how-stage {
    position: relative;
    min-height: 520px;
    padding: 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 50%, rgba(142, 231, 215, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    overflow: hidden;
}

.how-stage::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.how-stage-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 19%, rgba(255, 255, 255, 0.05) 19%, rgba(255, 255, 255, 0.05) 19.3%, transparent 19.3%, transparent 48%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0.05) 48.3%, transparent 48.3%, transparent 77%, rgba(255, 255, 255, 0.05) 77%, rgba(255, 255, 255, 0.05) 77.3%, transparent 77.3%),
        linear-gradient(180deg, transparent 22%, rgba(255, 255, 255, 0.05) 22%, rgba(255, 255, 255, 0.05) 22.4%, transparent 22.4%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 50.4%, transparent 50.4%, transparent 78%, rgba(255, 255, 255, 0.05) 78%, rgba(255, 255, 255, 0.05) 78.4%, transparent 78.4%);
    opacity: 0.65;
}

.how-stage-copy {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.how-stage-title {
    margin: 14px 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.how-stage-summary {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.how-stage-metrics {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.how-stage-metrics span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
}

.how-stage-svg {
    position: absolute;
    right: 24px;
    bottom: 20px;
    width: min(62%, 440px);
    height: 60%;
    opacity: 0.94;
}

.how-stage-svg svg {
    width: 100%;
    height: 100%;
}
.proof-grid {
    display: grid;
    gap: 20px;
}

.proof-panel {
    padding: 30px;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-top: 22px;
}

.logo-row img {
    height: 24px;
    width: auto;
    opacity: 0.78;
    filter: grayscale(100%) brightness(1.8);
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.proof-metric {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-metric strong {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0;
}

.proof-metric span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
}

.pricing-grid,
.detail-grid,
.process-grid,
.related-grid,
.case-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-card {
    padding: 26px;
}

.pricing-price {
    margin-top: 20px;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: 0;
    font-family: "Fraunces", Georgia, serif;
}

.pricing-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 20px 22px;
    text-align: left;
    font-size: 1.04rem;
    font-weight: 500;
}

.faq-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--accent-strong);
    border-radius: 999px;
    transition: transform var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.faq-icon::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0);
}

.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--motion-medium) ease;
}

.faq-item.is-open .faq-answer-wrap {
    grid-template-rows: 1fr;
}

.faq-answer {
    min-height: 0;
    overflow: hidden;
    padding: 0 22px 0;
}

.faq-item.is-open .faq-answer {
    padding-bottom: 22px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 20px;
}

.contact-panel {
    padding: 28px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.contact-card {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card strong {
    display: block;
}

.contact-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-note {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
    line-height: 1.7;
}

.form-message {
    display: none;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(142, 231, 215, 0.08);
    border: 1px solid rgba(142, 231, 215, 0.2);
    color: var(--accent-strong);
}

.form-message.is-visible {
    display: block;
}

.manifesto-card {
    padding: 34px;
    background: linear-gradient(180deg, rgba(7, 13, 19, 0.96), rgba(7, 12, 18, 0.98));
}

.manifesto-card h2 {
    margin: 18px 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.manifesto-card h2 span {
    color: var(--accent-strong);
    font-family: "Caveat", cursive;
    font-weight: 600;
}

.manifesto-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.manifesto-pills span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
}

.site-footer {
    padding: 28px 0 52px;
    color: rgba(255, 255, 255, 0.54);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a:hover {
    color: var(--accent-strong);
}

.page-hero {
    position: relative;
    padding: 172px 0 88px;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(142, 231, 215, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.page-hero.theme-video::after,
.page-hero.theme-web::after,
.page-hero.theme-automation::after,
.page-hero.theme-case::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-size: cover;
    background-position: center;
    filter: saturate(1.2) brightness(0.8);
}

.page-hero.theme-video::after {
    background-image: url("/images/services-overview-1400.webp");
}

.page-hero.theme-web::after {
    background-image: url("/images/process-flow-1600.webp");
}

.page-hero.theme-automation::after {
    background-image: url("/images/automation-surface-1600.webp");
}

.page-hero.theme-case::after {
    background-image: url("/images/hero-main-1600.webp");
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.36);
}

.page-hero-grid,
.case-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.page-hero-copy,
.case-hero-copy {
    max-width: 720px;
}

.page-hero-copy .page-title,
.case-hero-copy .page-title {
    margin-top: 18px;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.stat-card {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
    display: block;
    font-size: 1.36rem;
    letter-spacing: 0;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.subpage-panel,
.case-hero-figure {
    padding: 26px;
    background: linear-gradient(180deg, rgba(7, 13, 19, 0.9), rgba(7, 13, 19, 0.96));
}

.subpage-panel .service-visual,
.case-hero-figure .service-visual {
    min-height: 260px;
}

.case-hero-figure {
    display: grid;
    gap: 20px;
}

.case-hero-figure img {
    width: 100%;
    border-radius: 26px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: saturate(1.04) brightness(0.86);
}

.case-summary-card,
.case-quote {
    padding: 24px;
}

.case-summary-card strong {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.case-summary-card p,
.case-summary-card ul {
    margin-top: 14px;
}

.case-summary-card ul {
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.case-body {
    display: grid;
    gap: 18px;
}

.case-body h2 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: 0;
}

.video-embed {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.related-card {
    padding: 24px;
}

.related-card .page-link-row {
    margin-top: 18px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(3, 7, 11, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-medium) ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-dialog {
    width: min(980px, 100%);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(7, 13, 19, 0.96), rgba(7, 13, 19, 0.98));
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-title {
    margin: 0;
    font-size: 1.2rem;
}

.lightbox-copy {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lightbox-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.lightbox-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.lightbox-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal][data-delay="1"] {
    transition-delay: 80ms;
}

[data-reveal][data-delay="2"] {
    transition-delay: 160ms;
}

[data-reveal][data-delay="3"] {
    transition-delay: 240ms;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 20;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 13, 19, 0.76);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@keyframes hero-drift {
    from {
        transform: scale(1.05) translate3d(-1.5%, 0, 0);
    }

    to {
        transform: scale(1.08) translate3d(1.5%, -1%, 0);
    }
}

@keyframes hero-breathe {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes orbit-dash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -360;
    }
}

@keyframes orbit-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.84;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

@media (max-width: 1120px) {
    .section-header,
    .page-header,
    .how-layout,
    .contact-layout,
    .page-hero-grid,
    .case-hero-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .overview-grid,
    .pricing-grid,
    .detail-grid,
    .process-grid,
    .related-grid,
    .case-summary-grid,
    .proof-metrics,
    .stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-panel {
        grid-template-columns: 1fr;
    }

    .hero-orbit-layer {
        height: 38%;
        inset: 16% 4% auto;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 12px 0;
    }

    .header-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero-section {
        padding-top: 138px;
    }

    .hero-title .handwritten {
        display: block;
        margin: 8px 0 0;
        transform: none;
    }

    .hero-buttons,
    .card-link-row,
    .service-link-row,
    .work-actions,
    .contact-actions,
    .page-link-row {
        flex-direction: column;
    }

    .hero-buttons > *,
    .card-link-row > *,
    .service-link-row > *,
    .work-actions > *,
    .contact-actions > *,
    .page-link-row > * {
        width: 100%;
    }

    .overview-grid,
    .pricing-grid,
    .detail-grid,
    .process-grid,
    .related-grid,
    .case-summary-grid,
    .proof-metrics,
    .stat-strip,
    .form-row {
        grid-template-columns: 1fr;
    }

    .overview-line {
        display: none;
    }

    .hero-landscape {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(var(--container), calc(100vw - 20px));
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        font-size: 0.88rem;
        max-width: 140px;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .section,
    .page-section {
        padding: 72px 0;
    }

    .section-title,
    .page-title,
    .manifesto-card h2 {
        font-size: clamp(2rem, 11vw, 3.6rem);
    }

    .overview-card,
    .service-panel,
    .how-panel,
    .proof-panel,
    .pricing-card,
    .faq-item,
    .contact-panel,
    .manifesto-card,
    .subpage-panel,
    .detail-card,
    .process-card,
    .related-card,
    .case-summary-card,
    .case-quote {
        padding: 22px;
    }

    .service-visual,
    .how-stage {
        min-height: 240px;
    }

    .how-step {
        grid-template-columns: auto 1fr;
    }

    .how-step-time {
        grid-column: 2;
        padding-left: 0;
    }

    .lightbox {
        padding: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg img,
    .hero-radiance,
    .orbit-line,
    .service-flow,
    .orbit-dot {
        animation: none !important;
    }
}

/* Home page redesign: photo-led, lower-noise composition */
.home-page .hero-section {
    display: block;
    min-height: 92svh;
    padding: 0;
}

.home-page .hero-shell {
    min-height: 92svh;
    display: flex;
    align-items: center;
    padding: 136px 0 76px;
}

.home-page .hero-bg img {
    object-position: center top;
    filter: saturate(1.02) brightness(0.42) contrast(1.08);
    transform: scale(1.02);
    animation: none;
}

.home-page .hero-overlay {
    background:
        radial-gradient(circle at 58% 36%, rgba(84, 160, 189, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(3, 7, 11, 0.2) 0%, rgba(3, 7, 11, 0.56) 44%, rgba(3, 7, 11, 0.92) 100%);
}

.home-page .hero-radiance,
.home-page .hero-orbit-layer {
    display: block;
}

.home-page .hero-orbit-layer {
    inset: 10% 5% auto;
    height: 48%;
    opacity: 0.54;
}

.home-page .hero-landscape {
    display: block;
    height: min(34vh, 280px);
    opacity: 0.36;
    mix-blend-mode: screen;
}

.home-page .hero-content {
    max-width: 740px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(201, 255, 244, 0.84);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
}

.home-page .hero-title {
    max-width: 760px;
    font-size: clamp(3.8rem, 7.6vw, 6.9rem);
    line-height: 0.93;
}

.home-page .hero-title .handwritten {
    margin-left: 16px;
    transform: translateY(-4px);
}

.home-page .hero-subtitle {
    max-width: 620px;
    font-size: 1.06rem;
    color: rgba(244, 247, 244, 0.76);
}

.home-page .hero-buttons {
    gap: 16px;
    margin-top: 36px;
}

.home-page .hero-trust {
    gap: 14px;
    margin-top: 34px;
    max-width: 840px;
}

.home-page .hero-trust-item {
    padding: 12px 16px;
    background: rgba(7, 13, 19, 0.56);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.home-page .section {
    padding: clamp(82px, 10vw, 132px) 0;
}

.home-page .section-header {
    margin-bottom: 28px;
}

.home-page .section-title {
    font-size: clamp(2.1rem, 4.5vw, 4.4rem);
}

.home-page .section-copy {
    max-width: 600px;
}

.home-intro-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
    gap: 24px;
    align-items: stretch;
}

.home-intro-card,
.trust-panel,
.home-contact-panel,
.home-manifesto-card,
.process-note,
.pricing-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(9, 16, 23, 0.96), rgba(7, 13, 19, 0.98));
    box-shadow: var(--shadow-lg);
}

.home-intro-card {
    padding: 32px;
}

.home-mini-kicker,
.home-photo-label,
.immersive-band-kicker,
.process-note-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.home-mini-kicker::before,
.home-photo-label::before,
.immersive-band-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.home-note-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 18px;
}

.home-note-list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.82;
}

.home-note-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.home-photo-panel,
.process-stage,
.contact-photo-panel,
.immersive-band,
.example-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    background: #091119;
}

.home-photo-panel {
    min-height: 520px;
}

.home-photo-panel img,
.process-stage-media img,
.contact-photo-panel img,
.immersive-band-media img,
.example-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-photo-panel img {
    filter: brightness(0.78) saturate(1.02);
}

.home-photo-panel::after,
.process-stage-overlay,
.contact-photo-panel::after,
.immersive-band-overlay,
.example-card::after {
    content: "";
    position: absolute;
    inset: 0;
}

.home-photo-panel::after {
    background: linear-gradient(180deg, transparent, rgba(4, 8, 12, 0.22) 36%, rgba(4, 8, 12, 0.82));
}

.home-photo-panel figcaption {
    position: absolute;
    z-index: 1;
    left: 30px;
    right: 30px;
    bottom: 30px;
    max-width: 420px;
}

.home-photo-panel strong,
.process-stage-copy h2,
.home-manifesto-card h2,
.example-card h3,
.immersive-band h3,
.trust-panel h2,
.contact-photo-copy h2,
.process-note h3 {
    letter-spacing: 0;
}

.home-photo-panel strong {
    display: block;
    margin-top: 14px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.04;
}

.home-photo-panel p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
}

.immersive-stack {
    display: grid;
    gap: 22px;
}

.immersive-band {
    min-height: 430px;
}

.immersive-band-media img {
    filter: brightness(0.56) saturate(1.05);
}

.immersive-band-overlay {
    background:
        linear-gradient(90deg, rgba(4, 8, 12, 0.92) 0%, rgba(4, 8, 12, 0.72) 44%, rgba(4, 8, 12, 0.28) 100%),
        linear-gradient(180deg, transparent 0%, rgba(4, 8, 12, 0.42) 100%);
}

.immersive-band-copy {
    position: relative;
    z-index: 1;
    max-width: 560px;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
}

.immersive-band h3 {
    margin: 18px 0 0;
    font-size: clamp(2rem, 4vw, 3.9rem);
    line-height: 0.98;
}

.immersive-band p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.immersive-band-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.immersive-band-meta span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
}

.examples-stack {
    display: grid;
    gap: 24px;
}

.example-card {
    min-height: 360px;
    transform: translateZ(0);
}

.example-card.is-featured {
    min-height: 660px;
}

.example-card img {
    filter: brightness(0.78) saturate(1.04);
    transition: transform var(--motion-slow) ease, filter var(--motion-medium) ease;
}

.example-card:hover img {
    transform: scale(1.045);
    filter: brightness(0.92) saturate(1.1);
}

.example-card::after {
    background: linear-gradient(180deg, transparent 0%, rgba(4, 8, 12, 0.14) 34%, rgba(4, 8, 12, 0.84) 100%);
}

.example-card-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
    padding: 30px;
}

.example-card h3 {
    margin: 16px 0 0;
    font-size: clamp(1.8rem, 3vw, 3.3rem);
    line-height: 0.98;
}

.example-card p {
    margin: 12px 0 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
}

.process-stage {
    min-height: 360px;
}

.process-stage-media {
    position: absolute;
    inset: 0;
}

.process-stage-media img {
    filter: brightness(0.52) saturate(1.04);
}

.process-stage-overlay {
    background: linear-gradient(90deg, rgba(4, 8, 12, 0.88) 0%, rgba(4, 8, 12, 0.52) 48%, rgba(4, 8, 12, 0.42) 100%);
}

.process-stage-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 38px;
}

.process-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.process-note {
    padding: 24px;
}

.process-note-index {
    color: var(--accent-strong);
}

.process-note h3 {
    margin: 16px 0 0;
    font-size: 1.28rem;
    line-height: 1.1;
}

.process-note p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.76;
}

.trust-panel {
    padding: 34px;
}

.trust-panel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
}

.home-page .logo-row {
    gap: 20px;
    margin-top: 0;
}

.home-page .proof-metrics {
    margin-top: 26px;
}

.home-page .pricing-card {
    background: linear-gradient(180deg, rgba(9, 16, 23, 0.96), rgba(7, 13, 19, 0.98));
}

.home-page .pricing-card h3 {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.home-page .faq-list {
    max-width: 980px;
}

.contact-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
    gap: 24px;
}

.contact-photo-panel {
    min-height: 540px;
}

.contact-photo-panel img {
    filter: brightness(0.56) saturate(1.04);
}

.contact-photo-panel::after {
    background: linear-gradient(180deg, rgba(4, 8, 12, 0.16) 0%, rgba(4, 8, 12, 0.82) 100%);
}

.contact-photo-copy {
    position: absolute;
    z-index: 1;
    left: 34px;
    right: 34px;
    bottom: 34px;
    max-width: 580px;
}

.home-contact-panel {
    padding: 30px;
}

.home-manifesto-card {
    padding: 34px;
}

.home-manifesto-card h2 {
    margin: 18px 0 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
    line-height: 0.94;
}

.home-manifesto-card h2 span {
    color: var(--accent-strong);
    font-family: "Caveat", cursive;
    font-weight: 600;
}

.home-manifesto-card p {
    margin-top: 14px;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.82;
}

@media (max-width: 1120px) {
    .home-intro-layout,
    .examples-grid,
    .contact-showcase,
    .trust-panel-layout {
        grid-template-columns: 1fr;
    }

    .process-step-grid,
    .home-page .proof-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-photo-panel,
    .home-photo-panel,
    .example-card.is-featured {
        min-height: 460px;
    }
}

@media (max-width: 860px) {
    .home-page .hero-section,
    .home-page .hero-shell {
        min-height: 94svh;
    }

    .home-page .hero-shell {
        padding: 126px 0 64px;
    }

    .home-page .hero-title .handwritten {
        display: block;
        margin: 10px 0 0;
        transform: none;
    }

    .immersive-band-copy,
    .process-stage-copy,
    .contact-photo-copy {
        padding: 28px;
    }

    .process-step-grid,
    .home-page .proof-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-page .hero-shell {
        padding: 116px 0 56px;
        align-items: flex-end;
    }

    .home-page .hero-title {
        font-size: clamp(2.75rem, 13vw, 4.55rem);
    }

    .hero-kicker {
        max-width: 100%;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .hero-kicker::before {
        width: 18px;
    }

    .home-page .hero-orbit-layer {
        opacity: 0.36;
    }

    .home-page .hero-landscape {
        height: 24vh;
        opacity: 0.28;
    }

    .home-page .hero-buttons {
        gap: 12px;
    }

    .home-page .hero-trust {
        gap: 10px;
    }

    .home-page .hero-trust-item {
        width: 100%;
    }

    .home-intro-card,
    .process-note,
    .trust-panel,
    .home-contact-panel,
    .home-manifesto-card,
    .example-card-copy,
    .immersive-band-copy {
        padding: 22px;
    }

    .home-photo-panel figcaption,
    .contact-photo-copy {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .home-photo-panel,
    .contact-photo-panel,
    .process-stage,
    .immersive-band,
    .example-card,
    .example-card.is-featured {
        min-height: 340px;
    }
}

/* Hero restore: preserve original centered opening */
.home-page .hero-section {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding: 154px 0 72px;
    overflow: hidden;
}

.home-page .hero-bg,
.home-page .hero-overlay,
.home-page .hero-radiance,
.home-page .hero-orbit-layer,
.home-page .hero-landscape {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-page .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(1.05) brightness(0.42) contrast(1.04);
    transform: scale(1.05);
    animation: hero-drift 24s ease-in-out infinite alternate;
}

.home-page .hero-overlay {
    background:
        linear-gradient(180deg, rgba(3, 7, 11, 0.34) 0%, rgba(3, 7, 11, 0.66) 44%, rgba(3, 7, 11, 0.9) 76%, rgba(3, 7, 11, 0.98) 100%),
        radial-gradient(circle at 50% 52%, rgba(19, 112, 126, 0.18), transparent 22%);
}

.home-page .hero-radiance {
    display: block;
    background:
        radial-gradient(circle at 50% 56%, rgba(142, 231, 215, 0.18), transparent 24%),
        radial-gradient(circle at 30% 22%, rgba(90, 146, 182, 0.12), transparent 16%),
        radial-gradient(circle at 72% 30%, rgba(142, 231, 215, 0.08), transparent 18%);
    filter: blur(26px);
    animation: hero-breathe 12s ease-in-out infinite;
}

.home-page .hero-orbit-layer {
    display: block;
    inset: 12% 6% auto;
    height: 52%;
    opacity: 0.72;
}

.home-page .hero-landscape {
    display: block;
    inset: auto 0 0;
    height: min(40vh, 320px);
    opacity: 0.98;
}

.home-page .hero-shell {
    position: relative;
    min-height: auto;
    display: block;
    align-items: initial;
    padding: 0;
}

.home-page .hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.home-page .hero-title {
    max-width: none;
    margin: 24px 0 0;
    font-size: clamp(3.7rem, 7.8vw, 7.4rem);
    line-height: 0.94;
    letter-spacing: 0;
    text-shadow: 0 22px 64px rgba(0, 0, 0, 0.68);
}

.home-page .hero-title .normal {
    color: rgba(247, 251, 250, 0.98);
}

.home-page .hero-title .handwritten {
    display: inline-block;
    margin-left: 12px;
    transform: translateY(-8px);
}

.home-page .hero-subtitle {
    margin: 24px auto 0;
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
}

.home-page .hero-section [data-reveal] {
    opacity: 1;
    transform: none;
}

.home-page .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.home-page .hero-buttons > :nth-child(3) {
    flex-basis: 100%;
    max-width: 234px;
}

.home-page .hero-trust {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    max-width: none;
}

.home-page .hero-trust-item {
    background: rgba(7, 13, 19, 0.64);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 860px) {
    .home-page .hero-section {
        padding-top: 138px;
    }

    .home-page .hero-title .handwritten {
        display: block;
        margin: 8px 0 0;
        transform: none;
    }
}

@media (max-width: 640px) {
    .home-page .hero-title {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .home-page .hero-shell {
        padding: 0;
    }

    .home-page .hero-buttons {
        width: 100%;
        max-width: 370px;
        margin: 30px auto 0;
        flex-direction: column;
        align-items: stretch;
    }

    .home-page .hero-buttons > *,
    .home-page .hero-buttons > :nth-child(3) {
        width: 100%;
        max-width: none;
        flex-basis: auto;
    }

    .home-page .hero-trust {
        width: 100%;
        max-width: 370px;
        margin: 26px auto 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-page .hero-trust-item {
        width: auto;
        flex: 0 0 auto;
        justify-content: center;
        min-height: 48px;
    }

    .home-page .hero-trust-item:nth-child(3) {
        display: none;
    }
}
