/* ============================================================================
   Amora Digital — polish.css
   Design-system refinement layer. Loaded after main.css. Refines tokens,
   typography, cards, hero, dark sections, footer, forms, and mobile.
   ============================================================================ */

/* ---------- Token refinement ---------- */
:root {
    /* Slightly richer ink, slightly warmer canvas */
    --c-ink:            #0b0822;
    --c-ink-2:          #1a1538;
    --c-ink-3:          #2a234d;
    --c-muted:          #565177;
    --c-muted-2:        #8680a8;

    /* Calmer borders (was #e8e4f5, now 15% cooler) */
    --c-line:           #eceaf4;
    --c-line-strong:    #d9d4ec;

    /* Surfaces */
    --c-surface:        #ffffff;
    --c-surface-alt:    #faf9fd;
    --c-surface-warm:   #f9f7fc;

    /* Deeper dark */
    --c-dark:           #1a1740;
    --c-dark-2:         #12102e;
    --c-dark-3:         #0a0820;

    /* Refined shadow system (multi-layer for depth) */
    --shadow-xs: 0 1px 2px rgba(15, 10, 38, 0.04);
    --shadow-sm: 0 1px 2px rgba(15, 10, 38, 0.05), 0 2px 6px rgba(15, 10, 38, 0.04);
    --shadow:    0 4px 12px rgba(15, 10, 38, 0.06), 0 1px 3px rgba(15, 10, 38, 0.05);
    --shadow-md: 0 12px 28px rgba(76, 29, 149, 0.10), 0 2px 6px rgba(15, 10, 38, 0.06);
    --shadow-lg: 0 30px 70px rgba(76, 29, 149, 0.14), 0 8px 20px rgba(15, 10, 38, 0.08);
    --shadow-xl: 0 50px 100px rgba(76, 29, 149, 0.18), 0 12px 30px rgba(15, 10, 38, 0.10);

    /* Radius scale */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius:    12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ---------- Global typography rhythm ---------- */
html { font-size: 16.5px; }
@media (min-width: 1400px) { html { font-size: 17px; } }

body {
    font-size: 1.0625rem;
    line-height: 1.65;
    letter-spacing: -0.005em;
    color: var(--c-ink-2);
}

h1, h2, h3, h4, h5 {
    color: var(--c-ink);
    line-height: 1.08;
    letter-spacing: -0.018em;
}

h1 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); letter-spacing: -0.025em; line-height: 1.04; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.4rem); letter-spacing: -0.01em; line-height: 1.22; }

p, li { color: var(--c-ink-2); }

.section__lede {
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--c-muted);
    max-width: 64ch;
}
.section__head { margin-bottom: 3.5rem; }
.section__head .section__lede { margin-left: auto; margin-right: auto; }
.section__head--left .section__lede { margin-left: 0; margin-right: 0; }

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--c-primary-700);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.eyebrow--light { color: var(--c-accent-light); }

/* Refined selection */
::selection { background: var(--c-primary); color: #fff; }

/* ---------- Header polish ---------- */
.site-header {
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 0 var(--c-line), 0 10px 30px -12px rgba(15, 10, 38, 0.08);
}
.site-header__inner { min-height: 76px; }

.site-logo { font-size: 1.5rem; gap: 0.6rem; font-weight: 700; }
.site-logo__mark svg { width: 34px; height: 34px; }
.site-logo__suffix { font-weight: 500; color: var(--c-primary); }

.primary-nav__list a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--c-ink-2);
    position: relative;
    padding: 0.5rem 0;
    border-bottom: 0 !important;
    white-space: nowrap;
}
@media (min-width: 901px) and (max-width: 1200px) {
    .primary-nav { gap: 1.25rem; }
    .primary-nav__list { gap: 1rem; }
    .primary-nav__list a { font-size: 0.86rem; }
}
.primary-nav__list a::after {
    content: '';
    position: absolute;
    left: 50%; right: 50%;
    bottom: 2px;
    height: 2px;
    background: var(--c-primary);
    transition: left 220ms cubic-bezier(.2,.8,.2,1), right 220ms cubic-bezier(.2,.8,.2,1);
}
.primary-nav__list a:hover::after,
.primary-nav__list .current-menu-item a::after,
.primary-nav__list .current-menu-parent a::after { left: 0; right: 0; }
.primary-nav__list a:hover,
.primary-nav__list .current-menu-item a { color: var(--c-primary-700); }

/* ---------- Hero polish ---------- */
.hero {
    padding: clamp(5rem, 11vw, 9rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    background: radial-gradient(1400px 560px at 50% -15%, rgba(167, 139, 250, 0.22), transparent 72%),
                linear-gradient(180deg, #fff 0%, var(--c-surface-warm) 100%);
}
.hero__blob { opacity: 0.42; filter: blur(88px); }
.hero__blob--one   { width: 520px; height: 520px; }
.hero__blob--two   { width: 420px; height: 420px; opacity: 0.35; }
.hero__blob--three { width: 320px; height: 320px; opacity: 0.32; }

.hero__inner { max-width: 960px; }
.hero__title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin-bottom: 1.5rem;
}
.hero__lede {
    font-size: clamp(1.08rem, 1.4vw, 1.22rem);
    line-height: 1.55;
    max-width: 620px;
    margin-bottom: 2.25rem;
}
.hero__actions { gap: 1rem; margin-bottom: 2.5rem; }
.hero__bullets {
    gap: 1.5rem 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--c-line);
}
.hero__bullets li {
    font-size: 0.92rem;
    color: var(--c-muted);
    gap: 0.5rem;
}

/* Hero eyebrow (with flag) refinement */
.hero .eyebrow {
    background: #fff;
    border: 1px solid var(--c-line);
    padding: 0.5rem 0.9rem 0.5rem 0.55rem;
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--c-ink);
    margin-bottom: 1.5rem;
}
.au-badge {
    width: 22px;
    height: 13px;
    border-radius: 2px;
    overflow: hidden;
    margin-right: 0.25rem;
    box-shadow: none;
}

/* ---------- Marquee refinement ---------- */
.marquee { padding: 2.2rem 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.marquee__track { animation-duration: 55s; gap: 2.25rem; }
.marquee__item {
    font-size: clamp(1.15rem, 1.9vw, 1.6rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    gap: 0.9rem;
}
.marquee__dot {
    width: 6px; height: 6px;
    background: var(--c-accent);
    opacity: 0.7;
}
.marquee--dark { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ---------- Partner wall — refined ---------- */
.partner-wall {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.partner-wall__head { margin-bottom: 2.5rem; }
.partner-wall__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-primary-700);
    margin: 0 0 0.6rem;
}
.partner-wall__title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 600;
    color: var(--c-ink);
    letter-spacing: -0.015em;
    margin: 0;
}
.partner-grid {
    display: grid;
    gap: 12px;
    background: transparent;
    border: 0;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .partner-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1180px) { .partner-grid { grid-template-columns: repeat(6, 1fr); } }

.partner {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 1.35rem 1rem;
    min-height: 96px;
    gap: 0.7rem;
    color: var(--c-muted);
    transition: transform 240ms cubic-bezier(.2,.8,.2,1),
                border-color 240ms, color 240ms, box-shadow 240ms;
}
.partner:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: var(--c-accent-light);
    color: var(--c-ink);
    box-shadow: var(--shadow-md);
}
.partner svg { width: 26px; height: 26px; opacity: 0.9; transition: opacity 240ms; }
.partner:hover svg { opacity: 1; }
.partner__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--c-ink);
}

/* ---------- Promises band — refined ---------- */
.promises {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(1000px 500px at 20% 0%, rgba(196, 181, 253, 0.18), transparent 60%),
        linear-gradient(180deg, var(--c-surface) 0%, var(--c-surface-warm) 100%);
}
.promise {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 260ms cubic-bezier(.2,.8,.2,1),
                box-shadow 260ms, border-color 260ms;
}
.promise:hover {
    transform: translateY(-3px);
    border-color: var(--c-accent-light);
    box-shadow: var(--shadow-md);
}
.promise__kpi {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.035em;
    background: linear-gradient(135deg, var(--c-primary-800), var(--c-primary));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
}
.promise__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 0.4rem;
}
.promise__copy {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}
.promise__bar {
    height: 2px;
    background: var(--c-line);
}

/* ---------- AU trust band — refined ---------- */
.au-band { padding: clamp(4rem, 8vw, 6rem) 0; }
.au-band::before { opacity: 0.5; }
.au-band__mark svg {
    max-width: 180px;
    filter: drop-shadow(0 20px 40px rgba(76, 29, 149, 0.22));
}
.au-band__copy h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    letter-spacing: -0.02em;
    line-height: 1.12;
}
.au-band__copy > p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--c-ink-3);
    max-width: 720px;
}
.au-band__list { gap: 0.85rem 1.75rem; margin-bottom: 2rem; }
.au-band__list li {
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(196, 181, 253, 0.35);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 0.94rem;
    line-height: 1.5;
    gap: 0.7rem;
    align-items: flex-start;
}
.au-band__list li > div { flex: 1 1 auto; min-width: 0; }
.au-band__list li > div strong { display: block; color: var(--c-ink); margin-bottom: 0.15rem; }

/* ---------- Unified card system ---------- */
.service-card,
.industry-card,
.industry-feature,
.post-card,
.case-card,
.pricing-card,
.retainer-card,
.stack-group,
.phase,
.step {
    border-radius: var(--radius-md);
    transition: transform 280ms cubic-bezier(.2,.8,.2,1),
                border-color 280ms, box-shadow 280ms, background 280ms;
    box-shadow: var(--shadow-xs);
}
.service-card:hover,
.industry-card:hover,
.post-card:hover,
.case-card:hover,
.pricing-card:hover,
.retainer-card:hover,
.stack-group:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-accent-light);
}

.service-card,
.industry-card,
.industry-feature,
.post-card,
.case-card {
    padding: 1.75rem 1.6rem;
    border: 1px solid var(--c-line);
}
.service-card h3,
.industry-card h3 { margin-bottom: 0.55rem; font-size: 1.2rem; }
.service-card p,
.industry-card p {
    color: var(--c-muted);
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.service-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c-primary-50), #fff);
    border: 1px solid var(--c-line);
    color: var(--c-primary);
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow-xs);
}
.service-card__icon .amora-icon { width: 22px; height: 22px; }

.card-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--c-primary-700);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 220ms, color 220ms;
}
.card-link:hover { gap: 0.55rem; color: var(--c-primary-800); }

/* ---------- Service preview (homepage) ---------- */
.services-preview .card-grid--4 {
    gap: 1.25rem;
}
@media (min-width: 700px)  { .services-preview .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-preview .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Steps (4-phase method) ---------- */
.section--dark .step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 181, 253, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.75rem;
}
.section--dark .step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 181, 253, 0.3);
}
.step__num {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--c-accent-light), var(--c-accent));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
}
.section--dark .step h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.55rem; }
.section--dark .step p { color: #c9c3e8; font-size: 0.95rem; line-height: 1.55; margin: 0; }
.section--dark .step a { color: var(--c-accent-light); text-decoration: underline; text-decoration-color: rgba(196, 181, 253, 0.4); }
.section--dark .step a:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- Dark sections: depth + grain ---------- */
.section--dark {
    background:
        radial-gradient(900px 500px at 10% 10%, rgba(124, 58, 237, 0.28), transparent 70%),
        radial-gradient(800px 500px at 90% 90%, rgba(167, 139, 250, 0.22), transparent 70%),
        linear-gradient(180deg, var(--c-dark) 0%, var(--c-dark-2) 55%, var(--c-dark-3) 100%);
    color: #e7e2ff;
}
.section--dark::before,
.section--dark::after { filter: blur(140px); opacity: 0.32; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

/* Subtle noise/grain texture */
.section--dark {
    position: relative;
}
.section--dark > .container {
    position: relative;
    z-index: 1;
}
.new-stack::after,
.section--dark.new-stack::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ---------- NDA form page ---------- */
.nda-section { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem); }
.nda-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 960px) {
    .nda-layout { grid-template-columns: 1fr 1.3fr; }
}
.nda-sidebar {
    background: var(--c-surface-warm);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
}
@media (max-width: 959px) {
    .nda-sidebar { position: relative; top: 0; }
}
.nda-sidebar h2 {
    font-size: 1rem;
    font-family: var(--font-sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-primary-700);
    margin: 0 0 0.75rem;
}
.nda-steps { margin-bottom: 1rem; }
.nda-steps li {
    font-size: 0.95rem;
    color: var(--c-ink-2);
    padding: 0.4rem 0;
    line-height: 1.55;
}
.nda-note {
    margin-top: 1.5rem;
    padding: 0.9rem 1rem;
    background: var(--c-primary-50);
    border-left: 3px solid var(--c-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--c-ink-2);
    line-height: 1.55;
}
.nda-note strong { color: var(--c-primary-800); }
.nda-microprint {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--c-surface-warm);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--c-line);
    color: var(--c-muted);
    line-height: 1.55;
}
.req { color: var(--c-primary-700); margin-left: 0.15rem; }
.field-hint {
    display: block;
    margin-top: 0.35rem;
    color: var(--c-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}
.nda-signature-field { margin-top: 0.5rem; padding-top: 1rem; border-top: 1px dashed var(--c-line); }
.nda-signature-input {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 1.75rem !important;
    color: var(--c-primary-800) !important;
    padding: 0.6rem 0.9rem !important;
    line-height: 1.2 !important;
}
.nda-signature-input:focus {
    background: #fff !important;
    border-color: var(--c-primary) !important;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15) !important;
}

@media (max-width: 700px) {
    .nda-sidebar { padding: 1.35rem 1.2rem; }
    .nda-sidebar h2 { font-size: 0.92rem; }
    .nda-signature-input { font-size: 1.5rem !important; }
}

/* Dancing Script font import (loaded sitewide, but cheap for signatures) */

/* ---------- Finance band (pricing page) ---------- */
.finance-band {
    background: linear-gradient(180deg, var(--c-surface-warm) 0%, var(--c-surface) 100%);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.finance-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 1.5rem;
}
@media (min-width: 800px) { .finance-grid { grid-template-columns: repeat(3, 1fr); } }
.finance-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color 240ms, box-shadow 240ms, transform 240ms;
}
.finance-card:hover {
    border-color: var(--c-accent-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.finance-card h3 {
    font-size: 1.08rem;
    margin-bottom: 0.55rem;
    color: var(--c-primary-800);
}
.finance-card p {
    color: var(--c-muted);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0;
}
.finance-note {
    color: var(--c-muted);
    font-size: 0.94rem;
    padding: 1rem 1.25rem;
    background: var(--c-primary-50);
    border-left: 3px solid var(--c-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 0;
}
.finance-note a { color: var(--c-primary-700); font-weight: 600; }

/* ---------- MVP sprint section ---------- */
.mvp-sprint {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background:
        radial-gradient(1000px 400px at 20% 0%, rgba(167, 139, 250, 0.14), transparent 70%),
        radial-gradient(800px 400px at 80% 100%, rgba(124, 58, 237, 0.10), transparent 70%),
        var(--c-surface);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    position: relative;
    overflow: hidden;
}
.mvp-sprint__intro {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}
.mvp-sprint__intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.mvp-sprint__lede {
    font-size: 1.1rem;
    color: var(--c-muted);
    line-height: 1.55;
    max-width: 620px;
    margin: 0 auto;
}

.mvp-timeline {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    counter-reset: mvp;
    position: relative;
}
@media (min-width: 700px)  { .mvp-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .mvp-timeline { grid-template-columns: repeat(4, 1fr); } }

.mvp-step {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    position: relative;
    counter-increment: mvp;
    transition: transform 280ms, border-color 280ms, box-shadow 280ms;
    overflow: hidden;
}
.mvp-step::before {
    content: counter(mvp, decimal-leading-zero);
    position: absolute;
    top: 0.85rem;
    right: 1.15rem;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--c-primary-50);
    line-height: 1;
    z-index: 0;
}
.mvp-step:hover {
    transform: translateY(-4px);
    border-color: var(--c-accent-light);
    box-shadow: var(--shadow-md);
}
.mvp-step > * { position: relative; z-index: 1; }
.mvp-step__days {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-primary-700);
    background: var(--c-primary-50);
    border: 1px solid var(--c-primary-100);
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.mvp-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.mvp-step p {
    font-size: 0.92rem;
    color: var(--c-muted);
    line-height: 1.55;
    margin: 0;
}

.mvp-examples {
    margin: 0 0 3rem;
}
.mvp-examples__title {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-muted);
    text-align: center;
    margin: 0 0 1.25rem;
}
.mvp-examples__grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .mvp-examples__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .mvp-examples__grid { grid-template-columns: repeat(3, 1fr); } }
.mvp-example {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    font-size: 0.94rem;
    color: var(--c-ink-2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
    transition: border-color 240ms, background 240ms;
}
.mvp-example:hover { border-color: var(--c-accent-light); background: var(--c-primary-50); }
.mvp-example__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-primary-700);
    background: rgba(124, 58, 237, 0.09);
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.mvp-cta {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--c-primary-50), #fff);
    border: 1px dashed var(--c-primary-100);
    border-radius: var(--radius-md);
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 800px) {
    .mvp-cta {
        grid-template-columns: 1fr auto;
        text-align: left;
        padding: 1.5rem 2rem;
    }
}
.mvp-cta p {
    margin: 0;
    color: var(--c-ink-2);
    font-size: 1rem;
    line-height: 1.5;
}
.mvp-cta strong { color: var(--c-primary-800); }

/* ---------- AI Sales featured section ---------- */
.ai-sales {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}
.ai-sales .text-gradient {
    background: linear-gradient(90deg, #ddd6fe, #a78bfa, #c4b5fd, #ddd6fe);
    background-size: 220% 100%;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ai-sales__pipeline {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 2.5rem 0 3rem;
    padding: 1.5rem 1rem;
}
@media (min-width: 900px) {
    .ai-sales__pipeline { display: flex; }
}
.pipe-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}
.pipe-node__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, var(--c-accent) 55%, var(--c-primary) 100%);
    box-shadow: 0 0 0 6px rgba(167, 139, 250, 0.22),
                0 0 28px rgba(167, 139, 250, 0.55);
    animation: node-pulse 2.4s cubic-bezier(.4,0,.6,1) infinite;
}
.pipe-node:nth-child(3) .pipe-node__dot { animation-delay: .3s; }
.pipe-node:nth-child(5) .pipe-node__dot { animation-delay: .6s; }
.pipe-node:nth-child(7) .pipe-node__dot { animation-delay: .9s; }
.pipe-node:nth-child(9) .pipe-node__dot { animation-delay: 1.2s; }
@keyframes node-pulse {
    0%, 100% { transform: scale(1);   box-shadow: 0 0 0 6px rgba(167, 139, 250, 0.22), 0 0 28px rgba(167, 139, 250, 0.55); }
    50%      { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(167, 139, 250, 0.14), 0 0 44px rgba(167, 139, 250, 0.75); }
}
.pipe-node__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ddd6fe;
    white-space: nowrap;
}
.pipe-node--end .pipe-node__dot {
    background: radial-gradient(circle at 30% 30%, #fff, #c4b5fd 40%, #7c3aed 100%);
    box-shadow: 0 0 0 8px rgba(167, 139, 250, 0.28),
                0 0 40px rgba(167, 139, 250, 0.9);
}
.pipe-edge {
    flex: 1 1 auto;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.5), transparent);
    position: relative;
    margin: 0 0.5rem;
    margin-top: -24px; /* align with dots */
}
.pipe-edge::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -10%;
    width: 20%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    filter: blur(1px);
    animation: edge-flow 3s linear infinite;
}
.pipe-edge:nth-of-type(4)::after { animation-delay: .75s; }
.pipe-edge:nth-of-type(6)::after { animation-delay: 1.5s; }
.pipe-edge:nth-of-type(8)::after { animation-delay: 2.25s; }
@keyframes edge-flow {
    0%   { left: -10%; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.ai-sales-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 181, 253, 0.18);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.6rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 300ms cubic-bezier(.2,.8,.2,1),
                border-color 300ms, background 300ms;
}
.ai-sales-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    opacity: 0.4;
    transition: opacity 300ms;
}
.ai-sales-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 181, 253, 0.4);
}
.ai-sales-card:hover::before { opacity: 1; }
.ai-sales-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-accent-light);
    background: rgba(167, 139, 250, 0.18);
    border: 1px solid rgba(196, 181, 253, 0.3);
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.ai-sales-card h3 {
    color: #fff;
    font-size: 1.18rem;
    letter-spacing: -0.015em;
    margin-bottom: 0.55rem;
    line-height: 1.25;
}
.ai-sales-card p {
    color: #c9c3e8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ai-sales__outcomes {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 181, 253, 0.14);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
}
@media (min-width: 900px) {
    .ai-sales__outcomes {
        grid-template-columns: 1fr auto;
        text-align: left;
    }
}
.ai-sales__outcome {
    color: #c9c3e8;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}
.ai-sales__outcome strong { color: #fff; font-weight: 700; }

/* ---------- New-stack (services page "New for 2026") — more elegance ---------- */
.new-stack .eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    background: rgba(167, 139, 250, 0.16);
    border: 1px solid rgba(196, 181, 253, 0.3);
    color: var(--c-accent-light);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ---------- Pricing cards refinement ---------- */
.pricing-card {
    padding: 2rem;
    gap: 1.1rem;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-xs);
    background: #fff;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
    border: 2px solid var(--c-primary);
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.16), var(--shadow);
    background: linear-gradient(180deg, #fff 0%, #fdfcff 45%, var(--c-primary-50) 100%);
}
.pricing-card--featured:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-xl);
}
.pricing-card__badge {
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-800));
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.28);
}
.pricing-card__price {
    font-size: clamp(2.4rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--c-ink);
    margin: 0.15rem 0 0.25rem;
}
.pricing-card__from {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-muted);
}
.pricing-card__sub { font-size: 0.88rem; color: var(--c-muted); }
.pricing-card__best {
    font-style: normal;
    color: var(--c-muted);
    font-size: 0.88rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--c-line);
}
.pricing-card .tick-list li {
    padding: 0.4rem 0;
    font-size: 0.96rem;
    color: var(--c-ink-3);
}

.retainer-card {
    padding: 1.8rem;
    border: 1px solid var(--c-line);
}
.retainer-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.retainer-card__price {
    font-size: 1.5rem;
    color: var(--c-ink);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

/* ---------- Phase (process page) refinement ---------- */
.phase {
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--c-line);
}
.phase::before { width: 4px; border-radius: 2px 0 0 2px; }
.phase__num { font-size: clamp(3.5rem, 6vw, 5rem); }
.phase__body h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 0.5rem; }
.phase__body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: var(--c-primary-700);
}
.phase__lede {
    font-size: 1.08rem;
    color: var(--c-ink-2);
    margin-bottom: 0.75rem;
}

/* ---------- FAQ polish ---------- */
.faq__list details {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--c-line);
}
.faq__list summary {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--c-ink);
    gap: 1.25rem;
}
.faq__list summary::after {
    width: 32px; height: 32px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: transform 280ms, background 280ms, color 280ms;
}
.faq__list details[open] summary::after {
    transform: rotate(180deg);
}
.faq__list details p {
    margin-top: 0.9rem;
    color: var(--c-muted);
    line-height: 1.65;
    font-size: 0.98rem;
}
.faq__list details p a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--c-accent-light);
}

.faq-group { margin-bottom: 3.5rem; }
.faq-group h2 {
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    margin-bottom: 1.25rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--c-primary-100);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.015em;
}

/* ---------- Button system polish ---------- */
.btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: transform 200ms cubic-bezier(.2,.8,.2,1),
                background 240ms, color 240ms, box-shadow 240ms;
}
.btn--lg {
    padding: 1.05rem 1.7rem;
    font-size: 1.02rem;
}
.btn--primary {
    background: var(--c-primary);
    box-shadow: 0 10px 24px -8px rgba(124, 58, 237, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn--primary:hover {
    background: var(--c-primary-700);
    box-shadow: 0 14px 32px -8px rgba(124, 58, 237, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--ghost {
    background: #fff;
    border: 1px solid var(--c-line);
    color: var(--c-ink);
    box-shadow: var(--shadow-xs);
}
.btn--ghost:hover {
    background: var(--c-primary-50);
    border-color: var(--c-primary-100);
    color: var(--c-primary-800);
}
.btn:focus-visible {
    outline: 3px solid var(--c-primary);
    outline-offset: 3px;
}

/* ---------- CTA band polish ---------- */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, var(--c-primary-800) 0%, var(--c-primary) 55%, var(--c-primary-700) 100%);
    color: #fff;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.7;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.cta-band__inner {
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.cta-band h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
}
.cta-band p {
    font-size: 1.05rem;
    line-height: 1.55;
    color: #ece6ff;
}
.cta-band .btn--primary {
    background: #fff;
    color: var(--c-primary-800);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.25);
}
.cta-band .btn--primary:hover {
    background: #f5f0ff;
    color: var(--c-primary-800);
    transform: translateY(-2px);
    box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.35);
}

/* ---------- Footer polish ---------- */
.site-footer {
    background: linear-gradient(180deg, #0f0c2e 0%, #080618 100%);
    padding: clamp(4rem, 7vw, 6rem) 0 1.5rem;
    color: #b8b1d8;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }
.site-footer h3 {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.1rem;
}
.site-footer li { padding: 0.28rem 0; }
.site-footer a {
    color: #b8b1d8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 200ms;
}
.site-footer a:hover { color: #fff; }
.site-footer__tagline {
    color: #938ebc;
    font-size: 0.96rem;
    line-height: 1.55;
    max-width: 400px;
    margin: 1rem 0 1.25rem;
}
.site-footer__au {
    background: rgba(167, 139, 250, 0.14);
    border: 1px solid rgba(196, 181, 253, 0.22);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 0.55rem 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.site-footer__abn {
    color: #746d99;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    line-height: 1.5;
}
.site-footer__bottom {
    margin-top: 3rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #746d99;
    font-size: 0.85rem;
}
.site-footer__legal a { font-size: 0.85rem; color: #938ebc; }
.site-footer__social a {
    background: rgba(255, 255, 255, 0.06);
    transition: background 220ms, transform 220ms;
}
.site-footer__social a:hover {
    background: var(--c-primary);
    transform: translateY(-2px);
}

/* ---------- Form polish (contact) ---------- */
.contact-form {
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-sm);
    background: #fff;
}
.contact-form h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    letter-spacing: -0.015em;
    margin-bottom: 0.4rem;
}
.field { margin-bottom: 1.15rem; }
.field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--c-line);
    border-radius: var(--radius-sm);
    background: var(--c-surface-warm);
    font-size: 0.98rem;
    transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    background: #fff;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}

/* ---------- Prose refinement ---------- */
.prose {
    max-width: 720px;
    margin: 0 auto;
}
.prose h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}
.prose p,
.prose li {
    font-size: 1.075rem;
    line-height: 1.72;
    color: var(--c-ink-2);
}
.prose p { margin-bottom: 1.25rem; }
.prose ul {
    padding-left: 0;
    list-style: none;
    margin: 1.25rem 0;
}
.prose ul li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.8rem;
}
.prose ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.95em;
    width: 10px; height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
}
.prose ul li strong { color: var(--c-ink); font-weight: 700; }
.prose a {
    color: var(--c-primary-700);
    text-decoration-color: var(--c-accent-light);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    font-weight: 500;
}
.prose a:hover { color: var(--c-primary-800); text-decoration-color: var(--c-primary-700); }
.prose strong { color: var(--c-ink); font-weight: 700; }

/* ---------- Service rows — visual stays a fixed-height tile ---------- */
.service-row { align-items: start; gap: 2.5rem; }
.service-row__visual {
    aspect-ratio: auto !important;
    align-self: start !important;
    position: sticky !important;
    top: 100px;
    height: 360px !important;
    max-height: 360px !important;
    min-height: 0 !important;
}
@media (max-width: 899px) {
    .service-row__visual { position: relative !important; top: 0; height: 200px !important; aspect-ratio: auto !important; }
}

/* ---------- Kill double section padding when headers are alone ---------- */
.section + .section { padding-top: 0; }
.section--dark + .section { padding-top: clamp(4rem, 8vw, 6.5rem); }
.section--muted + .section { padding-top: clamp(4rem, 8vw, 6.5rem); }

/* ---------- Tick lists (non-prose) ----------
   Flex w/ multiple inline children caused strong/em/text to become
   separate flex items. Use hanging-indent with an absolutely-positioned
   icon so content flows naturally and wraps cleanly. */
.tick-list,
.tick-list--x { list-style: none; padding-left: 0; }
.tick-list li,
.tick-list--x li {
    display: block !important;
    position: relative;
    padding: 0.5rem 0 0.5rem 1.85rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--c-ink-2);
}
.tick-list li > .amora-icon,
.tick-list--x li > .amora-icon {
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 1.05em;
    height: 1.05em;
    color: var(--c-primary);
}
.tick-list--x li > .amora-icon { color: #b91c1c; }
.tick-list strong,
.tick-list--x strong { color: var(--c-ink); font-weight: 700; }

/* Prevent breaks within acronym sequences like "E-E-A-T" */
.tick-list strong, .prose strong { word-break: keep-all; overflow-wrap: normal; }

/* ---------- Section rhythm ---------- */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--muted {
    background: var(--c-surface-warm);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}

/* ---------- Page hero refinement ---------- */
.page-hero {
    padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero .section__lede {
    max-width: 660px;
    margin: 0;
}
.page-hero--center .section__lede { margin: 0 auto; }

/* ---------- Industries grid polish ---------- */
.industry-card h3 { color: var(--c-ink); }
.industry-card p a { color: var(--c-primary-700); font-weight: 500; text-decoration: underline; text-decoration-color: var(--c-accent-light); }
.industries__note {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--c-surface-warm);
    border-radius: var(--radius);
    text-align: center;
    color: var(--c-muted);
    border: 1px dashed var(--c-line);
}

/* ---------- Breadcrumb polish ---------- */
.breadcrumbs ol {
    font-size: 0.82rem;
    color: var(--c-muted-2);
    margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--c-muted); font-weight: 500; transition: color 200ms; }
.breadcrumbs a:hover { color: var(--c-primary-700); }
.breadcrumbs li + li::before { color: var(--c-line-strong); margin: 0 0.35rem; }

/* ---------- Focus states (unified) ---------- */
a:focus-visible,
.btn:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 2.5px solid var(--c-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- Mobile nav: force full-viewport height + proper hide ---------- */
@media (max-width: 900px) {
    .site-header { z-index: 60; }
    .site-branding { position: relative; z-index: 3; }
    .nav-toggle { position: relative; z-index: 3; }
    .primary-nav {
        z-index: 2;
        height: calc(100vh - 72px);
        min-height: calc(100vh - 72px);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 20px 60px rgba(15, 10, 38, 0.18);
        transition: transform 220ms cubic-bezier(.2,.8,.2,1),
                    opacity 220ms ease,
                    visibility 0s linear 220ms;
    }
    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition: transform 220ms cubic-bezier(.2,.8,.2,1),
                    opacity 220ms ease,
                    visibility 0s linear 0s;
    }
    .nav-toggle {
        width: 44px;
        height: 44px;
        padding: 0;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border-color: var(--c-line);
        background: #fff;
    }
    .nav-toggle .amora-icon { width: 22px; height: 22px; }
    .primary-nav__list a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 0.5rem 0;
    }
    .primary-nav .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ---------- Mobile polish (<= 700px) ---------- */
@media (max-width: 700px) {
    html { font-size: 16px; }

    .container { padding: 0 1.1rem; }

    /* Hero */
    .hero { padding-top: 3rem; padding-bottom: 2.5rem; }
    .hero__inner { max-width: 100%; }
    .hero__title { font-size: 2.1rem; line-height: 1.06; letter-spacing: -0.02em; }
    .hero__lede { font-size: 1rem; line-height: 1.55; }
    .hero__actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
    .hero__actions .btn { justify-content: center; width: 100%; }
    .hero__bullets { gap: 0.6rem 0; flex-direction: column; padding-top: 1rem; }
    .hero__bullets li { padding: 0.2rem 0; font-size: 0.9rem; }
    .hero .eyebrow {
        display: flex;
        flex-wrap: wrap;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        padding: 0.45rem 0.8rem 0.45rem 0.5rem;
        line-height: 1.3;
    }

    /* Page heros */
    .page-hero h1 { font-size: 2rem; line-height: 1.1; }
    .page-hero .section__lede { font-size: 1rem; }

    /* Section head */
    .section__head { margin-bottom: 2rem; text-align: left; max-width: 100%; }
    .section__head .eyebrow { margin-left: 0; margin-right: 0; }
    .section__head h1,
    .section__head h2 { text-align: left; }
    .section__head--split { grid-template-columns: 1fr; text-align: left; }

    /* MVP sprint section */
    .mvp-sprint__intro { text-align: left; margin-bottom: 2rem; }
    .mvp-sprint__intro h2 { font-size: 1.7rem; line-height: 1.12; text-align: left; }
    .mvp-sprint__lede { margin: 0; font-size: 1rem; }
    .mvp-timeline { gap: 0.75rem; }
    .mvp-step { padding: 1.2rem 1.1rem; }
    .mvp-step::before { font-size: 2rem; top: 0.85rem; right: 0.9rem; }
    .mvp-examples__grid { gap: 0.5rem; }
    .mvp-example { padding: 0.75rem 0.9rem; font-size: 0.88rem; gap: 0.6rem; }
    .mvp-cta { padding: 1.1rem; text-align: left; gap: 0.9rem; }
    .mvp-cta p { font-size: 0.92rem; }
    .mvp-cta .btn { width: 100%; justify-content: center; }

    /* Promises band */
    .promises { padding: 2.5rem 0; }
    .promise { padding: 1.3rem 1.1rem 1.5rem; }
    .promise__kpi { font-size: 2rem; }
    .promise__label { font-size: 0.95rem; }
    .promise__copy { font-size: 0.88rem; }

    /* AU band */
    .au-band { padding: 3rem 0; }
    .au-band__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
    .au-band__mark { max-width: 120px; }
    .au-band__copy h2 { font-size: 1.5rem; line-height: 1.15; }
    .au-band__copy > p { font-size: 0.98rem; }
    .au-band__list { grid-template-columns: 1fr; gap: 0.55rem; }
    .au-band__list li { padding: 0.6rem 0.8rem; font-size: 0.9rem; }

    /* Partner wall */
    .partner-grid { gap: 8px; grid-template-columns: repeat(2, 1fr); }
    .partner { padding: 0.9rem 0.6rem; min-height: 72px; gap: 0.5rem; }
    .partner svg { width: 20px; height: 20px; }
    .partner__name { font-size: 0.82rem; }
    .partner-wall__head { margin-bottom: 1.5rem; }
    .partner-wall__title { font-size: 1.2rem; }

    /* AI sales section */
    .ai-sales { padding: 3rem 0; }
    .ai-sales-card { padding: 1.4rem 1.2rem; }
    .ai-sales-card h3 { font-size: 1.05rem; }
    .ai-sales-card p { font-size: 0.9rem; }
    .ai-sales__outcomes { grid-template-columns: 1fr; padding: 1.3rem; text-align: left; gap: 1rem; }
    .ai-sales__outcome { font-size: 0.88rem; }

    /* Service cards homepage */
    .service-card, .industry-card, .industry-feature, .post-card, .case-card,
    .pricing-card, .retainer-card, .stack-group, .phase, .step {
        padding: 1.4rem 1.2rem;
    }

    /* Service rows — stack */
    .service-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-row__visual { height: 180px !important; order: 2; }
    .service-row__copy { order: 1; }
    .service-row--reverse .service-row__copy { order: 1; }
    .service-row--reverse .service-row__visual { order: 2; }

    /* Pricing */
    .pricing-card { padding: 1.4rem 1.2rem; }
    .pricing-card__price { font-size: 2rem; }
    .pricing-card__badge { font-size: 0.68rem; left: 1.2rem; }

    /* Process / phase */
    .phase { padding: 1.4rem 1.2rem; grid-template-columns: 1fr; gap: 0.5rem; }
    .phase__num { font-size: 2.6rem; line-height: 1; }
    .phase__body h3 { font-size: 1.25rem; }

    /* Stack */
    .stack-grid { grid-template-columns: 1fr; }

    /* FAQ */
    .faq-group { margin-bottom: 2.5rem; }
    .faq-group h2 { font-size: 1.3rem; }
    .faq__list summary { font-size: 1rem; gap: 0.75rem; }
    .faq__list summary::after { width: 28px; height: 28px; font-size: 1.2rem; }
    .faq__list details p { font-size: 0.95rem; }

    /* CTA band */
    .cta-band__inner { grid-template-columns: 1fr; text-align: center; padding: 2.5rem 0; }
    .cta-band h2 { font-size: 1.5rem; }
    .cta-band p { font-size: 0.96rem; }
    .cta-band .btn { width: 100%; justify-content: center; }

    /* Industries mobile */
    .industry-feature h2 { font-size: 1.3rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem 1.25rem; }

    /* Footer */
    .site-footer { padding: 3rem 0 1.25rem; }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 2rem;
    }
    .site-footer__legal { flex-wrap: wrap; gap: 0.75rem 1rem; }

    /* 404 page */
    .page-404 h1 { font-size: 1.8rem; }
    .glitch-digit { font-size: 5rem; }
    .glitch-orb { width: 70px; height: 70px; }

    /* Prose on mobile */
    .prose h2 { font-size: 1.4rem; margin-top: 2rem; }
    .prose h3 { font-size: 1.1rem; }
    .prose p, .prose li { font-size: 1rem; line-height: 1.65; }

    /* Service detail hero actions */
    .page-hero .hero__actions { flex-direction: column; align-items: stretch; }

    /* Scroll progress bar — thinner on mobile */
    .scroll-progress { height: 2px; }
}

/* ---------- Very small phones (<= 380px) ---------- */
@media (max-width: 380px) {
    .hero__title { font-size: 1.85rem; }
    .page-hero h1 { font-size: 1.7rem; }
    .mvp-sprint__intro h2 { font-size: 1.5rem; }
    .pricing-card__price { font-size: 1.75rem; }
    .partner-grid { grid-template-columns: 1fr; }
    .partner__name { font-size: 0.9rem; }
}

/* ---------- Tablet polish ---------- */
@media (min-width: 701px) and (max-width: 1039px) {
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
    .services-preview .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Print ---------- */
@media print {
    .site-header, .site-footer, .cta-band, .scroll-progress,
    .marquee, .hero__blob, .promises__grid { display: none !important; }
    body { color: #000; background: #fff; }
    .btn { display: none; }
    .section { padding: 1rem 0; }
    a { color: #000; text-decoration: underline; }
}

/* ---------- Respect reduced motion (reinforce) ---------- */
@media (prefers-reduced-motion: reduce) {
    .hero__blob, .marquee__track, .text-gradient,
    .site-logo__mark svg circle, .au-band__mark svg,
    .promise__bar::after, .section--dark::after { animation: none !important; }
    body { opacity: 1 !important; transition: none !important; }
    * { transition-duration: 0.001ms !important; }
}
