:root {
  --navy: #0f2d4a;
  --navy-dark: #081d31;
  --navy-soft: #173e60;
  --gold: #b79b58;
  --gold-soft: #d6c38d;
  --slate: #6b7c93;
  --ivory: #f8f6f1;
  --paper: #fffdfa;
  --charcoal: #2e2e2e;
  --muted: #66717d;
  --line: #dcd8cf;
  --green: #2e6b55;
  --green-bg: #e8f2ed;
  --blue: #376787;
  --blue-bg: #e8f0f5;
  --yellow: #8a6d1e;
  --yellow-bg: #f5efd9;
  --red: #9b3b3b;
  --red-bg: #f6e8e7;
  --shadow: 0 26px 65px rgba(15, 45, 74, 0.15);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-space: 6.75rem;
  --section-space-mobile: 4.75rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-200%);
  background: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 0.4rem;
  border: 2px solid var(--navy);
}
.skip-link:focus { transform: none; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 840px; }
.center { text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 45, 74, 0.08);
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(16px);
  overflow: visible;
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: visible;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: visible;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 260px;
  height: auto;
  max-width: none;
}
.desktop-nav { display: flex; gap: 2rem; margin-left: auto; }
.desktop-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: #425161;
  font-weight: 650;
}
.desktop-nav a:hover { color: var(--navy); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--navy);
  border-radius: 0.55rem;
  background: var(--navy);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(15, 45, 74, 0.13);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--navy-soft);
  box-shadow: 0 10px 24px rgba(15, 45, 74, 0.18);
}
.button-small { min-height: 42px; padding: 0.6rem 0.95rem; font-size: 0.88rem; }
.button-light { background: #fff; color: var(--navy); border-color: #fff; }

/* Shared hierarchy */
.eyebrow {
  display: block;
  margin: 0 0 0.95rem;
  color: var(--gold);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--gold-soft); }

.hero h1,
.section-copy h2,
.section-heading h2,
.narrow h2,
.ownership-copy h2,
.contact-card h2,
.faq-layout h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.07;
  letter-spacing: -0.025em;
}
.section-copy h2,
.section-heading h2,
.ownership-copy h2,
.faq-layout h2,
.narrow h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}
.section-copy > p,
.section-heading > p,
.ownership-copy > p,
.narrow > p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}
.section-heading { max-width: 800px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7.25rem 0 6.5rem;
  background: radial-gradient(circle at 87% 25%, rgba(183,155,88,0.16), transparent 28%), linear-gradient(180deg, var(--ivory), #fff 82%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(15,45,74,0.08);
  border-radius: 50%;
  right: -240px;
  top: 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 5rem;
}
.hero h1 {
  font-size: clamp(3.3rem, 7vw, 5.9rem);
  max-width: 720px;
}
.hero-lede {
  margin: 1.5rem 0 0;
  max-width: 690px;
  font-size: 1.25rem;
  color: #4f5d6a;
  line-height: 1.65;
}
.triplet {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 1.8rem 0 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.22rem;
}
.hero-actions { margin-top: 2rem; display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.text-link { color: var(--navy); font-weight: 750; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.hero-note {
  margin-top: 2.3rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  max-width: 580px;
  color: #5f6974;
  font-size: 0.92rem;
}
.hero-note svg { width: 24px; height: 24px; fill: var(--gold); flex: 0 0 auto; }

/* Product mockup */
.product-frame {
  position: relative;
  border: 1px solid rgba(15,45,74,0.15);
  border-radius: 1rem;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(0.5deg);
}
.product-frame::before {
  content: "";
  position: absolute;
  inset: -18px 40px auto -35px;
  height: 80px;
  background: rgba(183,155,88,0.12);
  filter: blur(35px);
}
.browser-bar {
  height: 48px;
  padding: 0 1rem;
  border-bottom: 1px solid #e9e6df;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fbfaf7;
}
.browser-dots { display: flex; gap: 0.38rem; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d5d1ca; }
.browser-domain {
  margin: 0 auto;
  transform: translateX(-1.5rem);
  width: 54%;
  text-align: center;
  color: #8a9199;
  font-size: 0.72rem;
  border: 1px solid #e4e0d9;
  border-radius: 0.35rem;
  padding: 0.25rem 0.5rem;
  background: #fff;
}
.product-shell { display: grid; grid-template-columns: 64px 1fr; min-height: 455px; }
.mini-sidebar {
  background: var(--navy);
  padding: 1.1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mini-mark {
  color: #fff;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.76rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 0.35rem;
  padding: 0.25rem;
}
.mini-nav { width: 26px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.24); }
.mini-nav.active { background: var(--gold); }
.dashboard { padding: 1.7rem; background: #fcfcfb; }
.dashboard-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.mini-kicker { font-size: 0.6rem; letter-spacing: 0.16em; color: var(--slate); font-weight: 750; }
.dashboard h2 { margin: 0.15rem 0 0; font-family: var(--serif); color: var(--navy); font-size: 1.5rem; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 1.3rem; }
.metric {
  border: 1px solid #e5e1d9;
  border-radius: 0.6rem;
  background: #fff;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
}
.metric strong { color: var(--navy); font-size: 1.5rem; line-height: 1; }
.metric span { margin-top: 0.4rem; font-size: 0.7rem; color: var(--muted); }
.table-card { margin-top: 1rem; border: 1px solid #e5e1d9; border-radius: 0.65rem; background: #fff; overflow: hidden; }
.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.75fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
}
.table-head {
  background: #f7f5f0;
  color: var(--slate);
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.table-row { border-top: 1px solid #efebe5; font-size: 0.7rem; color: #53606c; }
.table-row > span:first-child { display: flex; align-items: center; gap: 0.45rem; }
.avatar {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9edf1;
  color: var(--navy);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 800;
  flex: 0 0 auto;
}
.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  white-space: nowrap;
}
.status-pill.ready { background: var(--green-bg); color: var(--green); }
.status-pill.due { background: var(--blue-bg); color: var(--blue); }
.status-pill.attention { background: var(--yellow-bg); color: var(--yellow); }
.status-pill.expired { background: var(--red-bg); color: var(--red); }
.notice-card {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.8rem;
  background: #f8f3e5;
  border: 1px solid #e8dbb5;
  border-radius: 0.6rem;
}
.notice-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.7rem;
}
.notice-card strong { color: #675421; font-size: 0.75rem; }
.notice-card p { margin: 0.15rem 0 0; color: #817347; font-size: 0.66rem; line-height: 1.45; }

/* Problem */
.problem-section { padding: var(--section-space) 0; background: #fff; }
.narrow > p { margin-inline: auto; max-width: 760px; }
.question-grid {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.question-grid article {
  min-height: 190px;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
}
.question-grid article:last-child { border-right: 0; }
.question-number {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.12em;
}
.question-grid h3 {
  margin: 1.7rem 0 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.25;
}

/* Readiness */
.readiness-section {
  padding: var(--section-space) 0;
  background: var(--ivory);
  border-block: 1px solid #ebe7de;
}
.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5.25rem;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #45525f;
  font-weight: 650;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.status-panel {
  border: 1px solid #ddd8ce;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 22px 50px rgba(15,45,74,0.09);
  overflow: hidden;
}
.status-panel-header {
  padding: 1rem 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 750;
}
.person-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-top: 1px solid #ece8e0;
}
.person-row > div { display: flex; gap: 0.75rem; align-items: center; }
.person-row span { display: flex; flex-direction: column; }
.person-row strong { color: var(--navy); font-size: 0.9rem; }
.person-row small { margin-top: 0.12rem; color: var(--muted); font-size: 0.74rem; }

/* Features */
.features-section { padding: var(--section-space) 0; background: #fff; }
.feature-grid {
  margin-top: 3.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  min-height: 100%;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
}
.feature-icon {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.feature-card h3 {
  margin: 1.35rem 0 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.25;
}
.feature-card p { margin: 0.7rem 0 0; color: var(--muted); font-size: 0.96rem; line-height: 1.7; }

/* Ownership */
.ownership-section {
  padding: var(--section-space) 0;
  background: var(--navy);
  color: #fff;
}
.ownership-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5.25rem;
  align-items: start;
}
.ownership-copy h2 { color: #fff; }
.ownership-copy > p { color: #d4dde5; }
.ownership-points { display: grid; gap: 1rem; }
.ownership-point {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0.7rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,0.045);
}
.ownership-point strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.ownership-point span {
  display: block;
  margin-top: 0.4rem;
  color: #c3ced8;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Process */
.process-section { padding: var(--section-space) 0; background: #fff; }
.process-grid {
  margin-top: 3.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.process-card {
  padding: 1.8rem;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 0.55rem 0.55rem;
  background: var(--ivory);
}
.process-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.process-card h3 {
  margin: 0.9rem 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.process-card p { margin: 0.6rem 0 0; color: var(--muted); line-height: 1.7; }

/* What you get */
.included-section {
  padding: var(--section-space) 0;
  background: var(--ivory);
  border-block: 1px solid #ebe7de;
}
.included-layout {
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
}
.included-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.included-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}
.included-list > div > span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(183,155,88,0.14);
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}
.included-list p { margin: 0; }
.included-list strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.25;
}
.included-list small {
  display: block;
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Conference message */
.conference-callout {
  padding: 5.5rem 0;
  background: var(--navy-dark);
  color: #fff;
}
.conference-inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.conference-inner .eyebrow { margin-bottom: 1.15rem; }
.conference-inner blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.conference-inner > p:last-child {
  margin: 1.35rem auto 0;
  max-width: 700px;
  color: #cbd5de;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* FAQ */
.faq-section {
  padding: var(--section-space) 0;
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.faq-list { display: grid; gap: 0.9rem; }
details {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--ivory);
  padding: 1.1rem 1.2rem;
}
summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 750;
  line-height: 1.45;
}
details p { margin: 0.7rem 0 0; color: var(--muted); line-height: 1.7; }

/* Contact */
.contact-section { padding: var(--section-space) 0; background: var(--ivory); }
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
  padding: 3.25rem;
  border-radius: 0.9rem;
  background: var(--navy);
  color: #fff;
  text-align: left;
}
.contact-card h2 { color: #fff; font-size: clamp(2.4rem, 4vw, 3.7rem); }
.contact-card p {
  margin: 1rem 0 0;
  max-width: 680px;
  color: #d1dbe4;
  line-height: 1.7;
}
.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-action small { display: none; }

/* Footer */
.site-footer {
  padding: 2.4rem 0;
  background: var(--ivory);
  color: var(--muted);
  border-top: 1px solid #e4dfd4;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.footer-inner img {
  display: block;
  width: 245px;
  height: auto;
  max-width: 100%;
}
.footer-inner p {
  margin: 0;
  text-align: center;
  color: #55616d;
  font-size: 0.86rem;
}
.footer-inner > span {
  color: #6f7881;
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero-grid,
  .split-layout,
  .ownership-grid,
  .included-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-grid { align-items: start; }
  .hero-copy { max-width: 760px; }
  .product-frame { max-width: 760px; }
  .question-grid { grid-template-columns: repeat(2, 1fr); }
  .question-grid article:nth-child(2) { border-right: 0; }
  .question-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; gap: 1rem; }
  .footer-inner p { text-align: left; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; gap: 0.8rem; }
  .brand img { width: 210px; }
  .button-small { min-height: 38px; padding: 0.5rem 0.7rem; font-size: 0.78rem; }
  .eyebrow { font-size: 0.92rem; letter-spacing: 0.11em; margin-bottom: 0.8rem; }
  .hero { padding: 5.5rem 0 4.75rem; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-lede { font-size: 1.08rem; }
  .hero-grid { gap: 3rem; }
  .product-shell { grid-template-columns: 46px 1fr; min-height: 420px; }
  .mini-sidebar { padding-inline: 0.45rem; }
  .dashboard { padding: 1rem; }
  .metric-grid { gap: 0.45rem; }
  .metric { padding: 0.65rem; }
  .table-head,
  .table-row { grid-template-columns: 1.25fr 1fr; }
  .table-head > span:nth-child(3),
  .table-row > span:nth-child(3) { grid-column: 1 / -1; justify-self: start; }
  .question-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .question-grid article { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .question-grid article:last-child { border-bottom: 0; }
  .problem-section,
  .readiness-section,
  .features-section,
  .ownership-section,
  .process-section,
  .included-section,
  .faq-section,
  .contact-section { padding: var(--section-space-mobile) 0; }
  .conference-callout { padding: 4.5rem 0; }
  .contact-card { padding: 2.2rem 1.4rem; }
  .footer-inner img { width: 220px; }
}

@media (max-width: 480px) {
  .brand img { width: 180px; }
  .button-small { padding-inline: 0.6rem; }
  .header-inner { gap: 0.55rem; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.7rem); }
  .contact-card { padding: 2rem 1.2rem; }
}
