:root {
  --navy: #111f64;
  --ink: #17213c;
  --muted: #536173;
  --sky: #e8f7ff;
  --orange: #ff941f;
  --green: #67aa2b;
  --blue: #2487d8;
  --red: #f05e4f;
  --violet: #6a4cc7;
  --white: #ffffff;
  --line: rgba(17, 31, 100, 0.14);
  --shadow: 0 18px 42px rgba(26, 44, 91, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background:
    linear-gradient(120deg, rgba(255, 217, 213, 0.45), rgba(232, 247, 255, 0.94) 42%, rgba(223, 244, 210, 0.68)),
    repeating-linear-gradient(90deg, rgba(17, 31, 100, 0.03) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(17, 31, 100, 0.025) 0 1px, transparent 1px 84px);
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: transparent;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1180px, 100%);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 16px 24px 28px;
  display: grid;
  gap: 16px;
}

.topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(17, 31, 100, 0.16));
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}

.brand-line {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link,
.nav-cta {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  font-weight: 850;
  line-height: 1;
  background: rgba(255, 255, 255, 0.66);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-link[aria-current="page"] {
  color: var(--white);
  border-color: rgba(17, 31, 100, 0.85);
  background: var(--navy);
}

.nav-cta {
  color: var(--white);
  border-color: rgba(255, 148, 31, 0.72);
  background: linear-gradient(135deg, var(--orange), #ff6f2c);
  box-shadow: 0 12px 26px rgba(255, 127, 30, 0.24);
}

.nav-link:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(26, 44, 91, 0.12);
}

.nav-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.eyebrow {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(103, 170, 43, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow .spark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 42%, var(--orange) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 42%, var(--blue) 42% 58%, transparent 58%);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

h1 {
  color: var(--navy);
  font-size: 3.2rem;
  line-height: 0.98;
  font-weight: 950;
}

.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.note-card {
  min-width: 0;
  min-height: 96px;
  padding: 13px 14px;
  border: 1px solid rgba(17, 31, 100, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.note-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.note-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.38;
  font-weight: 650;
}

.hero-visual {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
}

.logo-frame {
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(17, 31, 100, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.5)),
    conic-gradient(from 32deg, rgba(255, 148, 31, 0.16), rgba(36, 135, 216, 0.14), rgba(103, 170, 43, 0.14), rgba(240, 94, 79, 0.12), rgba(255, 148, 31, 0.16));
  box-shadow: 0 18px 34px rgba(17, 31, 100, 0.11);
}

.logo-frame img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(17, 31, 100, 0.18));
}

.visual-note {
  max-width: 28ch;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 800;
}

.section {
  display: grid;
  gap: 10px;
  padding: 2px 0;
}

.section-head {
  display: grid;
  gap: 6px;
}

.section h2 {
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.15;
}

.section-lead {
  max-width: 72ch;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(26, 44, 91, 0.07);
}

.panel h3 {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.panel p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.panel ul {
  margin-top: 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.panel li + li {
  margin-top: 4px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.step {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(26, 44, 91, 0.07);
}

.step .day {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.step h3 {
  margin-top: 5px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.18;
}

.step p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.qa-list {
  display: grid;
  gap: 10px;
}

.qa {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(26, 44, 91, 0.07);
}

.qa h3 {
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.2;
}

.qa p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.ad-band {
  display: grid;
  place-items: center;
  padding: 4px 0;
}

.ad-card {
  width: min(100%, 970px);
  padding: 12px;
  border: 1px solid rgba(17, 31, 100, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(26, 44, 91, 0.08);
  display: grid;
  gap: 8px;
}

.ad-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ad-slot {
  min-height: 90px;
  border: 1px dashed rgba(17, 31, 100, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.adsbygoogle {
  display: block !important;
  width: 100%;
  max-width: 728px;
  height: 90px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  margin: 0 auto;
}

.footer-note {
  padding: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .summary-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .page {
    padding: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
  }

  h1 {
    font-size: 2.36rem;
    line-height: 1;
  }

  .hero-copy,
  .hero-visual {
    padding: 18px;
  }

  .summary-grid,
  .card-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-link,
  .nav-cta {
    transition: none;
  }
}
