:root {
  --navy: #061b4e;
  --navy-soft: #102b66;
  --orange: #ff8200;
  --yellow: #ffc226;
  --cream: #fffaf1;
  --line: #dce4f3;
  --text-soft: #36476f;
  --background: #fbfcff;
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 20px 45px rgba(6, 27, 78, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 194, 38, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
  color: var(--navy);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: 100%;
  min-height: 96px;
  padding: 0 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(6, 27, 78, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  display: block;
  width: clamp(150px, 16vw, 230px);
  height: auto;
}

.footer-logo img {
  width: clamp(130px, 13vw, 190px);
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  font-weight: 600;
  font-size: 0.98rem;
}

.nav a:not(.nav-button) {
  color: var(--navy);
  opacity: 0.95;
}

.nav-button {
  padding: 0.95rem 1.5rem;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  transition: 0.2s ease;
}

.nav-button:hover {
  background: var(--navy);
  color: white;
}

.hero {
  padding: clamp(5rem, 8vw, 8rem) 5.5vw clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6.3vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.hero-description {
  margin-top: 2rem;
  max-width: 560px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.65;
}

.hero-note {
  margin-top: 1.8rem;
  color: var(--navy-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.button,
.email-form button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 8px;
}

.button-primary {
  background: var(--navy);
  color: white;
  padding: 1.15rem 1.75rem;
  box-shadow: 0 16px 28px rgba(6, 27, 78, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(6, 27, 78, 0.2);
}

.button-link {
  font-weight: 800;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 0.25rem;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.horizon-line {
  position: absolute;
  left: 0;
  right: -5.5vw;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, rgba(6, 27, 78, 0.2), var(--navy));
}

.sun-large {
  position: absolute;
  width: min(45vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  left: 33%;
  top: 16%;
  background:
    linear-gradient(to bottom, var(--yellow) 0 50%, var(--orange) 50% 100%);
  overflow: hidden;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.22);
}

.sun-large::after,
.small-sun::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1.2px);
  background-size: 10px 10px;
}

.soft-glow {
  position: absolute;
  width: 420px;
  height: 150px;
  left: 28%;
  top: 47%;
  background: radial-gradient(ellipse, rgba(255, 130, 0, 0.19), transparent 65%);
  filter: blur(6px);
}

.ripple {
  position: absolute;
  border: 1px solid rgba(6, 27, 78, 0.13);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.ripple-one {
  width: 420px;
  height: 130px;
  left: 8%;
  top: 52%;
}

.ripple-two {
  width: 560px;
  height: 180px;
  left: 2%;
  top: 48%;
}

.ripple-three {
  width: 720px;
  height: 230px;
  left: -5%;
  top: 44%;
}

.section {
  padding: 2rem 5.5vw 3.8rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.6rem;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 auto 2.4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.info-card,
.pill,
.cta-card {
  background: var(--card);
  border: 1px solid rgba(6, 27, 78, 0.09);
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 170px;
  border-radius: 14px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.4rem;
  align-items: start;
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 1.8rem;
  background: rgba(255, 194, 38, 0.12);
  border: 1px solid rgba(255, 130, 0, 0.22);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.info-card p {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.98rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.pill {
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
}

.check {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  font-weight: 900;
}

.pill p {
  color: var(--navy-soft);
  font-weight: 600;
  line-height: 1.35;
}

.cta-section {
  padding: 1.8rem 5.5vw 3.2rem;
}

.cta-card {
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-visual {
  min-height: 170px;
  position: relative;
}

.small-horizon {
  position: absolute;
  top: 50%;
  left: -3.2rem;
  width: 120%;
  height: 1px;
  background: rgba(6, 27, 78, 0.25);
}

.small-sun {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  left: 46%;
  top: 25%;
  background:
    linear-gradient(to bottom, var(--yellow) 0 50%, var(--orange) 50% 100%);
  overflow: hidden;
}

.mail-circle {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(6, 27, 78, 0.13);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  position: absolute;
  left: 25%;
  top: 28%;
  font-size: 2.4rem;
  color: var(--navy);
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  margin-bottom: 0.6rem;
}

.cta-content p {
  color: var(--text-soft);
  font-size: 1.08rem;
  margin-bottom: 1.35rem;
}

.email-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.email-form input {
  min-height: 60px;
  border: 1px solid rgba(6, 27, 78, 0.22);
  border-radius: 8px;
  padding: 0 1.2rem;
  font: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: white;
}

.email-form input:focus {
  outline: 3px solid rgba(255, 130, 0, 0.16);
  border-color: var(--orange);
}

.email-form button {
  min-height: 60px;
  padding: 0 2rem;
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 28px rgba(6, 27, 78, 0.16);
}

.form-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.4rem;
}

.form-message.success {
  color: #1c7c42;
}

.form-message.error {
  color: #b42318;
}

.site-footer {
  padding: 2rem 5.5vw;
  border-top: 1px solid rgba(6, 27, 78, 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  color: var(--navy-soft);
}

.footer-logo {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.footer-info,
.footer-social {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  font-size: 0.95rem;
}

.footer-info {
  justify-content: center;
}

.footer-social span {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 980px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 1.2rem 5vw;
  }

  .logo img {
    width: clamp(120px, 34vw, 170px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 5vw 3rem;
    gap: 2.8rem;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(3rem, 10vw, 4.8rem);
    line-height: 1;
  }

  .hero-visual {
    min-height: 340px;
    width: 100%;
  }

  .sun-large {
    width: min(58vw, 280px);
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
  }

  .horizon-line {
    left: -5vw;
    right: -5vw;
    top: 48%;
  }

  .soft-glow {
    width: 320px;
    height: 120px;
    left: 50%;
    top: 47%;
    transform: translateX(-50%);
  }

  .ripple-one {
    width: 340px;
    height: 110px;
    left: 50%;
    top: 52%;
    transform: translateX(-50%) rotate(-8deg);
  }

  .ripple-two {
    width: 460px;
    height: 145px;
    left: 50%;
    top: 49%;
    transform: translateX(-50%) rotate(-8deg);
  }

  .ripple-three {
    width: 580px;
    height: 185px;
    left: 50%;
    top: 46%;
    transform: translateX(-50%) rotate(-8deg);
  }

  .cards-grid,
  .pill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    min-height: 130px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-info,
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: auto;
    padding: 1rem 5vw;
    align-items: center;
    gap: 1rem;
  }

  .logo img {
    width: 112px;
  }

  .nav {
    gap: 0.85rem;
    font-size: 0.78rem;
    justify-content: flex-end;
  }

  .nav a:not(.nav-button) {
    display: none;
  }

  .nav-button {
    padding: 0.72rem 0.95rem;
    border-radius: 8px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 3.2rem 5vw 2.6rem;
    gap: 2.4rem;
  }

  .eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .hero-description {
    margin-top: 1.4rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-note {
    margin-top: 1.25rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 1.8rem;
    gap: 1.2rem;
  }

  .button-primary {
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
  }

  .button-link {
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 260px;
    margin-top: 0.5rem;
  }

  .sun-large {
    width: min(48vw, 190px);
    top: 8%;
  }

  .horizon-line {
    top: 44%;
  }

  .soft-glow {
    width: 240px;
    height: 90px;
    top: 43%;
  }

  .ripple-one {
    width: 260px;
    height: 82px;
    top: 50%;
  }

  .ripple-two {
    width: 360px;
    height: 112px;
    top: 47%;
  }

  .ripple-three {
    width: 460px;
    height: 145px;
    top: 44%;
  }

  .section {
    padding: 1.8rem 5vw 2.8rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .section-heading span {
    display: none;
  }

  .section-heading h2 {
    font-size: 1.35rem;
  }

  .dot {
    margin-bottom: 1.7rem;
  }

  .cards-grid,
  .pill-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-card {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    padding: 1.6rem;
    min-height: auto;
  }

  .icon-circle {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .pill {
    min-height: 66px;
    padding: 1rem 1.1rem;
  }

  .cta-section {
    padding: 1.4rem 5vw 2.8rem;
  }

  .cta-card {
    padding: 1.5rem;
    gap: 1.4rem;
  }

  .cta-content h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 1.1;
  }

  .cta-content p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .email-form {
    grid-template-columns: 1fr;
  }

  .email-form input,
  .email-form button {
    width: 100%;
    min-height: 56px;
  }

  .site-footer {
    padding: 1.8rem 5vw;
    gap: 1.2rem;
  }

  .footer-logo img {
    width: 120px;
    margin: 0 auto;
  }

  .footer-info,
  .footer-social {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 0.95rem 4.5vw;
  }

  .hero {
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.2rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button-primary {
    width: auto;
  }

  .section,
  .cta-section {
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }
}