:root {
  color-scheme: light;
  --ink: #111c22;
  --muted: #5e6f76;
  --surface: #ffffff;
  --background: #f4faf7;
  --green: #008a61;
  --green-dark: #044b38;
  --sky: #2478d1;
  --gold: #db920d;
  --coral: #df4238;
  --line: rgba(17, 28, 34, 0.14);
  --shadow: 0 24px 70px rgba(17, 28, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--background);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(7, 17, 18, 0.4);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.solid {
  color: var(--ink);
  background: rgba(244, 250, 247, 0.9);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  border-radius: 8px;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header a,
.site-footer a {
  text-decoration: none;
}

.site-header nav a {
  opacity: 0.9;
}

.site-header nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: #081211;
}

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

.hero-image {
  object-fit: cover;
  object-position: 50% 28%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 9, 0.86) 0%, rgba(3, 10, 9, 0.62) 38%, rgba(3, 10, 9, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 10, 9, 0.86) 0%, rgba(3, 10, 9, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 120px clamp(20px, 5vw, 72px) 58px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9df0c7;
}

.eyebrow.dark {
  color: var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.3rem, 15vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.2;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.availability {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.intro-band {
  padding: clamp(24px, 4vw, 42px) clamp(20px, 5vw, 72px);
  background: var(--green-dark);
  color: #ffffff;
}

.intro-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.intro-grid p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

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

.stat-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.stat-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.payment-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #d9f4e8;
}

.phone-showcase {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(350px, 100%);
  aspect-ratio: 393 / 730;
  padding: 10px;
  border-radius: 54px;
  background:
    linear-gradient(145deg, #26343b 0%, #0f1b20 44%, #060c0f 100%);
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 50%;
  width: 104px;
  height: 28px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #071115;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.phone-screen {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  height: 100%;
  overflow: hidden;
  border-radius: 44px;
  background: #f6fbf8;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 104px;
  padding: 58px 18px 14px;
  color: var(--ink);
  font-weight: 950;
}

.app-top strong {
  color: var(--green);
  font-size: 0.74rem;
  padding: 6px 8px;
  border-radius: 999px;
  background: #ddf7ea;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.app-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-weight: 900;
  background: #ffffff;
}

.app-panel strong {
  color: var(--sky);
}

.app-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  background: #ffffff;
}

.full {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto clamp(28px, 4vw, 46px);
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article,
.payment-details div,
.policy-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.feature-grid article p,
.payment-details p,
.policy-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-mark {
  display: inline-flex;
  margin-bottom: 38px;
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-mark.green {
  color: var(--green);
}

.feature-mark.sky {
  color: var(--sky);
}

.feature-mark.gold {
  color: var(--gold);
}

.feature-mark.coral {
  color: var(--coral);
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.payment-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: #111c22;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.legal-page {
  background: #ffffff;
}

.legal-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 72px;
}

.legal-shell h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  line-height: 0.94;
}

.legal-shell section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-shell section:first-of-type {
  margin-top: 38px;
}

.legal-shell h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-shell p {
  color: var(--muted);
}

.updated {
  color: var(--muted);
  font-weight: 800;
}

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

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 40px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 10, 9, 0.9) 0%, rgba(3, 10, 9, 0.24) 62%),
      rgba(3, 10, 9, 0.2);
  }

  .intro-grid,
  .split,
  .payment-section,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, 1180px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(330px, 100%);
  }

  .site-footer {
    flex-direction: column;
  }
}
