:root {
  --cream: #fff4df;
  --ink: #2b2520;
  --terracotta: #bd634d;
  --rose: #d99592;
  --sage: #8fae8c;
  --gold: #e3aa3e;
  --sky: #b7d5df;
  --paper: #fffaf0;
  --shadow: #2b2520;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito Sans", system-ui, sans-serif;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 1.02fr);
  gap: 68px;
  align-items: center;
  padding: 64px 0 56px;
}

.copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  color: var(--terracotta);
}

h1 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(72px, 11vw, 142px);
  line-height: 0.86;
  letter-spacing: 0;
}

.dek {
  margin: 30px 0 26px;
  font-size: 22px;
  line-height: 1.48;
  max-width: 36rem;
}

.helper {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.45;
  max-width: 33rem;
  font-weight: 800;
}

.proof-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 16px 18px;
  max-width: 34rem;
  list-style: none;
  border: 2px solid rgba(43, 37, 32, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
}

.proof-points li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.proof-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--shadow);
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease;
}

.cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 5px 5px 0 var(--shadow);
}

.section-cta {
  margin-top: 30px;
}

.trial {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.45;
  max-width: 30rem;
  color: #4d4035;
}

.legal-consent {
  margin: 16px 0 0;
  max-width: 34rem;
  font-size: 12px;
  line-height: 1.45;
  color: #5a4a3d;
}

.legal-consent a {
  color: var(--ink);
  font-weight: 900;
}

.art {
  position: relative;
  min-height: 590px;
  overflow: visible;
}

.sun,
.phone,
.leaf {
  position: absolute;
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--shadow);
}

.sun {
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: var(--gold);
  top: 6px;
  right: 42px;
}

.phone {
  width: min(382px, 74vw);
  height: 494px;
  border-radius: 38px;
  background: var(--sage);
  left: 46px;
  bottom: 22px;
  padding: 88px 30px 0;
  transform: rotate(-3deg);
  overflow: visible;
  z-index: 2;
}

.phone::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: 94px;
  height: 12px;
  border-radius: 99px;
  background: var(--ink);
  transform: translateX(-50%);
}

.bubble {
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 15px 16px;
  line-height: 1.35;
  font-weight: 700;
  box-shadow: 5px 5px 0 var(--shadow);
  position: relative;
  z-index: 2;
}

.one {
  background: var(--cream);
  margin-left: 18px;
  margin-right: 20px;
  font-size: 15px;
  white-space: normal;
}

.two {
  background: var(--rose);
  margin: 20px 30px 0 66px;
}

.three {
  background: var(--sky);
  margin: 20px 4px 0 26px;
  font-size: 15px;
}

.leaf {
  width: 96px;
  height: 150px;
  border-radius: 80px 8px 80px 8px;
  background: var(--terracotta);
}

.left {
  left: 0;
  top: 94px;
  transform: rotate(-28deg);
  z-index: 1;
}

.right {
  right: 4px;
  bottom: 92px;
  background: var(--rose);
  transform: rotate(32deg);
  z-index: 3;
}

.section {
  padding: 56px 0;
  border-top: 3px solid var(--ink);
}

.rhythm {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: 34px;
  align-items: start;
}

.how {
  padding-bottom: 58px;
}

.section-copy {
  max-width: 560px;
}

h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #4f4338;
}

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

.panel,
.step {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--shadow);
}

.panel {
  min-height: 250px;
  padding: 22px;
}

.panel:nth-child(1) {
  background: var(--sky);
}

.panel:nth-child(2) {
  background: var(--gold);
}

.panel:nth-child(3) {
  background: var(--sage);
}

.panel span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 13px;
  font-weight: 900;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.panel p,
.step p,
.safety-note {
  margin: 0;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.step {
  min-height: 186px;
  padding: 20px;
  background: #fff7e9;
}

.step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-weight: 900;
}

.safety-note {
  max-width: 760px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--terracotta);
  background: rgba(255, 250, 240, 0.72);
  font-weight: 800;
}

footer {
  min-height: 74px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-top: 3px solid var(--ink);
  background: #f8d9bf;
  font-size: 14px;
}

footer a {
  color: var(--ink);
  font-weight: 700;
}

.legal {
  max-width: 900px;
  padding: 52px 0 64px;
}

.legal-hero {
  padding-bottom: 28px;
}

.legal h1 {
  font-size: clamp(64px, 10vw, 112px);
}

.legal h2 {
  margin: 34px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.62;
}

.legal ul {
  margin: 0;
  padding-left: 22px;
}

.legal li + li {
  margin-top: 8px;
}

.legal a {
  color: var(--ink);
  font-weight: 900;
}

.legal-updated {
  margin: 16px 0 24px;
  font-weight: 900;
  color: #5a4a3d;
}

.legal-callout {
  padding: 18px 20px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--shadow);
  font-weight: 800;
}

.consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(390px, calc(100vw - 36px));
  padding: 16px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--shadow);
}

.consent p {
  margin: 0 0 12px;
}

.consent div {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

button {
  min-height: 40px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

#accept {
  background: var(--gold);
}

[hidden] {
  display: none !important;
}

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

  .rhythm,
  .panel-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 34px 0;
  }

  .art {
    order: 2;
    min-height: 330px;
  }

  .copy {
    order: 1;
  }

  .phone {
    left: 22px;
    bottom: 8px;
    height: 304px;
    width: min(302px, calc(100vw - 66px));
    padding: 64px 22px 0;
  }

  .bubble {
    padding: 10px;
    font-size: 13px;
  }

  .one {
    margin-left: 26px;
    margin-right: 8px;
    white-space: normal;
  }

  .two {
    margin: 14px 18px 0 48px;
  }

  .three {
    margin: 14px 24px 0 22px;
  }

  .sun {
    width: 116px;
    height: 116px;
    right: 18px;
  }

  .leaf {
    width: 58px;
    height: 88px;
  }

  .right {
    right: -2px;
    bottom: 54px;
  }
}
