/* ============================================================
   Dropshipping Team — /fable build
   Dark editorial · Instrument Serif + Inter · volt accent
   ============================================================ */

:root {
    --bg: #0b0b0c;
    --bg-alt: #101012;
    --panel: #141416;
    --line: rgba(244, 241, 234, 0.12);
    --line-soft: rgba(244, 241, 234, 0.07);
    --text: #f4f1ea;
    --muted: #9a968c;
    --accent: #c6f24e;
    --accent-ink: #101201;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1100px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Grain overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

::selection { background: var(--accent); color: var(--accent-ink); }

a { color: inherit; }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 17px;
    padding: 17px 34px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(198, 242, 78, 0.25);
}

.btn-arrow { transition: transform 0.25s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-nav {
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 14px;
    padding: 10px 20px;
}

.btn-nav:hover { transform: translateY(-1px); }

/* ============ Nav ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(11, 11, 12, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line-soft);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wordmark {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: var(--text);
}

.wordmark-dot { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 8px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

/* ============ Hero ============ */
.hero {
    padding: 190px 0 0;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: -320px;
    right: -220px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 242, 78, 0.09) 0%, transparent 62%);
    pointer-events: none;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.015em;
    margin-bottom: 34px;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 44px;
}

.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

.cta-note {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* Hero visual — floating ops cards */
.hero-visual {
    display: flex;
    flex-direction: column;
    position: relative;
}

.vcard {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    width: min(360px, 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    position: relative;
}

.vcard-inbox {
    align-self: flex-start;
    transform: rotate(-2deg);
    animation: float 7s ease-in-out infinite;
    z-index: 3;
}

.vcard-dispute {
    align-self: flex-end;
    transform: rotate(1.6deg);
    margin-top: -10px;
    animation: float 8s ease-in-out infinite 1.2s;
    z-index: 2;
}

.vcard-hours {
    align-self: flex-start;
    transform: rotate(-1.2deg);
    margin-top: -8px;
    margin-left: 36px;
    animation: float 9s ease-in-out infinite 2.1s;
    z-index: 1;
}

@keyframes float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
}

.vcard-head {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 14px;
}

.vdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(198, 242, 78, 0.7);
}

.vico {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.vrow {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
}

.vold {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.varrow { color: var(--muted); }

.vnew {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--accent);
    line-height: 1;
}

.vbar {
    height: 6px;
    border-radius: 999px;
    background: var(--line-soft);
    overflow: hidden;
    margin: 14px 0 12px;
}

.vbar i {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 999px;
    background: var(--accent);
}

.vfoot {
    font-size: 12px;
    color: var(--muted);
}

.vamount {
    font-family: var(--serif);
    font-size: 40px;
    line-height: 1;
    margin-bottom: 12px;
}

.vamount em {
    font-style: italic;
    font-size: 22px;
    color: var(--accent);
}

.vchart {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 54px;
    margin: 4px 0 12px;
}

.vchart i {
    flex: 1;
    background: rgba(198, 242, 78, 0.22);
    border-radius: 4px 4px 0 0;
}

.vchart i.hi { background: var(--accent); }

/* Stats */
.stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 90px;
}

.stats li {
    padding: 30px 24px 30px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats li + li { padding-left: 24px; border-left: 1px solid var(--line-soft); }

.stats strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 38px;
    line-height: 1.1;
}

.stats span {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* ============ Marquee ============ */
.marquee {
    overflow: hidden;
    padding: 26px 0;
    border-bottom: 1px solid var(--line-soft);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: marquee 36s linear infinite;
}

.marquee-track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 21px;
    color: var(--muted);
    white-space: nowrap;
}

.marquee-track i {
    font-style: normal;
    font-size: 13px;
    color: var(--accent);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ Sections ============ */
.section { padding: 130px 0; }

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.label {
    font-size: 13px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 26px;
}

.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 760px;
    margin-bottom: 28px;
}

.section-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 70px;
}

/* ============ Pain list ============ */
.pain-list {
    list-style: none;
    margin-top: 60px;
    counter-reset: pain;
}

.pain-list li {
    counter-increment: pain;
    display: flex;
    align-items: baseline;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: padding-left 0.3s var(--ease);
}

.pain-list li:first-child { border-top: 1px solid var(--line-soft); }

.pain-list li::before {
    content: "0" counter(pain);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--muted);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.pain-list li:hover { padding-left: 12px; }
.pain-list li:hover::before { color: var(--accent); }

.pain-list em {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(21px, 2.6vw, 30px);
    line-height: 1.3;
    color: var(--text);
}

/* Death spiral diagram */
.spiral {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 56px;
}

.chip {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.sarr { color: var(--muted); font-size: 15px; }

.chip-warn {
    border-color: rgba(255, 176, 32, 0.5);
    color: #ffb020;
}

.chip-dead {
    border-color: rgba(255, 96, 80, 0.55);
    color: #ff6050;
}

.turn {
    margin-top: 44px;
    max-width: 640px;
    padding-left: 26px;
    border-left: 2px solid var(--accent);
}

.turn p { font-size: 18px; color: var(--muted); }
.turn p + p { margin-top: 20px; }
.turn strong { color: var(--text); font-weight: 600; }

/* ============ Calculator ============ */
.calc {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    margin-top: 64px;
}

.calc-input {
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    padding: 34px 32px;
}

.calc-input label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.calc-value {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 26px;
}

.calc-value span {
    font-family: var(--serif);
    font-size: 58px;
    line-height: 1;
    color: var(--accent);
}

.calc-value em {
    font-style: normal;
    font-size: 14px;
    color: var(--muted);
}

.calc-input input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: var(--line);
    outline: none;
    cursor: pointer;
}

.calc-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    box-shadow: 0 0 16px rgba(198, 242, 78, 0.5);
    cursor: grab;
}

.calc-input input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    box-shadow: 0 0 16px rgba(198, 242, 78, 0.5);
    cursor: grab;
}

.calc-range {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
}

.calc-out {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-stat {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 16px;
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    padding: 22px 32px;
}

.calc-stat strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    min-width: 92px;
}

.calc-stat span { font-size: 14px; color: var(--muted); }

.calc-hot { border-color: rgba(255, 96, 80, 0.4); }
.calc-hot strong { color: #ff6050; }

.calc-punch {
    margin-top: 40px;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.6vw, 27px);
    color: var(--text);
    max-width: 640px;
}

.calc-punch em {
    color: var(--accent);
}

/* ============ Compare table ============ */
.compare-wrap { margin-top: 70px; }

.compare-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 20px;
}

.compare-scroll { overflow-x: auto; }

.compare {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr 1.1fr;
    min-width: 640px;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    overflow: hidden;
    background: var(--panel);
}

.c-cell {
    padding: 18px 22px;
    font-size: 14px;
    color: var(--muted);
    border-top: 1px solid var(--line-soft);
}

.c-corner, .c-head { border-top: none; }

.c-head {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--text);
}

.c-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.c-me {
    background: rgba(198, 242, 78, 0.06);
    color: var(--text);
}

.c-head.c-me { color: var(--accent); }

/* ============ Roles ============ */
.roles {
    list-style: none;
    border-top: 1px solid var(--line-soft);
    margin-bottom: 100px;
}

.roles li {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: padding-left 0.3s var(--ease);
}

.roles li:hover { padding-left: 12px; }

.roles h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(21px, 2.4vw, 27px);
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 14px;
}

.role-ico {
    width: 21px;
    height: 21px;
    color: var(--accent);
    opacity: 0.9;
    flex-shrink: 0;
}

.roles li:hover h3 { color: var(--accent); transition: color 0.3s ease; }

.roles p { font-size: 15px; color: var(--muted); }

/* Offer */
.offer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offer-item {
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 36px 30px;
    transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.offer-item:hover {
    border-color: rgba(198, 242, 78, 0.35);
    transform: translateY(-4px);
}

.offer-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}

.offer-item h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 14px;
}

.offer-item p { font-size: 15px; color: var(--muted); }

.aside {
    margin-top: 46px;
    font-size: 14px;
    color: var(--muted);
    max-width: 560px;
    padding-left: 22px;
    border-left: 1px solid var(--line);
}

/* ============ Why me ============ */
.prose { max-width: 640px; margin-top: 46px; }
.prose p { font-size: 18px; color: var(--muted); margin-bottom: 26px; }

/* Team grid */
.team { margin-top: 60px; }

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 560px;
}

.tg {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid var(--line-soft);
    background: var(--panel);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tg svg { width: 19px; height: 19px; }

.tg.on {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
}

.team-caption {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.pull-quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.15;
    margin-top: 70px;
    color: var(--accent);
    max-width: 800px;
}

/* ============ Steps ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.step {
    border-top: 1px solid var(--line);
    padding-top: 30px;
    position: relative;
}

.step-num {
    font-family: var(--serif);
    font-size: 62px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--muted);
    display: block;
    margin-bottom: 24px;
}

.step h3 {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-time {
    font-size: 11px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.08em;
    color: var(--accent-ink);
    background: var(--accent);
    border-radius: 999px;
    padding: 4px 10px;
}

.step p { font-size: 15px; color: var(--muted); }

/* ============ FAQ ============ */
.faq-list {
    margin-top: 56px;
    max-width: 780px;
    border-top: 1px solid var(--line-soft);
}

.faq-list details { border-bottom: 1px solid var(--line-soft); }

.faq-list summary {
    font-family: var(--serif);
    font-size: clamp(20px, 2.3vw, 26px);
    padding: 28px 44px 28px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.2s ease;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary:hover { color: var(--accent); }

.faq-icon {
    position: absolute;
    right: 4px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--muted);
    transition: transform 0.3s var(--ease), background 0.2s ease;
}

.faq-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-icon::after { left: 7px; top: 0; width: 2px; height: 16px; }

details[open] .faq-icon::after { transform: scaleY(0); }
details[open] .faq-icon::before { background: var(--accent); }

.faq-list details p {
    padding: 0 0 30px;
    max-width: 640px;
    color: var(--muted);
    font-size: 16px;
}

/* ============ Book ============ */
.book {
    background: var(--bg-alt);
    border-top: 1px solid var(--line-soft);
    text-align: center;
}

.book .label { margin-left: auto; margin-right: auto; }

.book-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 auto 24px;
    max-width: 800px;
}

.book-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 54px;
}

.calendly-inline-widget {
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    overflow: hidden;
    background: var(--panel);
    max-width: 900px;
    margin: 0 auto;
}

.book-fallback {
    margin-top: 26px;
    font-size: 14px;
    color: var(--muted);
}

.book-fallback a { color: var(--text); text-underline-offset: 3px; }
.book-fallback a:hover { color: var(--accent); }

.book-ps {
    margin: 44px auto 0;
    max-width: 480px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--muted);
}

/* ============ Footer ============ */
.footer {
    border-top: 1px solid var(--line-soft);
    padding: 56px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.footer .wordmark { font-size: 20px; }

.footer-tag { font-size: 14px; color: var(--muted); margin-top: 6px; }

.footer-meta {
    text-align: right;
    font-size: 14px;
    color: var(--muted);
}

.footer-meta a {
    color: var(--text);
    text-decoration: none;
}

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

.footer-meta p { margin-top: 6px; }

/* ============ Reveal animation ============ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
    .vcard { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
    .section { padding: 90px 0; }
    .hero { padding-top: 150px; }
    .hero-grid { grid-template-columns: 1fr; gap: 70px; }
    .hero-visual { max-width: 420px; }
    .hero-title { font-size: clamp(42px, 9vw, 64px); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stats li { padding: 24px 16px 24px 0; }
    .stats li + li { padding-left: 0; border-left: none; }
    .stats li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-soft); }
    .stats li:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
    .offer { grid-template-columns: 1fr; }
    .calc { grid-template-columns: 1fr; }
    .calc-value span { font-size: 46px; }
    .calc-stat { padding: 18px 24px; }
    .calc-stat strong { font-size: 32px; min-width: 74px; }
    .steps { grid-template-columns: 1fr; gap: 44px; }
    .roles li { grid-template-columns: 1fr; gap: 6px; }
    .nav-links { display: none; }
}

@media (max-width: 560px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 14px 20px; }
    .wordmark { font-size: 19px; }
    .btn-nav { font-size: 13px; padding: 9px 16px; }
    .hero { padding-top: 128px; }
    .hero-sub { font-size: 16px; }
    .btn-primary { font-size: 16px; padding: 15px 28px; }
    .stats { margin-top: 64px; }
    .stats strong { font-size: 30px; }
    .turn { margin-top: 48px; }
    .turn p, .prose p { font-size: 16px; }
    .pain-list li { gap: 16px; padding: 24px 0; }
    .vcard { padding: 18px 20px; }
    .vcard-hours { margin-left: 16px; }
    .spiral { gap: 9px; }
    .chip { padding: 8px 15px; font-size: 13px; }
    .tg { width: 34px; height: 34px; border-radius: 9px; }
    .tg svg { width: 16px; height: 16px; }
    .calendly-inline-widget { border-radius: 12px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-meta { text-align: left; }
}
