:root {
    --ink: #161615;
    --ink-soft: #242321;
    --paper: #f8f6f1;
    --paper-warm: #f1ede5;
    --white: #fff;
    --gold: #c69a3b;
    --gold-soft: #ead6a6;
    --muted: #6f6b63;
    --line: rgba(22, 22, 21, .12);
    --line-light: rgba(255, 255, 255, .14);
    --shadow: 0 30px 90px rgba(36, 28, 16, .14);
    --container: min(1240px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}
.container { width: var(--container); margin-inline: auto; }
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 500;
    padding: 10px 14px;
    background: var(--gold);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(248, 246, 241, .92);
    backdrop-filter: blur(18px);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(20, 18, 14, .04); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 132px; display: block; overflow: hidden; line-height: 0; text-decoration: none; }
.brand img { display: block; width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav > a:not(.button) { font-size: 13px; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button):hover { color: var(--gold); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; }
.menu-toggle span { display: block; width: 19px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .2s ease; }

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 17px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #302e29; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: #d6ae58; }
.button-outline { border-color: var(--line); background: rgba(255,255,255,.45); }
.button-outline:hover { border-color: var(--gold); }

.hero { overflow: hidden; padding: 138px 0 72px; background: radial-gradient(circle at 82% 28%, rgba(198,154,59,.11), transparent 31%), var(--paper); }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; align-items: center; }
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-label {
    color: #976d1e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow {
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 7px 11px;
    background: rgba(198,154,59,.1);
}
.eyebrow span { font-size: 13px; }
.hero h1 { max-width: 650px; margin: 24px 0 25px; font-size: clamp(52px, 5.1vw, 78px); line-height: .98; }
.hero h1 em { display: block; }
.hero-lead { max-width: 590px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}
.hero-benefits li { display: flex; align-items: center; gap: 8px; color: #48453f; font-size: 11px; font-weight: 700; }
.hero-benefits span { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid rgba(198,154,59,.45); border-radius: 50%; color: #976d1e; font-size: 8px; }

.product-stage { position: relative; min-height: 590px; }
.stage-glow { position: absolute; width: 580px; height: 580px; top: -20px; right: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(198,154,59,.18), transparent 68%); }
.laptop { position: absolute; width: 92%; top: 46px; right: -6%; z-index: 2; filter: drop-shadow(0 35px 35px rgba(24,19,12,.22)); }
.laptop-screen { aspect-ratio: 1.55; display: grid; grid-template-columns: 24% 76%; overflow: hidden; border: 10px solid #171716; border-radius: 18px 18px 8px 8px; background: #f7f6f2; transform: perspective(1200px) rotateY(-4deg); transform-origin: bottom; }
.laptop-base { width: 108%; height: 22px; margin-left: -8%; border-radius: 3px 3px 18px 18px; background: linear-gradient(#aaa9a6, #e5e3df 35%, #858583); transform: perspective(400px) rotateX(45deg); transform-origin: top; }
.app-sidebar { display: flex; flex-direction: column; gap: 16px; padding: 25px 13px; background: #efede8; }
.app-sidebar img { width: 78px; height: auto; margin-bottom: 10px; }
.app-sidebar span { border-radius: 5px; padding: 7px 8px; color: #77736c; font-size: 9px; }
.app-sidebar .is-active { background: var(--white); color: var(--ink); font-weight: 800; }
.app-content { min-width: 0; padding: 24px; }
.app-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.app-heading strong { font-size: 16px; }
.app-heading i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); font-size: 8px; font-style: normal; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric-grid div { min-width: 0; border: 1px solid #e0ddd5; border-radius: 7px; padding: 12px; background: var(--white); }
.metric-grid small, .metric-grid span { display: block; overflow: hidden; color: #868179; font-size: 7px; white-space: nowrap; }
.metric-grid b { display: block; margin: 8px 0 2px; font-size: 19px; }
.app-panels { display: grid; grid-template-columns: 1.5fr .7fr; gap: 9px; margin-top: 10px; }
.activity-panel, .delivery-panel { min-width: 0; border: 1px solid #e0ddd5; border-radius: 7px; padding: 14px; background: var(--white); }
.activity-panel > strong, .delivery-panel > strong { display: block; margin-bottom: 13px; font-size: 9px; }
.activity-panel p { display: flex; align-items: center; gap: 8px; margin: 9px 0; }
.activity-panel p > i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); }
.activity-panel p span, .activity-panel p b, .activity-panel p small { display: block; min-width: 0; }
.activity-panel p b { overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.activity-panel p small { color: #8f8a81; font-size: 6px; }
.date-card { width: 48px; height: 52px; display: grid; place-items: center; margin: 17px auto 10px; border-radius: 6px; background: var(--gold-soft); }
.date-card b, .date-card small { display: block; line-height: 1; text-align: center; }
.date-card b { font-size: 18px; }
.date-card small { margin-top: -8px; font-size: 6px; }
.delivery-panel p { margin: 0; color: #77736c; font-size: 7px; text-align: center; }
.phone { position: absolute; width: 190px; left: -5px; bottom: 8px; z-index: 4; border: 8px solid #111; border-radius: 30px; background: #111; box-shadow: 0 28px 40px rgba(0,0,0,.28); transform: rotate(-1deg); }
.phone-notch { position: absolute; width: 70px; height: 16px; top: 0; left: 50%; z-index: 2; border-radius: 0 0 13px 13px; background: #111; transform: translateX(-50%); }
.phone-screen { min-height: 375px; overflow: hidden; border-radius: 21px; padding: 18px 13px 14px; background: #fbfaf7; text-align: center; }
.phone-brand { display: block; margin-bottom: 13px; font-size: 10px; font-weight: 800; }
.phone-brand span { color: var(--gold); }
.phone-screen > img { width: 82px; height: 82px; display: block; margin: 0 auto 10px; border-radius: 50%; object-fit: cover; }
.phone-screen > strong, .phone-screen > small { display: block; }
.phone-screen > strong { font-size: 10px; }
.phone-screen > small { margin: 3px 0 12px; color: #77736c; font-size: 7px; }
.phone-screen button { width: 100%; border: 0; border-radius: 5px; padding: 10px; background: var(--ink); color: var(--white); font-size: 7px; }
.phone-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 15px; }
.phone-stats span { border-top: 1px solid var(--line); padding-top: 10px; color: #77736c; font-size: 6px; }
.phone-stats b { display: block; color: var(--ink); font-size: 13px; }

.promise-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.6); }
.promise-items { min-height: 94px; display: flex; align-items: center; justify-content: center; gap: 35px; color: #817d75; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.promise-items i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.demo-preview { padding: 110px 0; background: var(--ink); color: var(--white); }
.demo-preview-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 52px;
}
.demo-preview-heading h2 {
    max-width: 770px;
    margin: 13px 0 0;
    font-size: clamp(42px, 4.8vw, 64px);
    line-height: 1.02;
}
.demo-preview-heading > div:last-child > p { margin-bottom: 15px; color: #b8b3aa; }
.demo-preview-heading > div:last-child > span {
    display: block;
    border-left: 2px solid var(--gold);
    padding-left: 12px;
    color: var(--gold-soft);
    font-size: 10px;
    font-weight: 800;
}
.demo-profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.demo-profile-grid article {
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: 12px;
    background: #1e1e1c;
    transition: transform .22s ease, border-color .22s ease;
}
.demo-profile-grid article:hover { border-color: rgba(198,154,59,.65); transform: translateY(-5px); }
.demo-profile-grid article > a:first-child { position: relative; height: 280px; display: block; overflow: hidden; }
.demo-profile-grid article > a:first-child::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(18,18,16,.35), transparent 55%);
}
.demo-profile-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .4s ease; }
.demo-profile-grid article:hover img { transform: scale(1.025); }
.demo-profile-grid article > a:first-child > span {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    border-radius: 30px;
    padding: 7px 10px;
    background: rgba(255,255,255,.9);
    color: var(--ink);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.demo-profile-grid article > div { padding: 25px; }
.demo-profile-grid small { color: var(--gold); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.demo-profile-grid h3 { margin: 13px 0 9px; font-size: 27px; }
.demo-profile-grid p { min-height: 62px; color: #aaa69e; font-size: 12px; }
.demo-profile-grid article > div > a {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    padding-top: 15px;
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}
.demo-profile-grid article > div > a span { color: var(--gold); font-size: 16px; }
.demo-preview-action { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 35px; }
.demo-preview-action small { color: #8e8a82; font-size: 10px; }

.profile-builder { overflow: hidden; padding: 120px 0; background: var(--white); }
.builder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.builder-copy h2 {
    max-width: 670px;
    margin: 13px 0 22px;
    font-size: clamp(44px, 4.8vw, 65px);
    line-height: 1;
}
.builder-lead { max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.builder-url {
    width: max-content;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin: 28px 0 38px;
    border: 1px solid rgba(198,154,59,.48);
    border-radius: 10px;
    padding: 14px 18px;
    background: #fbf7ed;
    box-shadow: 0 12px 34px rgba(42,33,19,.08);
    font-size: clamp(19px, 2vw, 28px);
    letter-spacing: -.035em;
}
.builder-url span { color: var(--gold-dark, #8a631a); font-weight: 800; }
.builder-url strong { color: var(--ink); }
.builder-copy > h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.03em; }
.builder-copy > h3 + p { color: var(--muted); font-size: 14px; }
.builder-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.builder-features li {
    min-height: 145px;
    display: flex;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 17px;
    background: var(--paper);
}
.builder-features li > span {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-soft);
    color: #785511;
    font-size: 8px;
    font-weight: 900;
}
.builder-features strong, .builder-features small { display: block; }
.builder-features strong { margin: 3px 0 7px; font-size: 13px; }
.builder-features small { color: var(--muted); font-size: 10px; line-height: 1.5; }
.builder-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.builder-text-link { color: #76530f; font-size: 11px; font-weight: 900; text-underline-offset: 4px; }
.builder-stage { position: relative; min-width: 0; }
.builder-browser {
    overflow: hidden;
    border: 9px solid #262521;
    border-radius: 17px;
    background: #262521;
    box-shadow: 0 35px 90px rgba(29,23,15,.22);
    transform: perspective(1300px) rotateY(-2deg);
    transform-origin: left center;
}
.builder-browser-bar {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    background: #262521;
    color: #c7c2b8;
    font-size: 9px;
}
.builder-browser-bar > i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 12px 0 #6d6a63, 24px 0 #6d6a63; }
.builder-browser-bar > span { overflow: hidden; margin-left: 28px; text-overflow: ellipsis; white-space: nowrap; }
.builder-browser-bar > span strong { color: var(--white); }
.builder-browser-bar > small { margin-left: auto; border-radius: 20px; padding: 4px 7px; background: rgba(198,154,59,.18); color: var(--gold-soft); font-size: 7px; font-weight: 900; }
.builder-workspace { min-height: 510px; display: grid; grid-template-columns: 155px 1fr; background: #ece9e2; }
.builder-workspace aside { display: flex; flex-direction: column; gap: 7px; border-right: 1px solid #d9d4ca; padding: 19px 12px; background: #e5e1d8; }
.builder-workspace aside > strong { margin: 0 8px 12px; font-size: 11px; }
.builder-workspace aside > span { display: flex; align-items: center; justify-content: space-between; border-radius: 5px; padding: 8px; color: #716d66; font-size: 8px; }
.builder-workspace aside > span.is-active { background: var(--white); color: var(--ink); font-weight: 900; }
.builder-workspace aside > span i { color: #8a631a; font-size: 7px; font-style: normal; }
.builder-workspace aside > button { margin-top: auto; border: 0; border-radius: 5px; padding: 10px 5px; background: var(--ink); color: var(--white); font-size: 7px; }
.builder-page { margin: 18px; overflow: hidden; border-radius: 9px; padding: 24px; background: #fbfaf7; box-shadow: 0 8px 25px rgba(35,29,20,.08); }
.builder-profile { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center; }
.builder-profile img { width: 92px; height: 92px; display: block; border-radius: 9px; object-fit: cover; }
.builder-profile small, .builder-profile strong, .builder-profile span { display: block; }
.builder-profile small, .builder-portfolio > small, .builder-about > small { color: #8a631a; font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.builder-profile strong { margin: 5px 0; font-size: 17px; letter-spacing: -.04em; }
.builder-profile span { color: #777269; font-size: 7px; }
.builder-about { margin-top: 24px; border-top: 1px solid #e2ded6; padding-top: 17px; }
.builder-about strong { display: block; margin: 6px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 15px; }
.builder-about span { width: 88%; height: 4px; display: block; margin-top: 5px; border-radius: 5px; background: #ddd8ce; }
.builder-about span:nth-of-type(2) { width: 73%; }
.builder-about span:nth-of-type(3) { width: 55%; }
.builder-portfolio { margin-top: 25px; }
.builder-portfolio > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 8px; }
.builder-portfolio img { width: 100%; height: 105px; display: block; border-radius: 5px; object-fit: cover; }
.builder-note {
    position: absolute;
    right: -18px;
    bottom: -22px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 30px;
    padding: 11px 15px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 15px 35px rgba(35,28,17,.14);
    color: #5c5850;
    font-size: 9px;
    font-weight: 900;
}
.builder-note span { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 6px; border-radius: 50%; background: var(--gold); color: var(--ink); }

.resources, .audiences, .journey, .vision { padding: 110px 0; }
.section-intro { max-width: 760px; margin-bottom: 55px; }
.section-intro.centered { margin-inline: auto; text-align: center; }
.section-intro h2 { margin: 12px 0 14px; font-size: clamp(39px, 4.2vw, 58px); line-height: 1.05; }
.section-intro > p:last-child { margin-bottom: 0; color: var(--muted); }
.resource-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.resource-grid article { min-height: 300px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 10px; padding: 18px; background: rgba(255,255,255,.52); transition: transform .22s ease, background .22s ease, box-shadow .22s ease; }
.resource-grid article:hover { background: var(--white); box-shadow: 0 18px 45px rgba(25,21,15,.08); transform: translateY(-5px); }
.resource-icon, .resource-letter { width: 47px; height: 47px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: var(--white); }
.resource-icon img { width: 45px; max-width: none; }
.resource-grid article:first-child .resource-icon { border-color: transparent; background: var(--ink); }
.resource-letter { color: #976d1e; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.resource-grid h3 { margin: 34px 0 12px; font-size: 18px; line-height: 1.15; }
.resource-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.audiences { background: var(--white); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.audience-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); transition: transform .22s ease, box-shadow .22s ease; }
.audience-grid article:hover { box-shadow: 0 22px 55px rgba(28,22,15,.11); transform: translateY(-5px); }
.audience-grid img { width: 100%; height: 230px; display: block; object-fit: cover; }
.audience-grid article > div { padding: 22px; }
.audience-grid small { color: #976d1e; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.audience-grid h3 { margin: 12px 0 8px; font-size: 21px; }
.audience-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.journey { background: var(--paper-warm); }
.journey-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 45px; margin: 0; padding: 20px 0 0; list-style: none; }
.journey-list::before { content: ""; position: absolute; height: 1px; top: 70px; left: 10%; right: 10%; background: var(--line); }
.journey-list li { position: relative; z-index: 2; text-align: center; }
.journey-list li > span { display: block; margin-bottom: 15px; color: #976d1e; font-size: 9px; font-weight: 900; }
.journey-list li > i { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 22px; border: 1px solid rgba(198,154,59,.55); border-radius: 50%; background: var(--paper-warm); font-size: 25px; font-style: normal; }
.journey-list li > i img { width: 29px; height: 29px; display: block; }
.journey-list h3 { margin-bottom: 10px; font-size: 22px; }
.journey-list p { max-width: 240px; margin: 0 auto; color: var(--muted); font-size: 13px; }

.vision-card { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border-radius: 16px; background: var(--ink); color: var(--white); }
.vision-copy { padding: 72px; }
.vision-copy h2 { margin: 17px 0 24px; font-size: clamp(38px, 4vw, 56px); line-height: 1.04; }
.vision-copy > p:last-of-type { color: #b6b1a8; }
.vision-copy ul { display: grid; gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; }
.vision-copy li { display: flex; align-items: center; gap: 10px; color: #ddd8cf; font-size: 13px; }
.vision-copy li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid rgba(198,154,59,.55); border-radius: 50%; color: var(--gold); font-size: 9px; }
.vision-image { position: relative; min-height: 520px; }
.vision-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.vision-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,22,21,.35), transparent 45%); }
.vision-image span { position: absolute; right: 24px; bottom: 22px; z-index: 2; border-radius: 50px; padding: 9px 13px; background: rgba(22,22,21,.82); font-size: 10px; }

.interest { padding: 0 0 100px; }
.interest-card { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; border: 1px solid var(--line); border-radius: 16px; padding: 72px; background: linear-gradient(125deg, var(--white), #eee8dd); box-shadow: var(--shadow); }
.interest h2 { max-width: 700px; margin: 14px 0 18px; font-size: clamp(40px, 4.5vw, 62px); line-height: 1; }
.interest-card p { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.interest-copy { position: sticky; top: 120px; }
.interest-copy ul { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.interest-copy li { position: relative; padding-left: 28px; color: var(--ink-soft); font-size: 14px; }
.interest-copy li::before { content: "✓"; position: absolute; left: 0; color: #7b591d; font-weight: 900; }
.interest-card .interest-contact { font-size: 13px; }
.interest-contact a { color: var(--ink); font-weight: 800; }
.interest-form { position: relative; display: grid; grid-template-columns: 1fr 150px; gap: 18px; border: 1px solid var(--line); border-radius: 12px; padding: 32px; background: rgba(255,255,255,.76); box-shadow: 0 20px 60px rgba(31,25,15,.08); }
.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > label { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.form-field label span { color: var(--muted); font-weight: 400; }
.form-field input:not([type="checkbox"]), .form-field select, .form-field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(22,22,21,.2);
    border-radius: 7px;
    padding: 12px 14px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 16px;
}
.form-field textarea { min-height: 116px; resize: vertical; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: rgba(22,22,21,.45); }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: #9e2f23; box-shadow: 0 0 0 2px rgba(158,47,35,.12); }
.form-field > small, .form-legal { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
.form-error { min-height: 18px; margin: 5px 0 0 !important; color: #86271e !important; font-size: 12px; font-weight: 700; }
.consent-field label { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--ink-soft); font-size: 12px; line-height: 1.5; cursor: pointer; }
.consent-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--gold); }
.consent-field a, .form-legal a { font-weight: 800; }
.form-status { min-height: 0; margin-bottom: 12px; border-radius: 7px; font-size: 13px; }
.form-status:not(:empty) { padding: 12px 14px; }
.form-status[data-state="loading"] { background: #f3ead2; color: #604514; }
.form-status[data-state="error"] { background: #f8e7e4; color: #76251d; }
.form-status[data-state="success"] { background: #e5f2e8; color: #245c31; }
.form-submit { width: 100%; cursor: pointer; }
.form-submit[disabled] { cursor: wait; opacity: .7; transform: none; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 65px 0 25px; background: #0f0f0e; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-brand { width: 210px; border-radius: 8px; background: var(--paper); }
.footer-grid > div:first-child p { color: #858179; font-size: 12px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid strong { margin-bottom: 8px; color: var(--gold); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { color: #a8a49b; font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--line-light); padding-top: 22px; color: #747169; font-size: 10px; }
.footer-bottom p { margin: 0; }

.legal-page { background: #f5f1e9; }
.legal-header { border-bottom: 1px solid var(--line); background: rgba(248,246,241,.96); }
.legal-header .container { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.legal-header .container > a:last-child { font-size: 13px; font-weight: 800; }
.legal-main { max-width: 860px; padding-top: 88px; padding-bottom: 100px; }
.legal-main > h1 { max-width: 760px; margin: 14px 0 20px; font-size: clamp(48px, 7vw, 82px); line-height: .98; }
.legal-intro { max-width: 720px; color: var(--muted); font-size: 20px; }
.legal-version { margin: 28px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.legal-notice { margin: 36px 0 54px; border-left: 4px solid var(--gold); padding: 18px 22px; background: #eee5d2; color: #59451c; font-size: 13px; }
.legal-main section { border-top: 1px solid var(--line); padding: 38px 0 28px; }
.legal-main section h2 { margin-bottom: 18px; font-size: clamp(27px, 3.5vw, 38px); }
.legal-main section p { color: #4f4b44; }
.legal-links { display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line); padding-top: 38px; }
.legal-links a { min-height: 44px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 6px; padding: 0 14px; background: var(--white); font-size: 12px; font-weight: 800; text-decoration: none; }
.legal-footer { padding: 26px 0; background: var(--ink); color: var(--white); }
.legal-footer .container { display: flex; justify-content: space-between; gap: 20px; color: #b6b1a7; font-size: 12px; }
.legal-footer p { margin: 0; }
.not-found-page { min-height: 100vh; display: grid; place-items: center; background: radial-gradient(circle at 80% 15%, rgba(198,154,59,.14), transparent 34%), var(--paper); }
.not-found { padding-block: 70px; }
.not-found .brand { margin-bottom: 70px; }
.not-found h1 { max-width: 800px; margin: 14px 0 24px; font-size: clamp(54px, 8vw, 100px); line-height: .92; }
.not-found > p:not(.section-label) { max-width: 620px; color: var(--muted); font-size: 18px; }

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-benefits { grid-template-columns: 1fr; }
    .product-stage { min-height: 520px; }
    .phone { width: 165px; }
    .phone-screen { min-height: 325px; }
    .resource-grid { grid-template-columns: repeat(3, 1fr); }
    .resource-grid article { min-height: 260px; }
    .vision-copy { padding: 52px; }
    .builder-grid { gap: 40px; }
    .builder-features { grid-template-columns: 1fr; }
    .builder-features li { min-height: 112px; }
    .builder-workspace { grid-template-columns: 125px 1fr; }
}

@media (max-width: 820px) {
    :root { --container: min(100% - 36px, 680px); }
    .menu-toggle { position: relative; z-index: 102; display: block; }
    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        align-items: stretch;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding: 80px 34px;
        background: var(--paper);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }
    .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .main-nav > a:not(.button) { font-size: 28px; }
    .main-nav .button { margin-top: 12px; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
    .hero { padding-top: 120px; }
    .hero-grid { grid-template-columns: 1fr; gap: 25px; }
    .hero-copy { text-align: center; }
    .eyebrow { margin-inline: auto; }
    .hero h1, .hero-lead { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-benefits { grid-template-columns: repeat(3, 1fr); text-align: left; }
    .product-stage { width: min(100%, 650px); min-height: 540px; margin-inline: auto; }
    .promise-items { flex-wrap: wrap; gap: 15px 24px; padding-block: 24px; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-list { grid-template-columns: repeat(2, 1fr); row-gap: 55px; }
    .journey-list::before { display: none; }
    .vision-card, .interest-card, .demo-preview-heading, .builder-grid { grid-template-columns: 1fr; }
    .demo-preview-heading { gap: 24px; }
    .demo-profile-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-profile-grid article:last-child { grid-column: 1 / -1; }
    .builder-stage { width: min(100%, 680px); margin: 30px auto 0; }
    .vision-image { min-height: 420px; }
    .interest-card { gap: 35px; }
    .interest-copy { position: static; }
}

@media (max-width: 560px) {
    :root { --container: calc(100% - 28px); }
    .header-inner { min-height: 70px; }
    .brand { width: 112px; }
    .hero { padding: 105px 0 48px; }
    .hero h1 { font-size: clamp(46px, 13.2vw, 62px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-benefits { grid-template-columns: 1fr; width: max-content; margin-inline: auto; }
    .product-stage { min-height: 390px; }
    .laptop { width: 106%; top: 35px; right: -11%; }
    .laptop-screen { border-width: 6px; }
    .app-sidebar { gap: 7px; padding: 14px 7px; }
    .app-sidebar img { width: 48px; }
    .app-sidebar span { padding: 4px; font-size: 5px; }
    .app-content { padding: 12px; }
    .app-heading { margin-bottom: 10px; }
    .app-heading strong { font-size: 10px; }
    .app-heading i { width: 18px; height: 18px; font-size: 5px; }
    .metric-grid div { padding: 6px; }
    .metric-grid small, .metric-grid span { font-size: 4px; }
    .metric-grid b { margin: 4px 0 0; font-size: 11px; }
    .app-panels { gap: 5px; margin-top: 5px; }
    .activity-panel, .delivery-panel { padding: 7px; }
    .activity-panel > strong, .delivery-panel > strong { margin-bottom: 5px; font-size: 5px; }
    .activity-panel p { gap: 4px; margin: 4px 0; }
    .activity-panel p b { font-size: 4px; }
    .activity-panel p small, .delivery-panel p { font-size: 3.5px; }
    .date-card { width: 28px; height: 30px; margin-block: 7px 4px; }
    .date-card b { font-size: 10px; }
    .date-card small { margin-top: -4px; font-size: 4px; }
    .phone { width: 118px; left: 0; border-width: 5px; border-radius: 21px; }
    .phone-notch { width: 45px; height: 10px; }
    .phone-screen { min-height: 235px; border-radius: 15px; padding: 13px 8px 8px; }
    .phone-screen > img { width: 53px; height: 53px; }
    .phone-brand, .phone-screen > strong { font-size: 6px; }
    .phone-screen > small, .phone-screen button { font-size: 4.5px; }
    .phone-stats b { font-size: 8px; }
    .phone-stats span { font-size: 4px; }
    .promise-items { align-items: flex-start; flex-direction: column; padding: 28px; }
    .promise-items i { display: none; }
    .resources, .audiences, .journey, .vision, .demo-preview, .profile-builder { padding: 82px 0; }
    .section-intro { margin-bottom: 38px; }
    .section-intro h2 { font-size: 39px; }
    .resource-grid { grid-template-columns: 1fr 1fr; }
    .resource-grid article { min-height: 260px; padding: 16px; }
    .resource-grid h3 { margin-top: 26px; }
    .resource-grid h3 { font-size: 17px; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-grid img { height: 250px; }
    .demo-profile-grid { grid-template-columns: 1fr; }
    .demo-profile-grid article:last-child { grid-column: auto; }
    .demo-profile-grid article > a:first-child { height: 250px; }
    .demo-preview-action { align-items: stretch; flex-direction: column; text-align: center; }
    .builder-copy h2 { font-size: 42px; }
    .builder-url { padding: 12px 14px; font-size: 19px; }
    .builder-features { grid-template-columns: 1fr; }
    .builder-actions { align-items: stretch; flex-direction: column; text-align: center; }
    .builder-workspace { min-height: 430px; grid-template-columns: 92px 1fr; }
    .builder-workspace aside { gap: 4px; padding: 12px 7px; }
    .builder-workspace aside > strong { margin-inline: 5px; font-size: 8px; }
    .builder-workspace aside > span { padding: 6px 5px; font-size: 5.5px; }
    .builder-workspace aside > button { font-size: 5px; }
    .builder-page { margin: 10px; padding: 14px; }
    .builder-profile { grid-template-columns: 60px 1fr; gap: 9px; }
    .builder-profile img { width: 60px; height: 60px; }
    .builder-profile strong { font-size: 11px; }
    .builder-profile span { font-size: 5px; }
    .builder-portfolio img { height: 72px; }
    .builder-note { right: -4px; bottom: -20px; }
    .journey-list { grid-template-columns: 1fr; }
    .journey-list li { border-bottom: 1px solid var(--line); padding-bottom: 30px; }
    .vision-copy { padding: 38px 25px; }
    .vision-copy h2 { font-size: 39px; }
    .vision-image { min-height: 320px; }
    .interest { padding-bottom: 60px; }
    .interest-card { padding: 42px 24px; }
    .interest h2 { font-size: 42px; }
    .interest-form { grid-template-columns: 1fr; padding: 24px 18px; }
    .form-field-wide { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
    .legal-main { padding-top: 60px; }
    .legal-footer .container { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
