:root {
  --display-font: "Cooper Black", "Cooper Std Black", "Cooper Black Std", "Baloo 2", "Fredoka", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --body-font: "Arial Rounded MT Bold", "Nunito", "Trebuchet MS", Arial, sans-serif;
  --mustard: #f6b322;
  --mustard-deep: #eca118;
  --cream: #fff7e8;
  --cream-soft: #fffaf0;
  --cocoa: #27120e;
  --cocoa-soft: #533027;
  --tomato: #f25522;
  --tomato-dark: #d94318;
  --leaf: #4f8c2e;
  --leaf-light: #8fbe37;
  --plum: #6d3d8f;
  --line: rgba(39, 18, 14, 0.14);
  --shadow: 0 18px 42px rgba(69, 34, 20, 0.16);
  --shadow-soft: 0 10px 28px rgba(69, 34, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cocoa);
  background: var(--mustard);
  font-family: var(--body-font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

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

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

.site-header,
.site-footer,
.section-shell {
  width: calc(100% - 32px);
  max-width: 1120px;
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--cocoa);
  font-size: 1.35rem;
  font-weight: 1000;
  line-height: 1;
}

.brand-amp {
  color: var(--tomato);
}

.brand-o {
  position: relative;
  display: inline-block;
}

.brand-o::before,
.brand-o::after {
  content: "";
  position: absolute;
  bottom: 82%;
  width: 9px;
  height: 15px;
  border-radius: 9px 9px 2px 9px;
  background: var(--leaf);
  transform-origin: bottom center;
}

.brand-o::before {
  left: 2px;
  transform: rotate(-33deg);
}

.brand-o::after {
  right: -5px;
  background: var(--leaf-light);
  transform: rotate(29deg);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 247, 232, 0.55);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  gap: 26px;
  align-items: center;
  min-height: 760px;
  padding: 46px 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 2px solid rgba(242, 85, 34, 0.26);
  border-radius: 8px;
  color: var(--tomato-dark);
  background: rgba(255, 247, 232, 0.72);
  box-shadow: 0 8px 0 rgba(39, 18, 14, 0.06);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.tagline {
  margin: 0 0 10px;
  color: var(--cocoa-soft);
  font-size: 1rem;
  font-weight: 900;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
}

h1,
h2 {
  color: var(--cocoa);
  font-family: var(--display-font);
  font-kerning: normal;
  font-synthesis-weight: none;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  max-width: 10em;
  margin: 0 auto;
  font-size: 2rem;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.08;
}

.hero-text {
  max-width: 32ch;
  margin: 18px auto 0;
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin: 26px auto 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fffdf7;
  background: var(--tomato);
  box-shadow: 0 10px 0 var(--tomato-dark), var(--shadow-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff6330;
}

.button-secondary {
  color: var(--cocoa);
  background: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(39, 18, 14, 0.12), var(--shadow-soft);
}

.selection-note {
  margin: 20px auto 0;
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  width: 82vw;
  max-width: 360px;
  margin: 0 auto;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 4%;
  height: 24px;
  border-radius: 50%;
  background: rgba(57, 36, 25, 0.16);
  filter: blur(2px);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 18px rgba(80, 38, 18, 0.18));
}

.accent {
  position: absolute;
  pointer-events: none;
}

.herb {
  width: 34px;
  height: 14px;
}

.herb::before,
.herb::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 10px;
  border-radius: 12px 12px 2px 12px;
  background: var(--leaf);
}

.herb::after {
  left: 13px;
  background: var(--leaf-light);
  transform: rotate(55deg);
}

.herb-one {
  top: 13%;
  left: -6%;
  transform: rotate(-19deg);
}

.herb-two {
  right: -1%;
  bottom: 20%;
  transform: rotate(24deg);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 14px 12px 0 rgba(255, 247, 232, 0.88);
}

.dot-one {
  left: 8%;
  bottom: 12%;
}

.dot-two {
  right: 6%;
  top: 18%;
  background: var(--plum);
}

.waitlist,
.features,
.how,
.beta,
.faq {
  padding: 58px 0;
}

.faq {
  padding-top: 34px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 14px auto 0;
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.waitlist-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--cocoa);
  font-size: 0.95rem;
  font-weight: 1000;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 2px solid rgba(39, 18, 14, 0.16);
  border-radius: 8px;
  color: var(--cocoa);
  background: #fffdf7;
  font: inherit;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 96px;
  background-image: none;
}

.select-field {
  position: relative;
}

.select-field::before {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 2px;
  width: 54px;
  height: 46px;
  border-radius: 0 8px 8px 0;
  background: #fffdf7;
  pointer-events: none;
}

.select-field::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 23px;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--cocoa);
  border-bottom: 3px solid var(--cocoa);
  transform: rotate(45deg);
  pointer-events: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(242, 85, 34, 0.16);
  outline: none;
}

.select-field:focus-within::before {
  background: #fffdf7;
}

.beta-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.35;
}

.email-updates-check {
  margin-bottom: 18px;
}

.beta-check input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 1px;
  accent-color: var(--tomato);
}

.form-submit {
  width: 100%;
}

.form-privacy-note {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.form-message {
  min-height: 24px;
  margin: 18px 0 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.form-message.success {
  color: #2f6d2b;
}

.form-message.error {
  color: var(--tomato-dark);
}

.features,
.faq {
  width: 100%;
  max-width: none;
  background: var(--cream-soft);
}

.features > *,
.faq > * {
  width: calc(100% - 32px);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.steps article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.feature-card p,
.beta p,
.faq p {
  margin: 0;
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

.card-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: inset 0 0 0 2px rgba(39, 18, 14, 0.1);
}

.card-mark::before,
.card-mark::after {
  content: "";
  position: absolute;
}

.card-mark.save::before {
  width: 18px;
  height: 24px;
  border: 3px solid var(--tomato);
  border-top-width: 8px;
  border-radius: 4px;
}

.card-mark.plan::before {
  width: 23px;
  height: 23px;
  border: 3px solid var(--leaf);
  border-radius: 5px;
}

.card-mark.plan::after {
  width: 18px;
  height: 3px;
  background: var(--leaf);
  box-shadow: 0 7px 0 var(--leaf), 0 14px 0 var(--leaf);
}

.card-mark.ask::before {
  width: 25px;
  height: 18px;
  border: 3px solid var(--plum);
  border-radius: 8px;
}

.card-mark.ask::after {
  bottom: 10px;
  right: 10px;
  border-top: 8px solid var(--plum);
  border-left: 8px solid transparent;
}

.card-mark.scan::before {
  width: 26px;
  height: 26px;
  border: 3px solid var(--tomato);
  border-radius: 6px;
}

.card-mark.scan::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--leaf-light);
}

.card-mark.label::before {
  width: 24px;
  height: 19px;
  border-radius: 5px;
  background: var(--leaf);
  transform: rotate(-8deg);
}

.card-mark.label::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  transform: translate(5px, -3px);
}

.card-mark.school::before {
  width: 24px;
  height: 18px;
  border-radius: 12px 12px 5px 5px;
  background: var(--cream);
  box-shadow: inset 0 0 0 3px var(--cocoa);
}

.card-mark.school::after {
  width: 22px;
  height: 12px;
  bottom: 8px;
  border-radius: 4px;
  background: var(--cocoa);
}

.card-mark.swipe::before {
  width: 17px;
  height: 24px;
  border-radius: 5px;
  background: var(--tomato);
  transform: rotate(-11deg) translateX(-5px);
}

.card-mark.swipe::after {
  width: 17px;
  height: 24px;
  border-radius: 5px;
  background: var(--leaf);
  transform: rotate(11deg) translateX(7px);
}

.card-mark.follow::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--plum);
  box-shadow: -10px 14px 0 var(--tomato), 10px 14px 0 var(--leaf);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fffdf7;
  background: var(--cocoa);
  font-size: 1.12rem;
  font-weight: 1000;
}

.beta {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 70px;
  padding: 34px 18px;
  border: 1px solid rgba(39, 18, 14, 0.12);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.beta .eyebrow {
  margin-bottom: 12px;
}

.beta h2 {
  margin-bottom: 14px;
}

.beta .button {
  width: 100%;
}

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

.faq details {
  padding: 0;
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  font-size: 1.02rem;
  font-weight: 1000;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-right: 3px solid var(--tomato);
  border-bottom: 3px solid var(--tomato);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(225deg);
}

.faq details p {
  padding: 0 18px 18px;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 38px 0 42px;
}

.site-footer p {
  max-width: 420px;
  margin: 10px 0 0;
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.4;
}

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

.site-footer nav a {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.7);
  font-weight: 900;
}

.content-page {
  padding: 44px 0 58px;
}

.content-hero {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.content-hero h1 {
  max-width: 10em;
}

.content-hero p {
  max-width: 32ch;
  margin: 16px auto 0;
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.55;
}

.content-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.content-card section + section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.content-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.content-card p,
.content-card li {
  color: var(--cocoa-soft);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.58;
}

.content-card p {
  margin: 0;
}

.content-card p + p,
.content-card ul {
  margin-top: 12px;
}

.content-card ul {
  padding-left: 20px;
}

.content-card a {
  color: var(--tomato-dark);
  font-weight: 1000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form textarea,
.contact-form input {
  width: 100%;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.content-card .button {
  text-decoration: none;
}

.content-card .button-primary,
.content-card .button-primary:hover,
.content-card .button-primary:focus-visible {
  color: #fffdf7;
}

@media (min-width: 620px) {
  .nav-links {
    display: flex;
  }

  h1 {
    max-width: 740px;
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 530px;
  }

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

  .waitlist-form {
    padding: 24px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .beta {
    grid-template-columns: 1fr auto;
    padding: 40px;
  }

  .beta .button {
    width: auto;
    min-width: 230px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .content-card {
    padding: 34px;
  }

  .content-hero h1 {
    max-width: 760px;
  }

  .content-hero p {
    max-width: 680px;
  }

  .content-card h2 {
    font-size: 1.72rem;
  }

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

  .contact-form label:last-of-type {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding-top: 24px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
    min-height: 700px;
    padding: 68px 0 78px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy .eyebrow,
  .hero-copy .tagline,
  .hero-copy h1,
  .hero-copy .hero-text,
  .hero-actions,
  .selection-note {
    margin-left: 0;
    margin-right: 0;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-text {
    max-width: 650px;
  }

  .hero-visual {
    width: 36vw;
    max-width: 440px;
  }

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

}

@media (max-width: 380px) {
  .site-header,
  .site-footer,
  .section-shell,
  .features > *,
  .faq > * {
    width: calc(100% - 22px);
  }

  .brand {
    font-size: 1.12rem;
  }

  h1 {
    font-size: 1.88rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .button {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
