@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --navy: #0b1f2a;
  --night: #061219;
  --paper: #fff8ea;
  --paper-2: #f7eddc;
  --white: #fffdf7;
  --orange: #c83d18;
  --orange-dark: #bf3714;
  --teal: #1cbfae;
  --teal-dark: #087d73;
  --gold: #f4b83f;
  --ink: #12262f;
  --muted: #5d6c70;
  --line: rgba(11, 31, 42, .14);
  --shadow: 0 24px 70px rgba(6, 18, 25, .16);
  --radius: 24px;
  --display: "Bricolage Grotesque", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--night); background: var(--gold); }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 14px; color: white; background: var(--night); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-night { color: var(--paper); background: var(--night); }
.section-white { background: var(--white); }
.section-orange { color: var(--night); background: var(--orange); }
.section-line { border-top: 1px solid var(--line); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { width: 22px; height: 3px; content: ""; background: currentColor; border-radius: 3px; }
.section-night .eyebrow { color: var(--gold); }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); line-height: .98; letter-spacing: -.045em; }
h1 { font-size: clamp(3.35rem, 7.7vw, 7.2rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.08; }
h4 { font-size: 1.08rem; line-height: 1.15; letter-spacing: -.025em; }
p { margin: 0 0 1em; }
.lead { max-width: 730px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.58; }
.section-night .lead { color: #b9c7cb; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.section-heading > div { max-width: 750px; }
.section-heading p { max-width: 440px; margin: 0; color: var(--muted); }
.section-night .section-heading p { color: #aabcc1; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(11, 31, 42, .09); background: rgba(255, 248, 234, .94); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 260px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a, .nav-group > button { padding: 10px 0; color: #31434a; background: none; border: 0; font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; }
.site-nav > a:hover, .site-nav > a:focus-visible, .nav-group > button:hover { color: var(--orange-dark); }
.nav-group { position: relative; }
.nav-group > button { display: flex; align-items: center; gap: 5px; }
.nav-group > button::after { width: 6px; height: 6px; content: ""; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-popover { position: absolute; top: calc(100% + 8px); left: -18px; width: 290px; padding: 10px; visibility: hidden; opacity: 0; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); transform: translateY(-6px); transition: .18s ease; }
.nav-group:hover .nav-popover, .nav-group:focus-within .nav-popover { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-popover a { display: grid; gap: 1px; padding: 10px 12px; border-radius: 10px; text-decoration: none; }
.nav-popover a:hover { background: var(--paper-2); }
.nav-popover strong { font-size: 13px; }
.nav-popover span { color: var(--muted); font-size: 11px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; width: 44px; height: 44px; place-items: center; padding: 0; color: var(--paper); background: var(--navy); border: 0; border-radius: 12px; cursor: pointer; }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { width: 20px; height: 2px; content: ""; background: currentColor; border-radius: 2px; transition: .2s; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 19px; border: 1px solid transparent; border-radius: 13px; font-size: 14px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--orange); box-shadow: 0 10px 24px rgba(255, 101, 52, .24); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { color: var(--paper); background: var(--navy); }
.btn-dark:hover { background: var(--night); box-shadow: 0 10px 24px rgba(6, 18, 25, .18); }
.btn-light { color: var(--navy); background: var(--paper); }
.btn-outline { color: var(--navy); border-color: rgba(11,31,42,.25); background: transparent; }
.btn-link { min-height: 0; padding: 0; color: var(--orange-dark); border: 0; border-radius: 0; }
.btn-link::after { content: "→"; transition: transform .18s; }
.btn-link:hover::after { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 72px 0 48px; }
.hero::after { position: absolute; right: -100px; bottom: -300px; width: 520px; height: 520px; content: ""; border: 80px solid rgba(28, 191, 174, .09); border-radius: 50%; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 58px; align-items: center; }
.hero-copy h1 em { color: var(--orange); font-style: normal; }
.hero-copy .lead { margin: 26px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 26px; color: #52656b; font-size: 12px; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof i { width: 8px; height: 8px; display: block; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 4px rgba(28,191,174,.13); }
.hero-visual { position: relative; min-height: 610px; }
.hero-photo { position: absolute; inset: 0 0 30px 40px; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.hero-photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(110deg, rgba(6,18,25,.5), transparent 45%); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.live-card { position: absolute; right: -20px; bottom: 0; z-index: 2; width: 330px; padding: 20px; color: var(--paper); background: var(--navy); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; box-shadow: var(--shadow); }
.live-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.live-card-head div { display: grid; gap: 3px; }
.live-card-head strong { font-family: var(--display); font-size: 16px; }
.live-card-head small { color: #9fb1b6; font-size: 10px; }
.live-dot { display: inline-flex; align-items: center; gap: 6px; color: #8ce7db; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.live-dot::before { width: 7px; height: 7px; content: ""; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
.live-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.live-metrics div { padding: 10px; background: rgba(255,255,255,.07); border-radius: 11px; }
.live-metrics span { display: block; color: #98acb2; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-metrics strong { font-family: var(--display); font-size: 19px; }
.live-list { display: grid; gap: 8px; margin-top: 14px; }
.live-list div { display: flex; align-items: center; gap: 9px; color: #cfdbde; font-size: 10px; }
.live-list i { width: 18px; height: 18px; display: grid; place-items: center; color: var(--night); background: var(--teal); border-radius: 50%; font-style: normal; font-weight: 900; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.35); }
.trust-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); align-items: center; }
.trust-grid > div { min-height: 96px; display: grid; align-content: center; padding: 16px 28px; border-left: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; border-left: 0; }
.trust-grid span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.trust-grid strong { margin-top: 2px; font-family: var(--display); font-size: 16px; line-height: 1.12; }

.feature-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.feature-card { min-height: 280px; display: flex; flex-direction: column; padding: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(6,18,25,.09); }
.feature-card:nth-child(1), .feature-card:nth-child(4) { grid-column: span 7; }
.feature-card:nth-child(2), .feature-card:nth-child(3) { grid-column: span 5; }
.feature-card:nth-child(5), .feature-card:nth-child(6) { grid-column: span 6; }
.feature-card.dark { color: var(--paper); background: var(--navy); }
.feature-card.orange { color: var(--night); background: var(--orange); border-color: transparent; }
.feature-number { margin-bottom: auto; color: var(--orange-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.feature-card.dark .feature-number { color: var(--gold); }
.feature-card.orange .feature-number { color: #7d250c; }
.feature-card h3 { max-width: 480px; margin: 44px 0 12px; }
.feature-card p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; }
.feature-card.dark p { color: #b4c2c6; }
.feature-card.orange p { color: #54200e; }
.mini-ui { display: grid; gap: 8px; margin-top: 22px; }
.mini-ui-row { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 10px; padding: 9px 11px; background: rgba(11,31,42,.06); border-radius: 10px; font-size: 11px; }
.dark .mini-ui-row { background: rgba(255,255,255,.08); }
.mini-ui-row i { width: 26px; height: 26px; display: grid; place-items: center; color: var(--teal-dark); background: rgba(28,191,174,.16); border-radius: 8px; font-style: normal; font-weight: 900; }
.mini-ui-row b { color: var(--muted); font-size: 9px; }
.dark .mini-ui-row b { color: #aabcc1; }

.workflow { display: grid; grid-template-columns: 360px 1fr; gap: 70px; align-items: start; }
.workflow-copy { position: sticky; top: 120px; }
.workflow-copy p { margin: 22px 0; color: #aabcc1; }
.workflow-steps { display: grid; }
.workflow-step { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.12); }
.workflow-step:first-child { border-top: 0; }
.workflow-step > span { color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.workflow-step p { margin: 10px 0 0; color: #aabcc1; }
.workflow-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.workflow-tags span { padding: 5px 9px; color: #c6d4d7; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 9px; font-weight: 700; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-card { min-height: 300px; display: flex; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; }
.audience-card .icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: auto; color: var(--paper); background: var(--navy); border-radius: 14px; font-family: var(--display); font-size: 18px; font-weight: 800; }
.audience-card:nth-child(2) .icon { color: var(--night); background: var(--gold); }
.audience-card:nth-child(3) .icon { color: var(--night); background: var(--teal); }
.audience-card h3 { margin: 36px 0 12px; }
.audience-card p { color: var(--muted); font-size: 14px; }
.audience-card strong:last-child { margin-top: auto; color: var(--orange-dark); font-size: 12px; }

.quote-panel { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; color: var(--paper); background: var(--navy); border-radius: 32px; }
.quote-photo { min-height: 440px; }
.quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.quote-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.quote-copy blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.1rem); font-weight: 600; line-height: 1.04; letter-spacing: -.04em; }
.quote-copy p { margin: 24px 0 0; color: #adbdc1; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card { min-height: 310px; display: flex; flex-direction: column; padding: 26px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 20px; text-decoration: none; }
.resource-card:hover h3 { color: var(--orange-dark); }
.resource-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.resource-card h3 { margin: 70px 0 14px; transition: color .18s; }
.resource-card p { margin-bottom: 28px; color: var(--muted); font-size: 13px; }
.resource-card > strong { margin-top: auto; color: var(--orange-dark); font-size: 12px; }

.cta-band { position: relative; overflow: hidden; padding: 74px 0; color: var(--night); background: var(--gold); }
.cta-band::after { position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; content: ""; border: 55px solid rgba(11,31,42,.09); border-radius: 50%; }
.cta-grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-grid h2 { max-width: 760px; }
.cta-grid p { max-width: 590px; margin: 16px 0 0; color: #513b0a; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.breadcrumb { padding: 20px 0 0; color: var(--muted); font-size: 12px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 7px; content: "/"; color: #a7aaa8; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-dark); }

.page-hero { padding: 68px 0 82px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 760px) 1fr; align-items: end; gap: 60px; }
.page-hero h1 { font-size: clamp(3.2rem, 7vw, 6.4rem); }
.page-hero .lead { margin: 26px 0 0; }
.page-hero-aside { padding: 24px; color: var(--paper); background: var(--navy); border-radius: 20px; }
.page-hero-aside strong { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 18px; }
.page-hero-aside p { margin: 0; color: #b2c1c5; font-size: 13px; }
.page-hero-aside a { display: inline-block; margin-top: 14px; color: var(--gold); font-size: 12px; font-weight: 800; }

.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.prose-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.prose-card h3 { margin-bottom: 14px; }
.prose-card p { margin: 0; color: var(--muted); font-size: 14px; }
.check-list { display: grid; gap: 11px; padding: 0; margin: 20px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); font-size: 14px; }
.check-list li::before { position: absolute; top: 3px; left: 0; width: 18px; height: 18px; display: grid; place-items: center; content: "✓"; color: var(--night); background: var(--teal); border-radius: 50%; font-size: 10px; font-weight: 900; }

.comparison-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--white); }
.comparison-table th, .comparison-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table th { color: var(--paper); background: var(--navy); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.comparison-table td { font-size: 13px; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table td:first-child { font-weight: 800; }
.status-yes { color: var(--teal-dark); font-weight: 800; }
.status-partial { color: #9a6300; font-weight: 800; }

.faq-list { display: grid; gap: 10px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--orange-dark); font-family: var(--display); font-size: 23px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); font-size: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }

.guide-hero { padding: 54px 0 64px; }
.guide-hero-inner { max-width: 920px; }
.guide-hero h1 { font-size: clamp(3rem, 6.6vw, 6rem); }
.guide-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px; color: var(--muted); font-size: 12px; font-weight: 700; }
.guide-meta a { color: var(--orange-dark); text-underline-offset: 3px; }
.guide-shell { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 70px; align-items: start; }
.toc { position: sticky; top: 110px; padding: 20px; background: rgba(255,255,255,.5); border: 1px solid var(--line); border-radius: 16px; }
.toc strong { display: block; margin-bottom: 11px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.toc a { display: block; padding: 5px 0; color: var(--muted); font-size: 12px; text-decoration: none; }
.toc a:hover { color: var(--orange-dark); }
.article-body { font-size: 17px; line-height: 1.78; }
.article-body h2 { margin: 70px 0 20px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.02; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 38px 0 15px; font-size: 1.55rem; }
.article-body p { margin-bottom: 1.3em; }
.article-body a { color: var(--orange-dark); font-weight: 700; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 9px; }
.answer-block { margin: 28px 0; padding: 24px 26px; background: var(--white); border-left: 5px solid var(--teal); border-radius: 0 16px 16px 0; }
.answer-block strong { display: block; margin-bottom: 7px; font-family: var(--display); font-size: 1.2rem; }
.article-note { margin: 30px 0; padding: 22px; color: var(--paper); background: var(--navy); border-radius: 16px; }
.article-note p:last-child { margin-bottom: 0; }
.source-box { margin-top: 72px; padding-top: 34px; border-top: 1px solid var(--line); }
.source-box h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.source-box p { color: var(--muted); font-size: 14px; }
.source-box ul { margin-bottom: 0; }
.source-box li { font-size: 14px; }
.author-card { margin: 34px 0 0; padding: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.author-card > span { color: var(--orange-dark); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.author-card h3 { margin: 9px 0 12px; font-size: 1.65rem; }
.author-card p { color: var(--muted); font-size: 14px; }
.author-card a { font-size: 13px; }
.download-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 38px 0; padding: 24px; color: var(--night); background: var(--gold); border-radius: 18px; }
.download-card strong { display: block; font-family: var(--display); font-size: 1.3rem; }
.download-card p { margin: 3px 0 0; color: #60460a; font-size: 13px; }

.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: stretch; }
.pricing-card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.pricing-card.featured { color: var(--paper); background: var(--navy); border-color: var(--navy); }
.pricing-label { color: var(--orange-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.featured .pricing-label { color: var(--gold); }
.price { margin: 30px 0 12px; font-family: var(--display); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: .9; letter-spacing: -.06em; }
.price small { font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0; }
.pricing-card p { color: var(--muted); }
.featured p { color: #afbec2; }
.pricing-card .check-list { margin: 28px 0; }
.featured .check-list li { color: #d3dddf; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h1 { margin-bottom: 24px; font-size: clamp(3.1rem, 6vw, 5.5rem); }
.contact-copy .lead { font-size: 1.1rem; }
.contact-points { display: grid; gap: 12px; margin-top: 30px; }
.contact-points div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.contact-points span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--night); background: var(--gold); border-radius: 10px; font-weight: 900; }
.contact-points strong { display: block; font-size: 13px; }
.contact-points small { display: block; color: var(--muted); }
.contact-form { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 18px 45px rgba(6,18,25,.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--navy); font-size: 12px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #fffdf8; border: 1px solid #d9d5ca; border-radius: 11px; outline: none; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(28,191,174,.14); }
.contact-form .honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 6px; }
.form-footer small { max-width: 320px; color: var(--muted); font-size: 10px; }
.form-status { display: none; margin-bottom: 16px; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.form-status.success { display: block; color: #075d4f; background: #dff8f3; }
.form-status.error { display: block; color: #7a2510; background: #ffe5db; }
.contact-form.is-sent .form-fields { display: none; }

.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.about-grid h2 { max-width: 520px; }
.about-copy { font-size: 18px; line-height: 1.8; }
.about-copy p { color: var(--muted); }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.standards-grid article { min-height: 290px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.standards-grid article > span { color: var(--orange-dark); font-family: var(--display); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.standards-grid h3 { margin: 68px 0 14px; }
.standards-grid p { color: var(--muted); font-size: 14px; }
.standards-grid a { color: var(--orange-dark); font-weight: 700; }
.about-principles { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 34px; }
.about-principles p { margin: 0; color: #b7c5c8; font-size: 17px; }
.about-principles strong { display: block; margin-bottom: 6px; color: var(--gold); font-family: var(--display); font-size: 1.25rem; }

.site-footer { padding: 68px 0 28px; color: #c2d0d3; background: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer-brand img { width: 280px; height: auto; }
.footer-brand p { max-width: 360px; margin: 20px 0; color: #8fa3a9; font-size: 13px; }
.footer-brand a { color: var(--gold); font-weight: 700; text-decoration: none; }
.footer-column strong { display: block; margin-bottom: 14px; color: var(--paper); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { display: block; margin: 7px 0; color: #9eb0b5; font-size: 12px; text-decoration: none; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #758b91; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(28,191,174,.3); } 50% { opacity: .7; box-shadow: 0 0 0 6px rgba(28,191,174,0); } }

@media (max-width: 1080px) {
  .site-nav { gap: 17px; }
  .site-nav > a, .nav-group > button { font-size: 12px; }
  .hero-grid { gap: 34px; }
  .hero-visual { min-height: 540px; }
  .workflow { grid-template-columns: 300px 1fr; gap: 45px; }
  .page-hero-grid { grid-template-columns: 1fr 280px; }
}

@media (max-width: 880px) {
  .mobile-toggle { display: grid; }
  .nav-actions .btn-outline { display: none; }
  .site-nav { position: fixed; top: 78px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; align-content: start; padding: 24px; overflow-y: auto; background: var(--paper); }
  .site-nav.open { display: grid; }
  .site-nav > a, .nav-group > button { width: 100%; padding: 14px; font-size: 16px; text-align: left; border-bottom: 1px solid var(--line); }
  .nav-popover { position: static; width: 100%; padding: 4px 0 12px 18px; visibility: visible; opacity: 1; background: transparent; border: 0; box-shadow: none; transform: none; }
  .nav-popover a { padding: 8px 12px; }
  .hero-grid, .quote-panel, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-visual { min-height: 580px; }
  .hero-photo { left: 0; }
  .live-card { right: 12px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid > div:first-child { grid-column: 1 / -1; border-top: 0; }
  .feature-card:nth-child(n) { grid-column: span 6; }
  .workflow { grid-template-columns: 1fr; }
  .workflow-copy, .contact-copy { position: static; }
  .audience-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-photo { min-height: 360px; }
  .cta-grid { align-items: start; flex-direction: column; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-aside { max-width: 520px; }
  .guide-shell { grid-template-columns: 1fr; gap: 36px; }
  .toc { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .brand img { width: 215px; }
  .nav-actions .btn-primary { display: none; }
  .hero h1 { font-size: clamp(3rem, 17vw, 4.65rem); }
  .hero-visual { min-height: 500px; }
  .hero-photo { bottom: 65px; border-radius: 24px; }
  .live-card { right: 8px; bottom: 0; width: calc(100% - 24px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { padding: 14px; }
  .feature-bento { display: grid; grid-template-columns: 1fr; }
  .feature-card:nth-child(n) { grid-column: 1; min-height: 250px; padding: 24px; }
  .audience-grid, .resource-grid, .prose-grid, .pricing-grid { grid-template-columns: 1fr; }
  .quote-copy { padding: 34px 25px; }
  .quote-photo { min-height: 280px; }
  .workflow-step { grid-template-columns: 44px 1fr; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .page-hero { padding: 48px 0 62px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .guide-hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .article-body { font-size: 16px; }
  .download-card, .form-footer { align-items: stretch; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .standards-grid, .about-principles { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
