:root {
  --navy: #0c2e33;
  --teal: #2fb4ac;
  --deep-teal: #117a72;
  --mist: #e8f4f2;
  --paper: #fbfcfb;
  --ink-soft: #587077;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family:
    "Arial Narrow",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

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

.wrap,
.header,
.proof,
footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 20px;
  background: #08272b;
  color: #dff4f1;
  font-size: 13px;
  font-weight: 800;
}

.topbar a {
  border-bottom: 1px solid var(--teal);
  color: var(--teal);
}

.header {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  width: 178px;
  display: block;
}

.logo span {
  display: block;
  margin-top: 10px;
  color: #9badad;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 65% 50%, rgba(47, 180, 172, 0.17), transparent 34%),
    var(--navy);
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 80px;
  align-items: center;
  min-height: 650px;
  padding: 70px 0;
}

.pill,
.eyebrow,
.cards article span {
  display: inline-flex;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pill {
  padding: 11px 18px;
  border: 1px solid rgba(47, 180, 172, 0.5);
  border-radius: 999px;
}

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

h1 {
  max-width: 580px;
  margin: 32px 0 24px;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 30px;
  line-height: 1.05;
}

.hero-copy p,
.intro p,
.reality p,
.waitlist p,
.proof p,
.cards p {
  color: var(--ink-soft);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

.hero-copy p {
  max-width: 560px;
  color: #c7d9d7;
  font-size: 19px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary,
.secondary,
button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-weight: 900;
}

.primary,
button {
  background: var(--teal);
  color: white;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--teal), var(--deep-teal));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.waves {
  position: absolute;
  right: -12px;
  bottom: 22px;
  width: 220px;
  opacity: 0.32;
}

.bottle {
  position: relative;
  z-index: 1;
  width: min(62%, 280px);
  filter: drop-shadow(0 32px 28px rgba(3, 31, 35, 0.35));
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 32px 0;
}

.proof article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 16px;
}

.proof article span {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--deep-teal);
  box-shadow: inset 0 0 0 5px var(--teal);
}

.proof h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.proof p {
  grid-column: 2;
  font-size: 14px;
}

.platform {
  padding: 92px 0;
  border-top: 1px solid #dce8e7;
}

.intro {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cards article {
  min-height: 240px;
  padding: 34px;
  border: 1px solid #d8e8e6;
  border-radius: 12px;
  background: white;
}

.reality {
  padding: 92px 0;
  background: var(--mist);
}

.reality-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
}

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

li {
  padding: 16px 18px;
  border: 1px solid #c7ddda;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.waitlist {
  padding: 92px 0;
  background: var(--deep-teal);
  color: white;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.waitlist p {
  color: #d9f4f0;
}

.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

input {
  min-height: 58px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
}

button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

footer {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #06282c;
  color: #bdd3d1;
}

footer img {
  width: 150px;
}

@media (max-width: 760px) {
  .wrap,
  .header,
  .proof,
  footer {
    width: min(100% - 32px, 520px);
  }

  .topbar,
  .header,
  nav,
  .actions,
  footer {
    flex-direction: column;
  }

  .header {
    align-items: flex-start;
    padding: 24px 0;
  }

  nav {
    gap: 14px;
  }

  .hero-grid,
  .proof,
  .cards,
  .reality-grid,
  .waitlist-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    min-height: 0;
    padding: 48px 0 56px;
  }

  h1 {
    font-size: 56px;
  }

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

  .proof {
    gap: 18px;
  }

  .platform,
  .reality,
  .waitlist {
    padding: 64px 0;
  }

  footer {
    align-items: flex-start;
    padding: 34px 0;
  }
}
