@import url("https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,500;7..72,650;7..72,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --navy: #0b1f3a;
  --navy-soft: #1a3358;
  --yellow: #f0c41a;
  --yellow-deep: #d4a40f;
  --cream: #f4efe4;
  --sky: #e8f0f6;
  --sky-2: #d5e4ef;
  --ink: #132033;
  --muted: #4a5a6d;
  --red: #d32f2f;
  --line: rgba(19, 32, 51, 0.12);
  --shadow: 0 20px 50px rgba(11, 31, 58, 0.12);
  --radius: 4px;
  --max: 1120px;
  --font-display: "Literata", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sky);
  line-height: 1.55;
  font-size: 1.05rem;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 1rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand-text small {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--yellow-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-cta:hover { background: var(--yellow-deep); color: #fff; }

/* Hero — Terminal Light */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background-color: #d7e3ec;
  background-image:
    linear-gradient(
      100deg,
      rgba(232, 240, 246, 0.96) 0%,
      rgba(232, 240, 246, 0.92) 34%,
      rgba(232, 240, 246, 0.55) 52%,
      rgba(11, 31, 58, 0.22) 100%
    ),
    url("/assets/hero-terminal-v3.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.08) 0%, transparent 28%, rgba(232, 240, 246, 0.55) 100%);
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.2rem;
}

.hero-logo {
  width: min(132px, 30vw);
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.22);
  animation: rise-in 0.85s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  line-height: 0.92;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  animation: rise-in 0.9s ease both;
}

.hero-brand em {
  font-style: normal;
  color: var(--yellow-deep);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.1vw, 2.15rem);
  font-weight: 500;
  max-width: 17ch;
  margin: 0 0 0.9rem;
  line-height: 1.22;
  animation: rise-in 1s ease both;
}

.hero-lead {
  max-width: 38ch;
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.6rem;
  animation: rise-in 1.05s ease both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  animation: rise-in 1.1s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.95rem 1.35rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover { background: var(--navy-soft); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.btn-yellow:hover { background: var(--yellow-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(11, 31, 58, 0.28);
}

.btn-ghost:hover { border-color: var(--navy); }

.price-chip {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Sections */
.section { padding: 4.2rem 0; }
.section-alt { background: #fff; }

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.55rem;
  line-height: 1.15;
  color: var(--navy);
}

.section-intro {
  max-width: 42ch;
  margin: 0 0 1.8rem;
  color: var(--muted);
}

.kit-list {
  display: grid;
  gap: 0;
}

@media (min-width: 800px) {
  .kit-list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
}

.kit-item {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.kit-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.kit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.preview-rail {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .preview-rail { grid-template-columns: repeat(3, 1fr); }
}

.preview-card {
  background: var(--navy);
  color: var(--cream);
  min-height: 210px;
  padding: 1.25rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -35% 40%;
  height: 140%;
  background: radial-gradient(circle, rgba(240, 196, 26, 0.35), transparent 60%);
}

.preview-card h3 {
  position: relative;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--yellow);
}

.preview-card p {
  position: relative;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(244, 239, 228, 0.82);
}

/* Buy band */
.buy-band {
  background: var(--navy);
  color: var(--cream);
  padding: 3.4rem 0;
}

.buy-band .wrap {
  display: block;
}

.buy-band .buy-intro.wrap {
  display: block;
}

.buy-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.55rem;
  color: #fff;
}

.buy-panel {
  background: rgba(244, 239, 228, 0.06);
  border: 1px solid rgba(244, 239, 228, 0.14);
  padding: 1.4rem;
  border-radius: var(--radius);
}

.buy-panel .big-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin: 0.15rem 0 0.35rem;
  color: var(--yellow);
}

.buy-panel ul {
  margin: 1rem 0 1.2rem;
  padding-left: 1.1rem;
  color: rgba(244, 239, 228, 0.85);
}

.buy-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.buy-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--navy);
}

.faq summary::-webkit-details-marker { display: none; }

.faq p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 3px solid var(--yellow-deep);
  padding-left: 1rem;
  margin: 0;
}

.lead-box {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.4rem;
  border-radius: var(--radius);
}

@media (min-width: 700px) {
  .lead-box { grid-template-columns: 1.5fr auto; }
}

.site-footer {
  background: var(--navy);
  color: rgba(244, 239, 228, 0.82);
  padding: 2.4rem 0;
  font-size: 0.95rem;
}

.site-footer a { color: var(--yellow); }

.site-footer .wrap {
  display: grid;
  gap: 0.7rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background:
    radial-gradient(ellipse at top, rgba(240, 196, 26, 0.18), transparent 50%),
    var(--sky);
}

.thanks-card {
  width: min(100%, 560px);
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-family: var(--font-display);
  margin: 0.8rem 0 0.6rem;
  color: var(--navy);
}

.thanks-logo {
  width: 72px;
  height: auto;
}

.muted { color: var(--muted); }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-logo,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .cta-row { animation: none; }
}
.preview-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.preview-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.preview-photo figcaption {
  padding: 0.85rem 1rem 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

/* Benefits */
.benefit-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.benefit-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 0.45rem;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.45rem;
  color: var(--navy);
  line-height: 1.25;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Add-ons */
.addon-list {
  display: grid;
  gap: 0;
}

@media (min-width: 800px) {
  .addon-list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
}

.addon-item {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.addon-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
  padding-right: 6.5rem;
}

.addon-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
}

.addon-tag {
  position: absolute;
  top: 1.15rem;
  right: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(240, 196, 26, 0.35);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

/* Pricing tiers */
.buy-intro {
  margin-bottom: 1.75rem;
}

.buy-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.55rem;
  color: #fff;
}

.buy-intro p {
  margin: 0;
  max-width: 48ch;
  color: rgba(244, 239, 228, 0.85);
}

.tier-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .tier-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.tier {
  background: rgba(244, 239, 228, 0.06);
  border: 1px solid rgba(244, 239, 228, 0.14);
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-featured {
  border-color: rgba(240, 196, 26, 0.55);
  background: rgba(240, 196, 26, 0.1);
  transform: scale(1.02);
}

.tier-badge {
  position: absolute;
  top: -0.65rem;
  left: 1.1rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.28rem 0.55rem;
  border-radius: 2px;
}

.tier h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.35rem 0 0.2rem;
  color: #fff;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.35rem;
  margin: 0;
  color: var(--yellow);
  line-height: 1.1;
}

.tier-note {
  margin: 0.35rem 0 0.85rem;
  color: rgba(244, 239, 228, 0.72);
  font-size: 0.92rem;
}

.tier ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: rgba(244, 239, 228, 0.88);
  flex: 1;
  font-size: 0.95rem;
}

.tier ul li { margin-bottom: 0.35rem; }

.tier .btn { width: 100%; }

.tier .btn-ghost {
  color: #fff;
  border-color: rgba(244, 239, 228, 0.35);
}

.tier .btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (max-width: 899px) {
  .tier-featured { transform: none; }
  .addon-item strong { padding-right: 0; }
  .addon-tag {
    position: static;
    display: inline-block;
    margin-top: 0.55rem;
  }
}