:root {
  --navy: #13233b;
  --deep: #0a1526;
  --navy2: #1a3150;
  --gold: #c9a24b;
  --gold2: #e2c780;
  --ivory: #f7f2e7;
  --paper: #fffdf8;
  --white: #fff;
  --slate: #6e6a5f;
  --line: #e6ddc6;
  --coral: #d9785e;
  --green: #557a5d;
  --red: #b85e4b;
  --text: #223047;
  --shadow: 0 20px 50px rgba(10, 21, 38, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: var(--paper);
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
.container {
  width: min(1160px, calc(100% - 36px));
  margin: auto;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 231, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand strong {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: 1.23rem;
}
.brand small {
  color: var(--gold);
  font-size: 0.66rem;
  font-style: italic;
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}
.nav-right {
  display: flex;
  justify-content: flex-end;
}
.mobile-menu {
  display: none;
  background: none;
  border: 0;
  font-size: 1.35rem;
  color: var(--navy);
}
.mobile-panel {
  display: none;
  padding: 8px 18px 16px;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.mobile-panel.open {
  display: block;
}
.mobile-panel a {
  display: block;
  padding: 10px 0;
  font-weight: 700;
  color: var(--navy);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
}
.btn-gold:hover {
  background: var(--gold2);
}
.btn-coral {
  background: var(--coral);
  color: white;
}
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--deep);
}
.hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 162, 75, 0.15), transparent 28rem),
    linear-gradient(135deg, var(--navy), var(--deep));
  color: white;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 51% 49%;
  gap: 42px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.2rem, 6.6vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 12px 0 20px;
}
.hero p {
  color: #dde5ec;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.trust {
  color: var(--gold2);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 20px;
}
.laptop-stage {
  position: relative;
}
.laptop-frame {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(226, 199, 128, 0.28);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}
.laptop-main {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
}
.mockup-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.mockup-tab {
  border: 1px solid rgba(226, 199, 128, 0.28);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px;
  border-radius: 10px;
  cursor: pointer;
}
.mockup-tab.active {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.13);
}
.mockup-tab img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 7px;
}
.mockup-tab span {
  display: block;
  color: #dce4eb;
  font-size: 0.68rem;
  text-align: center;
  margin-top: 5px;
}
.section {
  padding: 78px 0;
}
.section.ivory {
  background: var(--ivory);
}
.section.navy {
  background: var(--navy);
  color: white;
}
.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 42px;
}
.section-head h2 {
  font-size: clamp(2.15rem, 4.3vw, 3.3rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 9px 0 13px;
}
.section-head p {
  color: var(--slate);
  line-height: 1.7;
}
.navy .section-head h2 {
  color: white;
}
.navy .section-head p {
  color: #d9e2e9;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 25px;
  transition: 0.24s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin: 10px 0;
}
.card p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}
.feature-card {
  border-top: 4px solid var(--gold);
}
.icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  color: var(--navy);
  font-weight: 900;
}
.navy-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.65);
  border-radius: 11px;
  padding: 25px;
}
.navy-card h3 {
  color: white;
}
.navy-card p {
  color: #d9e2e9;
  line-height: 1.6;
  font-size: 0.9rem;
}
.banner {
  background: var(--navy);
  color: white;
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: center;
}
.banner h2 {
  color: white;
  font-size: 2.2rem;
  margin: 7px 0;
}
.banner p {
  color: #d8e2e9;
  line-height: 1.65;
}
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: white;
  padding: 66px 0;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin: 9px 0 14px;
}
.page-hero p {
  max-width: 760px;
  color: #dce5ed;
  line-height: 1.7;
}
.badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-size: 0.69rem;
  font-weight: 800;
  color: var(--navy);
}
.resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.resource-card .actions {
  margin-top: auto;
  padding-top: 18px;
}
.flow {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 13px;
  color: var(--slate);
  font-size: 0.76rem;
}
.flow b {
  color: var(--navy);
}
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
}
.field label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
}
.input,
.select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  background: var(--paper);
  color: var(--text);
  outline: none;
}
.input:focus,
.select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.12);
}
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--slate);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 13px 0;
}
.consent input {
  margin-top: 3px;
}
.small-note {
  font-size: 0.75rem;
  color: var(--slate);
  line-height: 1.5;
}
.status {
  display: none;
  border-radius: 10px;
  padding: 12px 13px;
  margin-top: 12px;
  font-size: 0.84rem;
}
.status.show {
  display: block;
}
.status.success {
  background: #e9f2ea;
  color: #3e6548;
}
.status.error {
  background: #f8e9e5;
  color: #914c3d;
}
.status.info {
  background: #f5efde;
  color: #806723;
}
.app-shell {
  max-width: 920px;
  margin: auto;
  padding: 30px 16px 70px;
}
.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.app-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  margin-top: 16px;
}
.progress {
  height: 7px;
  background: #eee7da;
  border-radius: 999px;
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: 0.25s;
}
.quiz-meta {
  display: flex;
  justify-content: space-between;
  color: var(--slate);
  font-size: 0.8rem;
  margin: 17px 0;
}
.question {
  font-size: 1.55rem;
  color: var(--navy);
  margin: 0 0 16px;
}
.answers {
  display: grid;
  gap: 10px;
}
.answer {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 14px;
  color: var(--text);
  cursor: pointer;
}
.answer:hover {
  border-color: var(--gold);
}
.answer.selected {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.navrow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}
.hidden {
  display: none !important;
}
.result-box {
  background: var(--navy);
  color: white;
  border-radius: 15px;
  padding: 22px;
}
.result-box h2 {
  color: white;
  font-size: 2rem;
  margin: 6px 0;
}
.result-box p {
  color: #dce5ed;
  line-height: 1.6;
}
.result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 12px;
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: var(--paper);
}
.mini-card span {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.mini-card h3 {
  color: var(--navy);
  margin: 6px 0;
}
.mini-card p {
  color: var(--slate);
  line-height: 1.5;
  font-size: 0.84rem;
}
.row-sub {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.95fr 0.95fr 42px;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px;
  margin-bottom: 9px;
}
.remove {
  border: 0;
  border-radius: 9px;
  background: #f7e8e4;
  color: var(--coral);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 12px 0;
}
.metric {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 13px;
}
.metric span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 800;
}
.metric strong {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: 1.28rem;
}
.download-preview {
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 13px;
  padding: 18px;
}
.download-preview h3 {
  color: var(--navy);
}
.footer {
  background: var(--deep);
  color: #c9d2da;
  padding: 44px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}
.footer h4 {
  color: white;
  margin: 0 0 12px;
}
.footer a {
  display: block;
  margin: 8px 0;
  font-size: 0.84rem;
}
.footer a:hover {
  color: var(--gold2);
}
.footer .brand strong {
  color: white;
}
.copyright {
  margin-top: 28px;
  color: #8e9ca8;
  font-size: 0.74rem;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.45s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 920px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-links,
  .nav-right .btn {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero-grid,
  .banner {
    grid-template-columns: 1fr;
  }
  .hero {
    text-align: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .laptop-stage {
    max-width: 700px;
    margin: auto;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, 1160px);
  }
  .section {
    padding: 56px 0;
  }
  .hero {
    padding: 54px 0;
  }
  .hero h1 {
    font-size: 3.35rem;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .result-cards,
  .metrics {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .row-sub {
    grid-template-columns: 1fr;
  }
  .quiz-meta {
    flex-direction: column;
    gap: 6px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .mockup-tab span {
    display: none;
  }
}
