:root {
  --bg: #f8f6f1;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #17201b;
  --muted: #6e756f;
  --line: #e6e0d5;
  --green: #1d8d62;
  --green-dark: #0f5f43;
  --mint: #dff2e8;
  --amber: #d99122;
  --coral: #d95f4c;
  --plum: #6d506d;
  --shadow: 0 22px 70px rgba(25, 31, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 141, 98, 0.12), transparent 26rem),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  color: var(--muted);
  line-height: 1.7;
}

button {
  border: 0;
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(29, 141, 98, 0.28);
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0;
}

.brand small,
.site-footer p {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--mint);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero,
.section,
.legal-page,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 36px 0 72px;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(58px, 10vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.slogan {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 850;
  line-height: 1.05;
}

.hero-text {
  max-width: 620px;
  margin-top: 20px;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.phone-preview {
  display: grid;
  justify-items: center;
}

.phone-shell {
  width: min(100%, 370px);
  min-height: 690px;
  border: 10px solid #151817;
  border-radius: 42px;
  background: #f2eee6;
  padding: 18px;
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
}

.phone-icons {
  width: 42px;
  height: 12px;
  border-radius: 999px;
  background: #151817;
}

.app-card {
  border-radius: 26px;
  padding: 22px;
}

.app-card.dark {
  background: #18231f;
  color: #fff;
}

.app-card h2 {
  margin: 8px 0 8px;
  font-size: 30px;
  line-height: 1.05;
}

.app-card p {
  color: rgba(255, 255, 255, 0.76);
}

.label {
  color: #9de0bd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.ingredient-chip {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 18px;
  background: var(--surface);
  color: var(--green-dark);
  font-weight: 900;
}

.recipe-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  border-radius: 22px;
  background: var(--surface);
  padding: 12px;
}

.recipe-row strong {
  display: block;
  margin-bottom: 2px;
}

.recipe-row p {
  font-size: 13px;
}

.drink-visual {
  position: relative;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 20px;
}

.drink-visual.mojito {
  background: linear-gradient(135deg, #bfe7c8, #1d8d62);
}

.drink-visual.sour {
  background: linear-gradient(135deg, #f6cf79, #d95f4c);
}

.drink-visual::before,
.drink-visual::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
}

.drink-visual::before {
  top: 18px;
  width: 34px;
  height: 24px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: rgba(255, 255, 255, 0.65);
}

.drink-visual::after {
  bottom: 20px;
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 72px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.section h2,
.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.support-card,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 16px 42px rgba(25, 31, 27, 0.07);
}

.feature-card {
  min-height: 230px;
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.feature-card h3,
.support-card h2,
.legal-content h2 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.feature-card p,
.support-card p,
.legal-content p,
.legal-content li {
  font-size: 15px;
}

.responsibility {
  padding-bottom: 88px;
}

.responsibility > div {
  max-width: 780px;
  border-radius: 8px;
  background: #18231f;
  padding: 34px;
}

.responsibility h2,
.responsibility p {
  color: #fff;
}

.responsibility .eyebrow {
  color: #9de0bd;
}

.legal-page {
  padding: 42px 0 86px;
}

.page-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.page-hero p:last-child {
  margin-top: 14px;
  font-size: 17px;
}

.legal-content {
  max-width: 820px;
  padding: 34px;
}

.legal-content h2 {
  margin-top: 30px;
}

.legal-content h2:first-of-type {
  margin-top: 26px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content a,
.support-card a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.support-card {
  padding: 28px;
}

.support-card:first-child {
  grid-row: span 2;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin-top: 10px;
}

.email-link {
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 30px 0 42px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.site-footer a:hover {
  color: var(--green-dark);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }

  .phone-preview {
    justify-items: start;
  }

  .intro,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .support-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .legal-page,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
    padding: 14px;
  }

  .hero {
    gap: 34px;
    padding-bottom: 54px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-shell {
    min-height: 610px;
  }

  .section {
    padding: 52px 0;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 22px;
  }

  .legal-content,
  .support-card,
  .responsibility > div {
    padding: 24px;
  }

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

@media (max-width: 390px) {
  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 54px;
  }

  .slogan {
    font-size: 25px;
  }
}
