:root {
  --navy: #061a38;
  --navy-2: #0b274f;
  --orange: #d95722;
  --orange-2: #f47a2c;
  --ink: #121825;
  --muted: #657084;
  --line: #dbe2ec;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --shadow: 0 24px 70px rgba(6, 26, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 8px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 26, 56, 0.94);
  color: #fff;
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(128px, 14vw, 168px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  opacity: 0.88;
}

nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 9px 14px;
  border-radius: 6px;
  background: var(--orange);
  opacity: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  min-height: calc(100vh - 64px);
  background:
    radial-gradient(circle at 70% 30%, rgba(217, 87, 34, 0.26), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, #071020 58%, #050b16 100%);
  color: #fff;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 96px) clamp(22px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 7.3rem);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 32px rgba(217, 87, 34, 0.34);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button.secondary.dark {
  border-color: rgba(6, 26, 56, 0.28);
  color: var(--navy);
}

.button.full {
  width: 100%;
  margin-top: auto;
}

.hero-stats div {
  min-width: 180px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong,
.comparison-grid strong,
.fact-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--orange-2);
}

.hero-stats span,
.comparison-grid span,
.fact-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.hero-media {
  display: flex;
  align-items: stretch;
  min-height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tool-strip {
  background: var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}

.tool-strip button {
  width: clamp(170px, 16vw, 230px);
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.tool-strip button:hover,
.tool-strip button:focus-visible {
  background: var(--orange);
  color: #fff;
  outline: none;
}

.tool-strip:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.tool-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.tool-modal.is-open {
  display: flex;
}

.tool-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 17, 36, 0.76);
}

.tool-modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.tool-modal-card h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.tool-modal-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.modal-example {
  margin: 24px 0;
  padding: 18px;
  border-left: 5px solid var(--orange);
  border-radius: 6px;
  background: var(--soft);
}

.modal-example strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.modal-example span {
  color: #344052;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: end;
  background: var(--soft);
}

.intro p:not(.eyebrow),
.proof-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.pricing {
  background: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 26, 56, 0.08);
}

.plan-card.featured {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 87, 34, 0.12);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-label {
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.daily {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.plan-summary {
  color: var(--muted);
  line-height: 1.65;
}

ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 28px;
  color: #273247;
  line-height: 1.5;
}

li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(217, 87, 34, 0.13);
}

.comparison,
.proof {
  background: var(--navy);
  color: #fff;
}

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

.comparison-grid div,
.fact-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(217, 87, 34, 0.16), transparent 34%),
    var(--navy);
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.va {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
  background: var(--soft);
}

.va-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.va-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
}

.final-cta {
  padding: clamp(64px, 9vw, 120px) 20px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(6, 26, 56, 0.82), rgba(6, 26, 56, 0.9)),
    url("assets/xauti-hero.png") center / cover;
}

.final-cta h2,
.final-cta p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #041124;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer img {
  width: 140px;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.site-footer a {
  color: #fff;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .proof,
  .va {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
  }

  .plan-grid,
  .comparison-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
  }

  .nav-cta {
    padding: 9px 10px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-stats div {
    width: 100%;
  }

  .popular {
    position: static;
    width: fit-content;
    margin-bottom: 14px;
  }

  .site-footer div {
    flex-direction: column;
    gap: 8px;
  }
}
