@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap");

:root {
    --bg: #fbf8f4;
    --surface: #ffffff;
    --surface-soft: #f5efe8;
    --surface-tint: #fff2ea;
    --surface-deep: #171615;
    --text: #1f1b17;
    --muted: #62574d;
    --line: #e6dbd0;
    --line-strong: #d7c6b7;
    --accent: #ef7425;
    --accent-deep: #c65313;
    --accent-soft: #fff1e7;
    --ink: #120f0d;
    --shadow-lg: 0 28px 70px -34px rgba(28, 19, 10, 0.28);
    --shadow-md: 0 20px 46px -34px rgba(38, 29, 20, 0.25);
    --shadow-sm: 0 12px 24px -20px rgba(38, 29, 20, 0.16);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --wrap: min(1180px, calc(100vw - 32px));
    --font-display: "Outfit", "Avenir Next", sans-serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(239, 116, 37, 0.08), transparent 32%),
        linear-gradient(180deg, #fffaf6 0%, #fbf8f4 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
}

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

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

p,
ul,
ol,
table {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.8rem, 5.6vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    font-weight: 700;
}

.wrap {
    width: var(--wrap);
    margin: 0 auto;
}

.page-shell {
    padding-bottom: 96px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(230, 219, 208, 0.7);
    backdrop-filter: blur(20px);
    background: rgba(251, 248, 244, 0.88);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 94px;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand__logo {
    width: 62px;
    height: auto;
}

.brand__lockup {
    display: grid;
    gap: 2px;
}

.brand__text {
    font-family: var(--font-display);
    font-size: 1.24rem;
    font-weight: 700;
}

.brand__eyebrow {
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(215, 198, 183, 0.75);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
}

.site-nav__link,
.site-menu__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 9px 16px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-menu__trigger:hover,
.site-menu__trigger:focus-visible,
.site-menu:hover .site-menu__trigger,
.site-menu:focus-within .site-menu__trigger {
    color: var(--accent-deep);
    background: rgba(239, 116, 37, 0.09);
    transform: translateY(-1px);
}

.site-menu {
    position: relative;
    padding-bottom: 22px;
    margin-bottom: -22px;
}

.site-menu__trigger svg {
    transition: transform 180ms ease;
}

.site-menu:hover .site-menu__trigger svg,
.site-menu:focus-within .site-menu__trigger svg {
    transform: rotate(180deg);
}

.site-menu__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 40;
    width: min(920px, calc(100vw - 48px));
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    pointer-events: none;
}

.site-menu__panel--compact {
    width: min(640px, calc(100vw - 48px));
}

.site-menu__panel--right {
    left: auto;
    right: 0;
}

.site-menu:hover .site-menu__panel,
.site-menu:focus-within .site-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.site-menu__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-menu__grid--two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-menu__block {
    display: grid;
    gap: 8px;
}

.site-menu__label {
    color: var(--accent-deep);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-menu__link {
    display: block;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--ink);
    font-size: 0.93rem;
    font-weight: 700;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-menu__link:hover,
.site-menu__link:focus-visible {
    border-color: var(--line);
    background: var(--surface-soft);
    color: var(--accent-deep);
}

.site-menu__link--feature {
    background: linear-gradient(180deg, #fff9f5 0%, #fff3eb 100%);
    border-color: rgba(239, 116, 37, 0.18);
}

.site-menu__meta {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.81rem;
    font-weight: 600;
    line-height: 1.5;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--solid {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow: 0 16px 30px -20px rgba(198, 83, 19, 0.56);
}

.button--ghost {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.lede {
    max-width: 64ch;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-pill,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(215, 198, 183, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero,
.page-hero {
    padding: 110px 0 76px;
}

.hero-layout,
.split-layout,
.page-hero__grid {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-visual,
.media-frame,
.panel,
.offer-card,
.stat-card,
.step-card,
.selector-card,
.faq-card,
.table-card,
.cta-band,
.notice-card {
    border: 1px solid rgba(230, 219, 208, 0.95);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.hero-visual,
.panel,
.table-card,
.cta-band,
.notice-card {
    padding: 30px;
}

.hero-visual {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 243, 235, 0.94) 100%);
}

.hero-visual__label,
.panel__label,
.offer-card__eyebrow,
.stat-card__label,
.step-card__number,
.selector-card__eyebrow,
.faq-card__eyebrow,
.table-card__label {
    margin-bottom: 14px;
    color: var(--accent-deep);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ecosystem-visual {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ecosystem-card {
    min-height: 150px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 241, 0.95) 100%);
    border: 1px solid rgba(215, 198, 183, 0.8);
    display: grid;
    align-content: space-between;
    gap: 14px;
}

.ecosystem-card--tall {
    grid-row: span 2;
}

.ecosystem-card__screen {
    min-height: 72px;
    border-radius: 16px;
    border: 1px solid rgba(215, 198, 183, 0.8);
    background:
        linear-gradient(180deg, rgba(239, 116, 37, 0.12), rgba(239, 116, 37, 0.02)),
        #fff;
    position: relative;
    overflow: hidden;
}

.ecosystem-card__screen::before,
.ecosystem-card__screen::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    border-radius: 999px;
    background: rgba(18, 15, 13, 0.08);
}

.ecosystem-card__screen::before {
    top: 16px;
    height: 10px;
}

.ecosystem-card__screen::after {
    top: 34px;
    height: 8px;
    right: 52px;
}

.ecosystem-card__title {
    font-size: 0.95rem;
    font-weight: 800;
}

.ecosystem-card__meta {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.fit-strip {
    padding: 0 0 28px;
}

.fit-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(245, 239, 232, 0.8);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.fit-strip__title {
    color: var(--ink);
    font-weight: 800;
}

.section {
    padding: 84px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 243, 235, 0.56) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-heading {
    max-width: 72ch;
    margin-bottom: 34px;
}

.section-heading p + p,
.stack > * + *,
.panel > * + *,
.cta-band > * + * {
    margin-top: 14px;
}

.stack {
    display: grid;
    gap: 18px;
}

.cards {
    display: grid;
    gap: 20px;
}

.cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-card,
.stat-card,
.step-card,
.selector-card,
.faq-card {
    overflow: hidden;
}

.offer-card,
.stat-card,
.step-card,
.selector-card,
.faq-card,
.notice-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offer-card:hover,
.stat-card:hover,
.step-card:hover,
.selector-card:hover,
.faq-card:hover,
.notice-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
}

.offer-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.offer-card__body,
.stat-card,
.step-card,
.selector-card,
.faq-card,
.notice-card {
    padding: 24px;
}

.offer-card__body > * + *,
.stat-card > * + *,
.step-card > * + *,
.selector-card > * + *,
.faq-card > * + *,
.notice-card > * + * {
    margin-top: 12px;
}

.offer-card__meta,
.table-card td,
.footer-grid p,
.footer-grid li,
.caption {
    color: var(--muted);
}

.offer-card__meta {
    font-size: 0.98rem;
}

.best-for {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.offer-card__cta,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 800;
}

.offer-card__cta::after,
.text-link::after {
    content: "→";
    transition: transform 180ms ease;
}

.offer-card:hover .offer-card__cta::after,
.text-link:hover::after {
    transform: translateX(4px);
}

.bullet-list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.split-layout--narrow {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
}

.media-frame {
    overflow: hidden;
}

.media-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.media-frame__caption {
    padding: 18px 22px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.table-card table {
    width: 100%;
    border-collapse: collapse;
}

.table-card th,
.table-card td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.table-card th {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.table-card tr:last-child td {
    border-bottom: none;
}

.table-card td:last-child a,
.table-card td:nth-child(2) a {
    color: var(--accent-deep);
    font-weight: 800;
}

.process-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-soft);
    margin-bottom: 16px;
    letter-spacing: normal;
}

.selector-grid,
.faq-grid,
.stats-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-line {
    padding: 18px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.cta-band {
    background: linear-gradient(135deg, rgba(255, 248, 242, 0.98) 0%, rgba(255, 239, 229, 0.98) 100%);
}

.site-footer {
    padding: 56px 0 78px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.25fr repeat(5, minmax(0, 1fr));
}

.footer-brand {
    display: grid;
    gap: 16px;
}

.footer-brand__logo {
    width: 120px;
}

.footer-brand__copy {
    max-width: 30ch;
}

.footer-grid h3 {
    margin-bottom: 12px;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li + li {
    margin-top: 10px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--accent-deep);
}

.footer-email {
    color: var(--accent-deep);
    font-weight: 800;
}

.legal-stack {
    display: grid;
    gap: 20px;
}

@media (max-width: 1180px) {
    .site-header__inner {
        display: grid;
        padding: 16px 0;
    }

    .site-header__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        justify-content: center;
        border-radius: 28px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .hero-layout,
    .split-layout,
    .page-hero__grid,
    .cards--four,
    .cards--three,
    .process-grid,
    .stats-grid--four,
    .footer-grid,
    .site-menu__grid,
    .site-menu__grid--two-up {
        grid-template-columns: 1fr;
    }

    .cards--two,
    .selector-grid,
    .faq-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: grid;
    }

    .site-menu,
    .site-nav__link {
        width: 100%;
    }

    .site-nav__link,
    .site-menu__trigger {
        justify-content: flex-start;
        text-align: left;
        width: 100%;
    }

    .site-menu__panel,
    .site-menu__panel--compact,
    .site-menu__panel--right {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .ecosystem-visual {
        grid-template-columns: 1fr;
    }

    .ecosystem-card--tall {
        grid-row: auto;
    }
}

@media (max-width: 760px) {
    .hero,
    .page-hero {
        padding-top: 72px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .button,
    .site-header__cta {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .fit-strip__inner {
        justify-content: flex-start;
    }
}
