:root {
  --ink: #07111f;
  --ink-soft: #101d2e;
  --paper: #f4f0e8;
  --paper-bright: #fffdf8;
  --gold: #caa766;
  --gold-bright: #e3c587;
  --mint: #bdfcc9;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(7, 17, 31, 0.15);
  --muted-dark: #aeb9c7;
  --muted-light: #657083;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --radius: 18px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper-bright);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(calc(100% - 36px), var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 760; letter-spacing: -0.02em; }
.brand-logo {
  flex: 0 0 auto;
  border-radius: 9px;
  transition: transform .2s ease, filter .2s ease;
}
.brand-logo:hover,
.brand-logo:focus-visible { transform: translateY(-1px); filter: brightness(1.08); }
.brand-logo-image {
  display: block;
  width: 194px;
  height: auto;
  border-radius: 9px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .24), 0 0 22px rgba(199, 164, 90, .08);
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: #c6cfda; font-size: 14px; font-weight: 650; }
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--gold); border-radius: 999px; color: var(--gold-bright) !important; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 6px 0; background: #fff; }

.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  border-bottom: 1px solid var(--line-dark);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -340px;
  right: -160px;
  border: 1px solid rgba(202, 167, 102, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(202, 167, 102, 0.08), inset 0 0 120px rgba(202, 167, 102, 0.05);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr 0.75fr; align-items: end; gap: 80px; }
.eyebrow { margin: 0 0 20px; color: var(--gold-bright); font-size: 12px; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 7.2vw, 6.7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.hero h1 em { color: var(--gold-bright); font-weight: 400; }
.lede { max-width: 660px; margin: 0 0 34px; color: #c4ceda; font-size: clamp(1.05rem, 1.8vw, 1.28rem); line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1.2;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .buy-button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.button-primary { background: var(--gold-bright); color: var(--ink); }
.button-primary:hover { background: #f0d79d; }
.button-secondary { border-color: var(--line-dark); background: rgba(255,255,255,.04); color: #fff; }
.button-dark { background: var(--ink); color: #fff; }
.button[disabled] { opacity: .56; cursor: wait; transform: none; }

.ledger-card {
  min-height: 304px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  border: 1px solid rgba(202, 167, 102, .4);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,.3);
  transform: rotate(2deg);
}
.ledger-top { display: flex; justify-content: space-between; gap: 16px; color: var(--gold-bright); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ledger-title { margin: 48px 0 14px; font-family: var(--serif); font-size: 2.15rem; line-height: 1.05; }
.ledger-rule { height: 1px; margin: 28px 0 18px; background: var(--line-dark); }
.ledger-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ledger-meta small { display: block; color: var(--muted-dark); font-size: 12px; }
.ledger-meta strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }

.proof-strip { border-bottom: 1px solid var(--line-dark); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { min-height: 118px; padding: 25px 30px; border-right: 1px solid var(--line-dark); }
.proof-item:first-child { border-left: 1px solid var(--line-dark); }
.proof-item strong { display: block; margin-bottom: 2px; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.proof-item span { color: var(--muted-dark); font-size: 14px; }

.light-section { padding: 100px 0; background: var(--paper); color: var(--ink); }
.dark-section { padding: 100px 0; }
.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head .eyebrow { color: #8c6b30; }
h2 { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(2.35rem, 5vw, 4.7rem); font-weight: 500; line-height: 1.02; letter-spacing: -0.045em; }
.section-head p { margin: 0; color: var(--muted-light); font-size: 1.08rem; }
.dark-section .section-head p { color: var(--muted-dark); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { position: relative; min-height: 460px; padding: 28px; display: flex; flex-direction: column; background: var(--paper-bright); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.product-card::after { content: attr(data-index); position: absolute; right: 20px; top: 10px; color: rgba(7,17,31,.055); font-family: var(--serif); font-size: 8rem; line-height: 1; }
.region { position: relative; z-index: 1; color: #8c6b30; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.product-card h3 { position: relative; z-index: 1; margin: 50px 0 16px; font-family: var(--serif); font-size: 2.25rem; font-weight: 500; line-height: 1.05; letter-spacing: -.03em; }
.product-card p { position: relative; z-index: 1; margin: 0 0 24px; color: var(--muted-light); }
.product-list { position: relative; z-index: 1; margin: 0 0 30px; padding: 0; list-style: none; }
.product-list li { padding: 8px 0; border-top: 1px solid var(--line-light); font-size: 14px; }
.product-card footer { position: relative; z-index: 1; margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.price { font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.price small { display: block; margin-top: 8px; color: var(--muted-light); font-family: var(--sans); font-size: 12px; }
.buy-button { min-width: 122px; min-height: 47px; border: 0; border-radius: 999px; background: var(--ink); color: white; cursor: pointer; font-size: 14px; font-weight: 800; }
.buy-button:hover { background: #1a2a3f; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.feature-list { border-top: 1px solid var(--line-dark); }
.feature-row { display: grid; grid-template-columns: 60px 1fr; gap: 10px; padding: 26px 0; border-bottom: 1px solid var(--line-dark); }
.feature-number { color: var(--gold-bright); font-family: var(--serif); font-size: 1.35rem; }
.feature-row h3 { margin-bottom: 5px; font-size: 1rem; }
.feature-row p { margin: 0; color: var(--muted-dark); font-size: 14px; }

.consulting-band { padding: 84px 0; background: var(--gold-bright); color: var(--ink); }
.consulting-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; }
.consulting-band .eyebrow { color: #684d20; }
.consulting-band h2 { max-width: 760px; }
.consulting-band p { max-width: 680px; margin: 0; color: #4e402b; }
.consulting-price { margin-bottom: 22px; font-family: var(--serif); font-size: 3.2rem; line-height: 1; text-align: right; }
.consulting-price span { display: block; margin-top: 9px; font-family: var(--sans); font-size: 13px; }
.consulting-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.faq-list { max-width: 850px; border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { padding: 22px 36px 22px 0; cursor: pointer; list-style: none; font-weight: 750; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 19px; color: #8c6b30; font-family: var(--serif); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 730px; margin: -4px 0 24px; color: var(--muted-light); }

.page-hero { padding: 90px 0 66px; border-bottom: 1px solid var(--line-dark); }
.page-hero h1 { max-width: 980px; font-size: clamp(3rem, 6.4vw, 6rem); }
.page-hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; }
.page-price { padding: 24px; border: 1px solid rgba(202,167,102,.45); border-radius: var(--radius); }
.page-price strong { display: block; margin-bottom: 8px; color: var(--gold-bright); font-family: var(--serif); font-size: 3.6rem; font-weight: 500; line-height: 1; }
.page-price strong s { margin-right: 4px; color: #728092; font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.discount-badge { display: inline-flex; margin-bottom: 14px; padding: 6px 10px; border-radius: 999px; background: rgba(227,197,135,.13); color: var(--gold-bright); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.page-price p { margin: 0 0 20px; color: var(--muted-dark); font-size: 14px; }
.page-price .button { width: 100%; }
.booking-promise { display: block; margin-top: 13px; color: var(--muted-dark); font-size: 11px; line-height: 1.45; text-align: center; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.content-grid h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 30px; border-bottom: 1px solid var(--line-light); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8c6b30; font-weight: 900; }
.note { padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(202,167,102,.1); color: var(--muted-light); }

.form-shell { max-width: 900px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label, .field-label { font-size: 14px; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--paper-bright);
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.check-field { display: flex; gap: 10px; align-items: flex-start; color: var(--muted-light); font-size: 14px; }
.check-field input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--ink); }
.form-status { min-height: 26px; margin: 15px 0 0; font-weight: 700; }
.field-hint { color: #8c6b30; font-size: 10px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.privacy-notice { margin: 18px 0 4px; color: var(--muted-light); font-size: 11px; line-height: 1.55; }
.privacy-notice a { color: #765a27; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.contact-section { padding: 104px 0; border-top: 1px solid var(--line-dark); background: linear-gradient(150deg, #07111f, #101d2e); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 74px; align-items: start; }
.contact-intro { position: sticky; top: 120px; }
.contact-intro h2 { max-width: 520px; }
.contact-intro > p:not(.eyebrow) { max-width: 500px; color: var(--muted-dark); }
.contact-speed { margin-top: 30px; padding: 22px; border: 1px solid rgba(227,197,135,.35); border-radius: 18px; background: rgba(227,197,135,.07); }
.contact-speed span, .contact-speed small { display: block; color: var(--muted-dark); font-size: 11px; }
.contact-speed span { margin-bottom: 7px; color: var(--gold-bright); font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-speed strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.contact-card { padding: 30px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: var(--paper-bright); color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.contact-card .button { width: 100%; margin-top: 7px; }
.contact-page-hero { padding: 92px 0 70px; border-bottom: 1px solid var(--line-dark); background: var(--ink); }
.contact-page-hero h1 { max-width: 980px; font-size: clamp(3.2rem, 7vw, 6.8rem); }
.contact-page-hero .lede { max-width: 770px; }
.contact-section-page { padding-top: 82px; }
.contact-legal-note { margin-top: 24px; font-size: 12px !important; }

.legal { max-width: 820px; }
.legal h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
.legal h2 { margin-top: 50px; font-family: var(--sans); font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.legal p, .legal li { color: #c1ccd8; }
.legal a { color: var(--gold-bright); text-decoration: underline; }
.legal .notice { margin: 25px 0; padding: 18px 20px; border: 1px solid rgba(202,167,102,.4); border-radius: 12px; }

.success-shell { min-height: 68vh; padding: 90px 0; }
.success-card { max-width: 820px; padding: 36px; border: 1px solid var(--line-dark); border-radius: 22px; background: rgba(255,255,255,.04); }
.success-card h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.status-badge { display: inline-flex; margin-bottom: 22px; padding: 7px 12px; border: 1px solid rgba(189,252,201,.35); border-radius: 999px; color: var(--mint); font-size: 13px; font-weight: 800; }
.order-meta { margin: 26px 0; padding: 18px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); }
.consultation-success-card { max-width: 980px; }
.consultation-success-card .lede { max-width: 780px; }
.paid-confirmation { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.paid-confirmation > strong { color: var(--gold-bright); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.booking-steps { margin: 28px 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.booking-steps > div { min-height: 112px; padding: 17px; display: grid; align-content: start; gap: 6px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.booking-steps span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--muted-dark); font-size: 11px; }
.booking-steps b { font-size: 13px; }
.booking-steps small { color: var(--muted-dark); font-size: 10px; }
.booking-steps .is-done span { border-color: rgba(189,252,201,.4); color: var(--mint); }
.booking-steps .is-current { background: rgba(227,197,135,.08); }
.booking-steps .is-current span { border-color: var(--gold); color: var(--gold-bright); }
.paid-intake-form { margin-top: 26px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.paid-intake-form .privacy-notice { color: var(--muted-dark); }
.paid-intake-form .privacy-notice a { color: var(--gold-bright); }
.hidden { display: none !important; }
.spinner { width: 22px; height: 22px; border: 2px solid rgba(255,255,255,.22); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.purchase-dialog { width: min(calc(100% - 28px), 580px); padding: 0; border: 1px solid rgba(202,167,102,.48); border-radius: 22px; background: var(--ink-soft); color: #fff; box-shadow: 0 28px 100px rgba(0,0,0,.55); }
.purchase-dialog::backdrop { background: rgba(0,6,14,.74); backdrop-filter: blur(5px); }
.dialog-inner { padding: 30px; }
.dialog-top { display: flex; justify-content: space-between; gap: 18px; }
.dialog-top h2 { margin-bottom: 10px; font-size: 2.25rem; }
.dialog-top p { margin: 0; color: var(--muted-dark); }
.dialog-close { width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }
.dialog-consent { display: flex; gap: 11px; margin: 24px 0; color: #c4ceda; font-size: 14px; }
.dialog-consent input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--gold-bright); }
.dialog-note { color: var(--muted-dark); font-size: 12px; }
.dialog-note a { color: var(--gold-bright); text-decoration: underline; }
.dialog-error { min-height: 24px; color: #ffb5ad; font-size: 14px; font-weight: 700; }

.site-footer { padding: 58px 0 30px; border-top: 1px solid var(--line-dark); }
.site-footer .brand-logo-image { width: 254px; }
.footer-logo-strip { margin-bottom: 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 70px; margin-bottom: 60px; }
.footer-note { max-width: 430px; margin-top: 18px; color: var(--muted-dark); font-size: 14px; }
.footer-col strong { display: block; margin-bottom: 15px; color: var(--gold-bright); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 8px 0; color: #c4ceda; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: 12px; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav { position: fixed; inset: 76px 0 auto; min-height: calc(100vh - 76px); padding: 34px 22px; display: none; flex-direction: column; align-items: flex-start; background: var(--ink); }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1.2rem; }
  .hero-grid, .page-hero-grid, .consulting-grid, .split, .content-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-intro { position: static; }
  .hero { padding-top: 70px; }
  .ledger-card { max-width: 560px; transform: none; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 390px; }
  .consulting-price { text-align: left; }
  .consulting-actions { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container, .header-inner { width: min(calc(100% - 28px), var(--max)); }
  .hero, .page-hero, .light-section, .dark-section { padding-top: 68px; padding-bottom: 68px; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.45rem); }
  .hero-grid { gap: 44px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { min-height: auto; border-left: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
  .product-card { padding: 23px; }
  .product-card h3 { margin-top: 44px; }
  .product-card footer { align-items: center; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-top > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .dialog-inner { padding: 24px; }
  .brand-text { font-size: 15px; }
  .site-header .brand-logo-image { width: 166px; }
  .site-footer .brand-logo-image { width: 220px; }
  .contact-section { padding: 68px 0; }
  .contact-card { padding: 22px; border-radius: 20px; }
  .contact-page-hero { padding: 68px 0 54px; }
  .booking-steps { grid-template-columns: 1fr; }
  .booking-steps > div { min-height: 82px; }
  .paid-confirmation { align-items: flex-start; flex-direction: column; gap: 0; }
}

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

/* Release 01 conversion layer */
.release-bar {
  position: relative;
  z-index: 45;
  padding: 9px 0;
  background: var(--gold-bright);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}
.release-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.release-inner > span:first-child { display: flex; align-items: center; gap: 12px; }
.release-inner strong { font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.release-copy { opacity: .76; }
.countdown { flex: 0 0 auto; font-variant-numeric: tabular-nums; font-weight: 650; }
.countdown b { display: inline-block; min-width: 18px; font-size: 13px; }
.release-bar.is-ended .release-copy { display: none; }

.hero-v2 { padding: 74px 0 76px; }
.hero-grid-v2 { grid-template-columns: minmax(0, .96fr) minmax(400px, 1.04fr); align-items: center; gap: 54px; }
.hero-copy h1 { font-size: clamp(3.2rem, 6vw, 6rem); }
.hero-numbers {
  max-width: 720px;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.hero-numbers span { padding: 15px 14px 14px 0; color: var(--muted-dark); font-size: 12px; line-height: 1.35; }
.hero-numbers strong { display: block; color: var(--paper-bright); font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.micro-proof { margin: 16px 0 0; color: var(--muted-dark); font-size: 12px; }
.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(227,197,135,.35);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}
.hero-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(7,17,31,.26); pointer-events: none; }
.hero-media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.hero-media figcaption {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(7,17,31,.82);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(189,252,201,.12); }
.pulse-cta { animation: softPulse 2.8s ease-in-out infinite; }
@keyframes softPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(227,197,135,.22); } 50% { box-shadow: 0 0 0 9px rgba(227,197,135,0); } }

.proof-grid-four { grid-template-columns: repeat(4, 1fr); }
.proof-grid-four .proof-item:first-child { border-left: 1px solid var(--line-dark); }
.impact-strip {
  padding: 38px 0 42px;
  border-top: 1px solid var(--line-dark);
  background: linear-gradient(180deg, #0a1625, #07111f);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-dark);
}
.impact-grid > div { min-height: 138px; padding: 20px 22px; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: space-between; }
.impact-grid strong { color: var(--gold-bright); font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.5rem); font-weight: 500; line-height: .9; }
.impact-grid span { max-width: 210px; color: var(--muted-dark); font-size: 12px; line-height: 1.35; }
.impact-note { margin: 20px auto 0; color: #d6dee8; font-size: 13px; font-weight: 700; text-align: center; }
.products-section { overflow: hidden; }
.section-head-wide {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}
.section-head-wide h2 { max-width: 900px; margin-bottom: 0; }
.offer-card {
  min-width: 178px;
  padding: 18px 20px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: var(--paper-bright);
  box-shadow: 0 18px 45px rgba(7,17,31,.08);
}
.offer-card span, .offer-card small { display: block; color: var(--muted-light); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.offer-card strong { margin-right: 8px; font-family: var(--serif); font-size: 2.25rem; font-weight: 500; }
.offer-card s { color: #8d958f; }
.products-grid-v2 { align-items: stretch; }
.products-grid-v2 .product-card {
  min-height: 930px;
  padding: 24px;
  border-width: 1px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.products-grid-v2 .product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(7,17,31,.14); border-color: rgba(7,17,31,.32); }
.products-grid-v2 .product-card::after { top: 50px; font-size: 8rem; }
.product-card-featured { background: linear-gradient(155deg, #fffdf8, #f1eadc); }
.product-card-dubai { background: linear-gradient(155deg, #fffaf0, #f2e2be); }
.product-card-europe { background: linear-gradient(155deg, #f8fbff, #e3ecf1); }
.card-topline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.stock-pill { padding: 5px 9px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.product-visual {
  position: relative;
  z-index: 2;
  margin: 18px -8px 16px;
  overflow: hidden;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 18px;
  background: #07111f;
  box-shadow: 0 18px 44px rgba(7,17,31,.18);
}
.product-visual::after { content: "INSTANT .XLSX ACCESS"; position: absolute; left: 12px; bottom: 12px; padding: 6px 9px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(7,17,31,.76); color: #fff; backdrop-filter: blur(10px); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.product-visual img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-visual img { transform: scale(1.025); }
.best-for { min-height: 34px; margin: 0 0 9px !important; color: #795f31 !important; font-size: 10px !important; font-weight: 850; line-height: 1.35; letter-spacing: .07em; text-transform: uppercase; }
.products-grid-v2 .product-card h3 { position: relative; z-index: 2; margin: 0 0 10px; font-size: 2.45rem; }
.card-hook { position: relative; z-index: 2; min-height: 76px; margin: 0; color: #556170; }
.contact-count { position: relative; z-index: 2; margin: 19px 0; padding: 14px 0; display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.contact-count strong { font-family: var(--serif); font-size: 2.4rem; font-weight: 500; line-height: 1; }
.contact-count span { max-width: 130px; color: var(--muted-light); font-size: 12px; line-height: 1.25; }
.compact-list { position: relative; z-index: 2; margin-bottom: 22px; }
.compact-list li { padding: 7px 0 7px 22px; }
.products-grid-v2 .product-card footer { position: relative; z-index: 2; margin-top: auto; flex-direction: column; align-items: stretch; gap: 15px; }
.products-grid-v2 .price s { margin-right: 3px; color: #858e95; font-family: var(--sans); font-size: 14px; font-weight: 500; }
.products-grid-v2 .buy-button { width: 100%; min-height: 52px; border-radius: 14px; font-size: 15px; }
.buy-button[disabled], .page-price .button[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.card-detail-link { position: relative; z-index: 2; margin-top: 13px; color: #475260; font-size: 12px; font-weight: 750; text-align: center; text-decoration: underline; text-underline-offset: 3px; }
.release-note { max-width: 780px; margin: 24px auto 0; color: var(--muted-light); font-size: 13px; text-align: center; }

.preview-section { padding: 110px 0; overflow: hidden; background: #0d1929; }
.preview-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 58px; }
.preview-copy p:not(.eyebrow) { color: var(--muted-dark); }
.preview-copy strong { color: #fff; }
.preview-checks { margin: 24px 0 30px; }
.excel-window { min-width: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; overflow: hidden; background: #f8faf8; color: #18231e; box-shadow: 0 34px 100px rgba(0,0,0,.42); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.excel-toolbar { min-height: 56px; padding: 11px 16px; display: flex; align-items: center; gap: 11px; background: #155b37; color: #fff; font-size: 12px; font-weight: 700; }
.excel-toolbar i { width: 8px; height: 8px; margin-left: auto; border-radius: 50%; background: rgba(255,255,255,.5); }
.excel-toolbar i + i { margin-left: -5px; }
.excel-logo { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 7px; background: #0b3d25; font-weight: 900; }
.excel-tabs { padding: 0 16px; display: flex; gap: 20px; overflow-x: auto; border-bottom: 1px solid #cad4cd; background: #eef3ef; color: #526159; font-size: 11px; white-space: nowrap; }
.excel-tabs > * { padding: 11px 0 9px; }
.excel-tabs b { color: #155b37; border-bottom: 2px solid #155b37; }
.excel-table-wrap { overflow: auto; }
.excel-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 11px; }
.excel-table th, .excel-table td { padding: 11px 12px; border-right: 1px solid #dfe5e1; border-bottom: 1px solid #dfe5e1; text-align: left; white-space: nowrap; }
.excel-table th { position: sticky; top: 0; background: #dcebe1; color: #1e4932; font-weight: 800; }
.excel-table tbody tr:nth-child(even) { background: #f1f5f2; }
.redacted { padding: 5px 9px; border-radius: 5px; background: #e5e9e6; color: #919b95; filter: blur(.2px); }
.link-chip { color: #12693d; font-weight: 800; }
.excel-status { padding: 10px 15px; display: flex; justify-content: space-between; gap: 12px; background: #eef3ef; color: #65736b; font-size: 10px; }
.excel-status strong { color: #155b37; }

.workflow-section { overflow: hidden; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.steps-grid article { min-height: 280px; padding: 32px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.steps-grid article > span { color: var(--gold-bright); font-family: var(--serif); font-size: 1.3rem; }
.steps-grid h3 { margin: 70px 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.steps-grid p { margin: 0; color: var(--muted-dark); }
.consulting-band-v2 { position: relative; overflow: hidden; }
.consulting-band-v2::after { content: "ASK BETTER"; position: absolute; right: -40px; bottom: -40px; color: rgba(7,17,31,.06); font-family: var(--serif); font-size: 9rem; font-style: italic; white-space: nowrap; }
.mobile-buy-bar { display: none; }

@media (max-width: 1020px) {
  .hero-grid-v2 { grid-template-columns: 1fr; }
  .hero-media { max-width: 760px; }
  .hero-media img { aspect-ratio: 16 / 8.8; object-position: center; }
  .proof-grid-four { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line-dark); }
  .impact-grid > div { border-bottom: 1px solid var(--line-dark); }
  .products-grid-v2 { grid-template-columns: 1fr; }
  .products-grid-v2 .product-card { min-height: 0; }
  .card-hook { min-height: 0; }
  .preview-grid { grid-template-columns: 1fr; }
  .excel-window { transform: none; }
}

@media (max-width: 620px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .release-bar { padding: 8px 0; }
  .release-inner { gap: 8px; }
  .release-inner > span:first-child { display: block; }
  .release-copy { display: none; }
  .countdown { font-size: 10px; }
  .countdown b { min-width: 15px; font-size: 11px; }
  .hero-v2 { padding-top: 48px; }
  .hero-copy h1 { font-size: clamp(3rem, 14.5vw, 4.25rem); }
  .hero-numbers { grid-template-columns: 1fr 1fr 1fr; }
  .hero-numbers span { padding: 12px 6px 12px 0; font-size: 10px; }
  .hero-numbers strong { font-size: 1.45rem; }
  .hero-media { border-radius: 20px; }
  .hero-media img { aspect-ratio: 4 / 3; object-position: 58% center; }
  .proof-grid-four { grid-template-columns: 1fr; }
  .impact-strip { padding: 28px 0 32px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid > div { min-height: 118px; padding: 16px 13px; }
  .impact-grid strong { font-size: 2.65rem; }
  .impact-grid span { font-size: 10px; }
  .impact-note { max-width: 290px; font-size: 11px; }
  .section-head-wide { grid-template-columns: 1fr; gap: 22px; }
  .offer-card { width: 100%; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 8px; }
  .offer-card span { grid-column: 1; }
  .offer-card strong { margin: 0; font-size: 2rem; }
  .offer-card small { grid-column: 1 / -1; }
  .products-grid-v2 .product-card { padding: 21px; border-radius: 22px; }
  .products-grid-v2 .product-card::after { top: 72px; font-size: 7rem; }
  .product-visual { margin: 16px -3px 14px; border-radius: 16px; }
  .product-visual::after { left: 10px; bottom: 10px; }
  .products-grid-v2 .product-card h3 { margin-top: 0; font-size: 2.25rem; }
  .contact-count { margin: 15px 0; }
  .preview-section { padding: 72px 0; }
  .excel-window { margin-right: -14px; border-radius: 16px 0 0 16px; }
  .excel-toolbar { min-height: 48px; padding: 9px 11px; }
  .excel-table-wrap { max-height: 310px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 210px; padding: 25px; }
  .steps-grid h3 { margin-top: 38px; }
  .mobile-buy-bar {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 70px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,.18);
    background: rgba(7,17,31,.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 -14px 40px rgba(0,0,0,.3);
  }
  .mobile-buy-bar div { display: grid; }
  .mobile-buy-bar span { color: var(--muted-dark); font-size: 10px; text-transform: uppercase; }
  .mobile-buy-bar strong { font-size: 16px; }
  .mobile-buy-bar s { color: #84909d; font-size: 11px; }
  .mobile-buy-bar a { padding: 12px 16px; border-radius: 999px; background: var(--gold-bright); color: var(--ink); font-size: 13px; font-weight: 850; }
}
