:root {
  --navy: #061f3f;
  --navy-2: #092b55;
  --ink: #102033;
  --muted: #5f6e80;
  --line: #dce4ed;
  --soft: #f4f8fb;
  --gold: #c99a3e;
  --gold-2: #f0c46b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 26, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(9, 43, 85, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  min-width: 42px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta,
.button,
.access-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary,
.access-form button {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(6, 31, 63, 0.2);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 255, 255, 0.2) 64%, rgba(6, 31, 63, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 31, 63, 0.55), rgba(6, 31, 63, 0) 42%);
}

.hero-content {
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 86px);
  padding: 90px 0;
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  color: #26394d;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 20px;
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(6, 31, 63, 0.18);
}

.url-preview {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
  max-width: 100%;
  padding: 14px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 31, 63, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.intro p:last-child,
.sign-copy p,
.final-cta p,
.feature-grid p,
.audience-grid p,
.plan-grid p,
.example-list span {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-panel {
  width: 100%;
  max-width: none;
  padding: 86px clamp(20px, 4vw, 64px);
  background: var(--soft);
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 34px;
}

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

.feature-grid article,
.audience-grid article,
.plan-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(6, 31, 63, 0.06);
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--navy);
  background: #f8efd9;
  border-radius: 8px;
  font-weight: 900;
}

.sign-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 48px;
  align-items: center;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
}

.sign-card {
  padding: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sign-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.sign-top span {
  color: var(--gold-2);
  text-transform: uppercase;
}

.qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  aspect-ratio: 1;
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
}

.qr span {
  background: var(--navy);
  border-radius: 3px;
}

.qr span:nth-child(2),
.qr span:nth-child(5),
.qr span:nth-child(8),
.qr span:nth-child(11),
.qr span:nth-child(14) {
  background: var(--gold);
}

.sign-card p {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

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

.examples {
  width: 100%;
  max-width: none;
  padding: 86px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: var(--navy);
}

.examples h2,
.examples .section-kicker {
  color: var(--white);
}

.example-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.example-list p {
  display: grid;
  gap: 9px;
  min-height: 160px;
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.example-list strong {
  color: var(--gold-2);
  font-size: 1.18rem;
  overflow-wrap: anywhere;
}

.example-list span {
  color: rgba(255, 255, 255, 0.78);
}

.featured-plan {
  border-color: rgba(201, 154, 62, 0.7) !important;
  box-shadow: 0 24px 70px rgba(201, 154, 62, 0.2) !important;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 42px;
  align-items: start;
}

.access-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.access-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.access-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cad6e2;
  border-radius: 6px;
  font: inherit;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.75);
  background: #041427;
}

.site-footer p {
  margin: 0;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

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

  .nav-links {
    display: none;
  }

  .intro,
  .sign-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .plan-grid,
  .example-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .header-cta {
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(6, 31, 63, 0.35) 100%),
      linear-gradient(0deg, rgba(6, 31, 63, 0.45), rgba(6, 31, 63, 0));
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 58px 0 120px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .section,
  .feature-panel,
  .examples {
    width: 100%;
    padding: 64px 18px;
  }

  .feature-grid,
  .plan-grid,
  .example-list,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .example-list p {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
