/* ═══════════════════════════════════════════════════════
   ARC FLOW LABS — style.css
   ═══════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────── */
:root {
    --clr-bg:           #0d0d0d;
    --clr-surface:      #1a1a1a;
    --clr-border:       #2d2d3a;
    --clr-accent:       #F7D040;   /* lighter gold — airier, less harsh */
    --clr-accent-warm:  #E8B820;
    --clr-text:         #c8c8d4;
    --clr-text-muted:   #8a8a87;
    --clr-muted:        #8a8a87;
    --clr-white:        #ffffff;
    --clr-status:       #22C55E;

    --clr-border-subtle: rgba(255, 255, 255, .06);
    --clr-border-medium: rgba(255, 255, 255, .2);

    --ff-display: 'Outfit', sans-serif;
    --ff-body:    'Inter', sans-serif;

    --nav-height: 60px;
    --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════════════════
   NAV — 3-column: brand | links | cta
   ═══════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(1.25rem, 3vw, 3rem);
    height: var(--nav-height);
    background: rgba(13, 13, 13, .7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border-subtle);
    font-family: var(--ff-body);
    font-size: .78rem;
    letter-spacing: .08em;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-white);
    justify-self: start;
}

.nav__logo {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
    /* Logo has glow baked in — filter ensures it matches on any bg */
    filter: drop-shadow(0 0 6px rgba(247, 208, 64, 0.4));
}

.nav__brand-tld,
.footer__brand-tld {
    color: var(--clr-accent);
    text-transform: lowercase;
}

.nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-status);
    box-shadow: 0 0 8px var(--clr-status);
    display: inline-block;
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__links a {
    color: var(--clr-muted);
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .1em;
    transition: color .25s;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--clr-accent);
    transition: width .3s var(--ease-out-expo);
}

.nav__links a:hover { color: var(--clr-white); }
.nav__links a:hover::after { width: 100%; }

/* Pill CTA button */
.nav__cta-pill {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.25rem;
    border-radius: 100px;
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    font-family: var(--ff-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .25s, color .25s;
}

.nav__cta-pill:hover {
    background: var(--clr-accent);
    color: #000;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent; /* let the fixed canvas show through */
}

/* Top vignette so nav blends in */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to bottom, rgba(13,13,13,.9) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Bottom gradient so sections blend in cleanly */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--clr-bg) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ── Spline canvas — fixed so arc persists through all sections ── */
.hero__canvas-wrap {
    position: fixed;   /* stays in viewport as user scrolls */
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__canvas-wrap canvas {
    width: 100vw;
    height: 100vh;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
    /* Hue-shift purple → warm gold. Lower saturation = lighter, airier look. */
    filter: hue-rotate(140deg) saturate(0.75) brightness(1.15);
}

/* Soft gold tint overlay on top of the arc */
.hero__canvas-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 197, 24, 0.05);
    mix-blend-mode: color;
    pointer-events: none;
}

/* ── Vignette overlay — light touch so arc glows through */
.hero__streaks {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    /* Edge darkening only — centre stays open for the arc */
    background:
        radial-gradient(
            ellipse 75% 65% at 50% 55%,
            transparent 40%,
            rgba(13, 13, 13, .5) 100%
        );
}

/* ── Hero content ────────────────────────────────────── */
.hero__content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: calc(var(--nav-height) + 3rem) clamp(1.25rem, 5vw, 4rem) 6rem;
    max-width: 960px;
    width: 100%;
}

/* ── Badge ───────────────────────────────────────────── */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1.1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 2.5rem;
    animation: fadeInDown .7s var(--ease-out-expo) .1s both;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-status);
    box-shadow: 0 0 6px var(--clr-status);
    animation: statusPulse 2s ease-in-out infinite;
}

/* ── Headline ─────────────────────────────────────────── */
.hero__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .1em;
    margin-bottom: 1.75rem;
    animation: fadeInUp .8s var(--ease-out-expo) .2s both;
}

.hero__hl-top {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.25rem);
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--clr-text);
}

.hero__hl-bottom {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5.5vw, 4.75rem);
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--clr-accent);
}

.hero__hl-period {
    color: rgba(255, 255, 255, .35);
}

/* ── Subtext ─────────────────────────────────────────── */
.hero__subtext {
    max-width: 540px;
    font-family: var(--ff-body);
    font-size: clamp(.9rem, 1.4vw, 1.05rem);
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 2.75rem;
    animation: fadeInUp .8s var(--ease-out-expo) .35s both;
}

/* ── CTA Buttons ─────────────────────────────────────── */
.hero__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp .8s var(--ease-out-expo) .48s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.9rem;
    border-radius: 100px;
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .25s var(--ease-out-expo);
    white-space: nowrap;
}

/* Primary: gold outline → fills on hover */
.btn--primary {
    border: 1.5px solid var(--clr-accent);
    color: var(--clr-accent);
    background: transparent;
}

.btn--primary:hover {
    background: var(--clr-accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, .25);
}

/* Secondary: subtle dark pill */
.btn--secondary {
    border: 1.5px solid rgba(255, 255, 255, .14);
    color: var(--clr-text);
    background: rgba(255, 255, 255, .06);
}

.btn--secondary:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

/* Ghost: transparent, for CTA section */
.btn--ghost {
    border: 1.5px solid rgba(255, 255, 255, .18);
    color: var(--clr-text);
    background: transparent;
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
}

/* ── Scroll hint ─────────────────────────────────────── */
.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    animation: fadeInUp .8s var(--ease-out-expo) .8s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
    animation: scrollPulse 1.8s ease-in-out infinite;
}

.hero__scroll-label {
    font-size: .6rem;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   SECTION BACKGROUND — semi-transparent so fixed arc
   glows through consistently as the user scrolls
   ═══════════════════════════════════════════════════════ */
.trust,
.services,
.process,
.solutions,
.faq,
.cta,
.contact,
.footer {
    background: rgba(13, 13, 13, 0.88) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════ */
.trust {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
}

.trust__text {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 1.75rem;
}

/* ── Infinite scrolling marquee ─────────────────────── */
.trust__marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Fade edges so logos ghost in/out cleanly */
.trust__marquee::before,
.trust__marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.trust__marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(13,13,13,.88) 0%, transparent 100%);
}
.trust__marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(13,13,13,.88) 0%, transparent 100%);
}

.trust__track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    padding: .25rem 0;
}

.trust__track:hover { animation-play-state: paused; }

.trust__logo-slot {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .25);
    white-space: nowrap;
    transition: color .3s;
    cursor: default;
}

.trust__logo-slot img {
    opacity: .4;
    transition: opacity .3s;
    flex-shrink: 0;
}

.trust__logo-slot:hover { color: rgba(255, 255, 255, .65); }
.trust__logo-slot:hover img { opacity: .8; }

.trust__logo-sep {
    font-size: .35rem;
    color: rgba(255, 255, 255, .12);
    flex-shrink: 0;
    line-height: 1;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   SHARED SECTION HELPERS
   ═══════════════════════════════════════════════════════ */
.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section__label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: .65rem;
}

.section__heading {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    letter-spacing: -.03em;
    color: var(--clr-white);
    margin-bottom: .9rem;
}

.section__heading .accent { color: var(--clr-accent); }

.section__subhead {
    font-size: .95rem;
    color: var(--clr-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
    position: relative;
    z-index: 10;
    padding: 6rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2rem 1.75rem;
    transition:
        border-color .35s var(--ease-out-expo),
        transform .35s var(--ease-out-expo),
        box-shadow .35s var(--ease-out-expo),
        background .35s;
}

.service-card:hover {
    border-color: rgba(247, 208, 64, .45);
    background: rgba(247, 208, 64, .04);
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(247, 208, 64, .15),
        0 20px 48px rgba(0, 0, 0, .4);
}

/* Highlighted card gets a subtle gold tint */
.service-card--accent {
    background: linear-gradient(135deg, #1a1a1a 60%, rgba(245, 197, 24, .06) 100%);
    border-color: rgba(245, 197, 24, .2);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(245, 197, 24, .08);
    border-radius: 10px;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-card__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -.01em;
    color: var(--clr-white);
    margin-bottom: .75rem;
}

.service-card__desc {
    font-size: .88rem;
    color: var(--clr-muted);
    line-height: 1.65;
    flex: 1;
}

.service-card__footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clr-border-subtle);
}

.service-card__link {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--clr-accent);
    transition: gap .25s;
    display: inline-flex;
    align-items: center;
}

.service-card__link:hover { opacity: .8; }

/* ── Service Card Animated Visuals ───────────────────── */
.service-card__visual {
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

/* Checklist — Save Time */
.svc-check { flex-direction: column; align-items: flex-start; gap: .55rem; }
.svc-check__row {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    color: rgba(255,255,255,.35);
    font-family: var(--ff-body);
    animation: svc-row-fade 3.6s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
.svc-check__box {
    width: 15px; height: 15px;
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 4px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    animation: svc-box-tick 3.6s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
.svc-check__box::after {
    content: '';
    width: 4px; height: 7px;
    border-right: 1.5px solid var(--clr-accent);
    border-bottom: 1.5px solid var(--clr-accent);
    transform: rotate(45deg) translateY(-1px) scale(0);
    animation: svc-tick-mark 3.6s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
@keyframes svc-row-fade {
    0%, 25%  { color: rgba(255,255,255,.35); }
    40%, 70% { color: rgba(255,255,255,.75); }
    85%, 100%{ color: rgba(255,255,255,.35); }
}
@keyframes svc-box-tick {
    0%, 25%  { border-color: rgba(255,255,255,.2); background: transparent; }
    40%, 70% { border-color: var(--clr-accent); background: rgba(247,208,64,.12); }
    85%, 100%{ border-color: rgba(255,255,255,.2); background: transparent; }
}
@keyframes svc-tick-mark {
    0%, 25%  { transform: rotate(45deg) translateY(-1px) scale(0); }
    40%, 70% { transform: rotate(45deg) translateY(-1px) scale(1); }
    85%, 100%{ transform: rotate(45deg) translateY(-1px) scale(0); }
}

/* Bar Chart — Grow Revenue */
.svc-bars { align-items: flex-end; padding: 1rem 1.5rem .75rem; }
.svc-bars__inner {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
    width: 100%;
}
.svc-bar {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 4px 4px 2px 2px;
    background: rgba(255,255,255,.12);
    transform-origin: bottom;
    transform: scaleY(0);
    animation: svc-bar-grow 2.8s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
.svc-bar--accent { background: rgba(247,208,64,.55); }
@keyframes svc-bar-grow {
    0%, 15%  { transform: scaleY(0); opacity: 0; }
    35%, 70% { transform: scaleY(1); opacity: 1; }
    90%, 100%{ transform: scaleY(0); opacity: 0; }
}

/* Pipeline — Automate Operations */
.svc-flow {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0;
    padding: .75rem 1rem;
    width: 100%;
}
.svc-flow__node {
    font-family: var(--ff-body);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    padding: .35rem .65rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.svc-flow__node--mid {
    background: rgba(247,208,64,.1);
    border-color: rgba(247,208,64,.35);
    color: var(--clr-accent);
}
.svc-flow__pipe {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.1);
    position: relative;
    overflow: hidden;
    min-width: 16px;
}
.svc-flow__dot {
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--clr-accent);
    animation: svc-dot-travel 1.6s linear infinite;
    animation-delay: var(--d, 0s);
}
@keyframes svc-dot-travel {
    0%   { left: -6px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: calc(100% + 6px); opacity: 0; }
}

/* Pulsing Metric — Stay Competitive */
.svc-metric { flex-direction: column; gap: .3rem; text-align: center; }
.svc-metric__num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: -.02em;
    animation: svc-num-breathe 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.svc-metric__label {
    font-size: .65rem;
    letter-spacing: .08em;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.svc-metric__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(247,208,64,.3);
    width: 50px; height: 50px;
    animation: svc-ring-expand 2s ease-out infinite;
}
.svc-metric__ring--2 { animation-delay: .9s; }
@keyframes svc-num-breathe {
    0%, 100% { opacity: .75; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.05); }
}
@keyframes svc-ring-expand {
    0%   { transform: scale(.4); opacity: .7; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════ */
.process {
    position: relative;
    z-index: 10;
    padding: 6rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line between steps */
.process__steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(33.33% - .5px);
    right: calc(33.33% - .5px);
    height: 1px;
    background: linear-gradient(90deg, var(--clr-accent), rgba(245, 197, 24, .2));
    pointer-events: none;
}

.process__step {
    padding: 2rem 2.5rem 2rem 0;
    position: relative;
    transition: transform .35s var(--ease-out-expo);
}

.process__step:hover {
    transform: translateY(-4px);
}

.process__step:not(:first-child) {
    padding-left: 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.process__step-number {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--clr-accent);
    opacity: .25;
    margin-bottom: 1.25rem;
}

.process__step-title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-white);
    margin-bottom: .75rem;
}

.process__step-desc {
    font-size: .88rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

/* Suppress unused connector spans */
.process__connector { display: none; }

/* ── Process Animated Cards ──────────────────────────── */
.process__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process__card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2rem 1.75rem;
    transition:
        border-color .35s var(--ease-out-expo),
        transform .35s var(--ease-out-expo),
        box-shadow .35s;
}

.process__card:hover {
    border-color: rgba(247, 208, 64, .45);
    background: rgba(247, 208, 64, .04);
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(247, 208, 64, .15), 0 20px 48px rgba(0, 0, 0, .4);
}

.process__card-visual {
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.process__card-num {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(247, 208, 64, .15);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .75rem;
}

.process__card-title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -.01em;
    color: var(--clr-white);
    margin-bottom: .75rem;
}

.process__card-desc {
    font-size: .88rem;
    color: var(--clr-muted);
    line-height: 1.65;
    flex: 1;
}

/* Radar — Discover */
.pc-radar { flex-direction: column; }
.pc-radar__core {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--clr-accent);
    position: absolute;
    animation: pc-core-pulse 2.1s ease-in-out infinite;
    z-index: 1;
}
.pc-radar__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(247, 208, 64, .5);
    width: 10px; height: 10px;
    animation: pc-ring-expand 2.1s ease-out infinite;
    animation-delay: var(--d, 0s);
}
@keyframes pc-core-pulse {
    0%, 100% { opacity: .7; transform: scale(1); }
    50%      { opacity: 1;  transform: scale(1.4); }
}
@keyframes pc-ring-expand {
    0%   { width: 12px; height: 12px; opacity: .8; }
    100% { width: 90px; height: 90px; opacity: 0; }
}

/* Stack — Build */
.pc-stack { flex-direction: column; align-items: center; gap: 0; width: 100%; }
.pc-stack__item {
    font-family: var(--ff-body);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: .3rem .9rem;
    opacity: 0;
    transform: translateY(8px);
    animation: pc-item-appear 3.2s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
.pc-stack__item--mid {
    background: rgba(247, 208, 64, .1);
    border-color: rgba(247, 208, 64, .35);
    color: var(--clr-accent);
}
.pc-stack__connector {
    width: 1px; height: 12px;
    background: rgba(255, 255, 255, .15);
    opacity: 0;
    animation: pc-item-appear 3.2s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
@keyframes pc-item-appear {
    0%, 8%   { opacity: 0; transform: translateY(8px); }
    22%, 68% { opacity: 1; transform: translateY(0); }
    82%, 100%{ opacity: 0; transform: translateY(0); }
}

/* Launch chart — Launch & Support */
.pc-launch { flex-direction: column; gap: .4rem; width: 100%; }
.pc-launch__svg { width: 100%; height: 60px; overflow: visible; }
.pc-launch__line {
    fill: none;
    stroke: rgba(247, 208, 64, .55);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: pc-line-draw 2.5s ease-in-out infinite;
}
.pc-launch__dot {
    fill: var(--clr-accent);
    opacity: 0;
    animation: pc-dot-appear 2.5s ease-in-out infinite;
}
.pc-launch__label {
    font-size: .65rem;
    letter-spacing: .1em;
    color: rgba(247, 208, 64, .6);
    text-transform: uppercase;
    text-align: right;
    font-family: var(--ff-body);
}
@keyframes pc-line-draw {
    0%, 5%   { stroke-dashoffset: 320; }
    55%, 75% { stroke-dashoffset: 0; }
    92%, 100%{ stroke-dashoffset: 320; }
}
@keyframes pc-dot-appear {
    0%, 52%  { opacity: 0; }
    60%, 75% { opacity: 1; }
    90%, 100%{ opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   SOLUTIONS / PRICING
   ═══════════════════════════════════════════════════════ */
.solutions {
    position: relative;
    z-index: 10;
    padding: 6rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto 2rem;
}

.solutions__note {
    text-align: center;
    font-size: .8rem;
    color: var(--clr-muted);
    letter-spacing: .04em;
}

/* Pricing card */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2.25rem 2rem;
    transition:
        border-color .35s var(--ease-out-expo),
        transform .35s var(--ease-out-expo),
        box-shadow .35s;
}

.pricing-card:hover {
    border-color: rgba(247, 208, 64, .4);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.pricing-card--featured {
    border-color: var(--clr-accent);
    background: linear-gradient(160deg, #1a1a1a 0%, rgba(245, 197, 24, .06) 100%);
}

.pricing-card--featured:hover {
    border-color: var(--clr-accent-warm);
    box-shadow: 0 20px 60px rgba(245, 197, 24, .12);
}

.pricing-card__badge {
    display: inline-block;
    padding: .3rem .85rem;
    background: var(--clr-accent);
    color: #000;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.pricing-card__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--clr-border-subtle);
}

.pricing-card__tier {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--clr-white);
    margin-bottom: .35rem;
}

.pricing-card__price {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--clr-accent);
    letter-spacing: -.02em;
}

.pricing-card__price-note {
    font-size: .8rem;
    color: var(--clr-muted);
    margin-top: .3rem;
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    font-size: .88rem;
    color: var(--clr-text);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-size: .75rem;
    top: .1em;
}

.pricing-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.5rem;
    border-radius: 8px;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   FAQ — pure CSS accordion via <details>
   ═══════════════════════════════════════════════════════ */
.faq {
    position: relative;
    z-index: 10;
    padding: 6rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
}

.faq__list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq__item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    transition: border-color .25s, background .25s;
}

.faq__item:hover {
    background: rgba(255, 255, 255, .05);
}

.faq__item[open] {
    border-color: rgba(245, 197, 24, .3);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-white);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: transform .3s var(--ease-out-expo);
    line-height: 1;
}

.faq__item[open] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 1.5rem 1.5rem;
    font-size: .9rem;
    color: var(--clr-muted);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.cta {
    position: relative;
    z-index: 10;
    padding: 7rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
    overflow: hidden;
}

/* Ambient glow behind CTA */
.cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(245, 197, 24, .07) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta__label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.cta__heading {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    letter-spacing: -.03em;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact {
    position: relative;
    z-index: 10;
    padding: 5rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
    display: flex;
    justify-content: center;
}

.contact__card {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
    width: 100%;
    max-width: 960px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 4px 60px rgba(0, 0, 0, .5);
}

.contact__plus {
    position: absolute;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.contact__plus--tl { top: -14px; left: -14px; }
.contact__plus--tr { top: -14px; right: -14px; }
.contact__plus--bl { bottom: -14px; left: -14px; }
.contact__plus--br { bottom: -14px; right: -14px; }

.contact__info {
    padding: 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__title {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -.02em;
    color: var(--clr-white);
}

.contact__title--accent { color: var(--clr-accent); }

.contact__desc {
    font-size: .9rem;
    color: var(--clr-muted);
    line-height: 1.65;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: .5rem;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.contact__detail-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--clr-accent);
}

.contact__detail-label {
    font-weight: 500;
    font-size: .85rem;
    color: var(--clr-white);
}

.contact__detail-value {
    font-size: .78rem;
    color: var(--clr-muted);
    margin-top: 2px;
}

.contact__form-wrap {
    display: flex;
    align-items: center;
    padding: 2.5rem 2rem;
    border-left: 1px solid var(--clr-border);
}

.contact__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.contact__label {
    font-size: .78rem;
    font-weight: 500;
    color: var(--clr-text);
    letter-spacing: .04em;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: .65rem .9rem;
    font-family: var(--ff-body);
    font-size: .85rem;
    color: var(--clr-text);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(255, 255, 255, .18);
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, .12);
}

.contact__textarea {
    resize: vertical;
    min-height: 90px;
}

.contact__submit {
    width: 100%;
    padding: .8rem;
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #000;
    background: var(--clr-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .25s, transform .15s;
}

.contact__submit:hover {
    background: var(--clr-accent-warm);
    transform: translateY(-1px);
}

.contact__submit:active { transform: translateY(0); }

@media (max-width: 768px) {
    .contact__card { grid-template-columns: 1fr; }
    .contact__form-wrap {
        border-left: none;
        border-top: 1px solid var(--clr-border);
        padding-top: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 10;
    padding: 1.75rem clamp(1.25rem, 3vw, 3rem);
    border-top: 1px solid var(--clr-border-subtle);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clr-white);
}

.footer__logo {
    height: 22px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(247, 208, 64, 0.3));
    opacity: 0.75;
}

.footer__copy {
    font-size: .75rem;
    color: var(--clr-muted);
    letter-spacing: .04em;
}

.footer__domain {
    font-size: .75rem;
    color: var(--clr-accent);
    letter-spacing: .08em;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL — IntersectionObserver driven
   Elements start invisible; .is-visible added by JS
   ═══════════════════════════════════════════════════════ */
.section-intro,
.trust__text,
.trust__marquee,
.service-card,
.process__step,
.process__card,
.pricing-card,
.solutions__note,
.faq__item,
.cta__inner,
.contact__card {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity  0.65s var(--ease-out-expo),
        transform 0.65s var(--ease-out-expo);
}

.section-intro.is-visible,
.trust__text.is-visible,
.trust__marquee.is-visible,
.service-card.is-visible,
.process__step.is-visible,
.process__card.is-visible,
.pricing-card.is-visible,
.solutions__note.is-visible,
.faq__item.is-visible,
.cta__inner.is-visible,
.contact__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mouse-follow glow — site-wide, above all sections ─ */
.hero__cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 380px; height: 380px;
    margin: -190px 0 0 -190px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(247, 208, 64, .06) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 15; /* above sections (10) so glow shows on scroll, below nav (100) */
    transition: transform 0.12s linear;
    will-change: transform;
}

/* ═══════════════════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════════════════ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: .3;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(1); }
    50%       { opacity: .7; transform: scaleY(1.1); }
}

/* Nav slides in on load */
.nav {
    opacity: 0;
    animation: fadeInDown .7s var(--ease-out-expo) .05s forwards;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hide Spline on mobile — GPU too heavy, CSS background takes over */
    .hero__canvas-wrap { display: none; }

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

    .nav__links {
        display: none;
    }

    .hero__hl-top  { font-size: clamp(2rem, 12vw, 4rem); }
    .hero__hl-bottom { font-size: clamp(2.5rem, 15vw, 5rem); }

    .hero__buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .services__grid { grid-template-columns: 1fr; }

    .process__steps { grid-template-columns: 1fr; }
    .process__steps::before { display: none; }
    .process__step { padding: 1.5rem 0; border-left: none; border-top: 1px solid var(--clr-border); }
    .process__step:first-child { border-top: none; }

    .footer__inner { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 480px) {
    .hero__content { padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 4rem; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — contact.html
   ═══════════════════════════════════════════════════════ */
.cpage {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--nav-height) + 5rem) clamp(1.25rem, 5vw, 3rem) 6rem;
    background:
        radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px),
        var(--clr-bg);
    background-size: 26px 26px, auto;
    position: relative;
    z-index: 10;
}

.cpage__inner {
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cpage__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.16);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.cpage__heading {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    letter-spacing: -.03em;
    color: var(--clr-white);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.cpage__sub {
    font-size: clamp(.88rem, 1.3vw, 1rem);
    color: var(--clr-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 3.5rem;
}

/* Form card */
.cpage__card {
    width: 100%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3.25rem);
    text-align: left;
}

.cpage__form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cpage__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cpage__field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.cpage__label {
    font-size: .8rem;
    font-weight: 500;
    color: var(--clr-white);
    letter-spacing: .04em;
}

.cpage__label span {
    color: var(--clr-accent);
}

.cpage__input,
.cpage__select,
.cpage__textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    border-radius: 0;
    padding: .65rem 0;
    font-family: var(--ff-body);
    font-size: .9rem;
    color: var(--clr-white);
    outline: none;
    transition: border-color .25s;
    appearance: none;
    -webkit-appearance: none;
}

.cpage__input::placeholder,
.cpage__textarea::placeholder {
    color: rgba(255,255,255,.22);
}

.cpage__input:focus,
.cpage__select:focus,
.cpage__textarea:focus {
    border-bottom-color: var(--clr-accent);
}

/* Select wrapper for custom chevron */
.cpage__select-wrap {
    position: relative;
}

.cpage__select-wrap::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255,255,255,.4);
    pointer-events: none;
}

.cpage__select option {
    background: #1a1a1a;
    color: var(--clr-white);
}

.cpage__select option:disabled {
    color: rgba(255,255,255,.3);
}

.cpage__textarea {
    resize: none;
    min-height: 110px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding-top: .65rem;
}

.cpage__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2.2rem;
    border-radius: 100px;
    background: var(--clr-accent);
    color: #000;
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s;
    margin-top: .5rem;
}

.cpage__submit:hover {
    background: var(--clr-accent-warm);
    transform: translateY(-2px);
}

.cpage__submit:active { transform: translateY(0); }

@media (max-width: 640px) {
    .cpage__row { grid-template-columns: 1fr; gap: 2rem; }
    .cpage__submit { width: 100%; justify-content: center; }
}

/* ── Contact page — honeypot (spam trap, visually hidden) ── */
.cpage__honeypot { display: none; }

/* ── Contact page — success state ──────────────────────── */
.cpage__success-card {
    background: var(--clr-surface);
    border: 1px solid rgba(247, 208, 64, .18);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cpage__success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(247, 208, 64, .1);
    border: 1.5px solid rgba(247, 208, 64, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    margin-bottom: .5rem;
}

.cpage__success-heading {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-white);
}

.cpage__success-body {
    color: var(--clr-text-muted);
    font-size: .95rem;
    line-height: 1.65;
    max-width: 380px;
    margin-bottom: .5rem;
}

.cpage__success-card .cpage__submit {
    text-decoration: none;
}
