:root {
  color-scheme: light;
  --canvas: #f4f1e8;
  --cream: #fffdf8;
  --sand: #f6e8cf;
  --ink: #183128;
  --muted: #617066;
  --forest: #1e5b45;
  --forest-dark: #123b2d;
  --moss: #79966c;
  --amber: #d8923a;
  --line: #d9d4c7;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(18, 59, 45, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
  border-radius: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest-dark);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(244, 241, 232, 0.94);
  border-bottom: 1px solid rgba(217, 212, 199, 0.72);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-dark);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.primary-nav,
.footer-main nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a,
.footer-main nav a {
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.store-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--forest-dark);
  border-radius: 9px;
  font-weight: 680;
  line-height: 1.2;
}

.store-status svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.store-status--header {
  min-height: 46px;
  padding: 9px 14px;
  font-size: 0.86rem;
}

.store-status--primary {
  min-height: 58px;
  padding: 15px 20px;
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 12px 25px rgba(30, 91, 69, 0.18);
}

.store-status--primary svg {
  width: 25px;
  height: 25px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  background: var(--canvas);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  min-height: 690px;
  padding-block: 70px 110px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1,
.section h2,
.privacy-band h2,
.support-cta h2,
.legal-hero h1 {
  margin: 0;
  color: var(--forest-dark);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(4.2rem, 7vw, 6.7rem);
}

.hero h1 span {
  color: var(--amber);
}

.hero-copy > p {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 690;
  text-decoration: underline;
}

.text-link span {
  font-size: 1.35em;
  line-height: 1;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-contours {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 66vw;
  height: 100%;
  color: rgba(216, 146, 58, 0.17);
  pointer-events: none;
}

.hero-contours svg {
  width: 100%;
  height: 100%;
}

.product-stage {
  position: relative;
  min-height: 570px;
  transform: translateX(4%);
}

.phone {
  position: absolute;
  overflow: hidden;
  width: clamp(250px, 20vw, 305px);
  aspect-ratio: 430 / 932;
  padding: 10px;
  border: 2px solid #0e1412;
  border-radius: 45px;
  background: #121715;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  width: 34%;
  height: 22px;
  border-radius: 999px;
  background: #070b09;
  transform: translateX(-50%);
}

.phone--home {
  z-index: 2;
  top: 5px;
  left: 13%;
  transform: rotate(-2deg);
}

.phone--map {
  z-index: 1;
  top: 32px;
  left: 49%;
  transform: rotate(6deg);
}

.forest-floor {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88px;
  background:
    linear-gradient(175deg, transparent 0 28%, rgba(18, 59, 45, 0.13) 29% 34%, transparent 35%),
    linear-gradient(183deg, transparent 0 44%, #284c39 45% 59%, #193628 60%);
}

.mushroom,
.mushroom::before,
.needle,
.pinecone {
  position: absolute;
  display: block;
}

.mushroom {
  bottom: 35px;
  width: 12px;
  height: 33px;
  border-radius: 4px;
  background: var(--sand);
}

.mushroom::before {
  content: "";
  bottom: 24px;
  left: 50%;
  width: 58px;
  height: 24px;
  border-radius: 55% 55% 32% 32%;
  background: var(--amber);
  transform: translateX(-50%);
}

.mushroom--small {
  left: 6%;
  transform: scale(0.72);
}

.mushroom--large {
  left: 12%;
}

.needle {
  bottom: 29px;
  width: 94px;
  height: 2px;
  background: #b18354;
  transform-origin: left;
}

.needle--one {
  left: 18%;
  transform: rotate(13deg);
}

.needle--two {
  left: 23%;
  transform: rotate(-8deg);
}

.pinecone {
  right: 14%;
  bottom: 27px;
  width: 27px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 35%, #573d27 36% 48%, transparent 49%) 0 0 / 12px 12px,
    #8a6542;
  transform: rotate(-19deg);
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.section h2,
.privacy-band h2,
.support-cta h2 {
  font-size: clamp(2.55rem, 4.8vw, 4.3rem);
  line-height: 1.04;
}

.features {
  background: var(--cream);
}

.features h2 {
  max-width: 760px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 6vw, 82px);
  margin-top: 74px;
}

.feature {
  max-width: 330px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 30px;
  color: var(--forest-dark);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.feature-icon .accent {
  color: var(--amber);
  stroke: var(--amber);
  stroke-width: 3;
}

.feature h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.feature-rule {
  display: block;
  width: 44px;
  height: 4px;
  margin: 18px 0 21px;
  background: var(--amber);
}

.feature p,
.safety-copy p,
.support-cta p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.feature p {
  margin: 0;
}

.privacy-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(82px, 9vw, 128px);
  background: var(--forest-dark);
  color: var(--white);
}

.privacy-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  color: rgba(216, 146, 58, 0.22);
}

.privacy-lines svg {
  width: 100%;
  height: 100%;
}

.privacy-inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 760px);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
}

.privacy-mark {
  width: 150px;
  height: 150px;
  color: var(--sand);
}

.privacy-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.privacy-band h2 {
  color: var(--white);
}

.privacy-band p {
  max-width: 780px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.text-link--light {
  color: #f1b54c;
}

.safety {
  background: var(--canvas);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.safety-copy p {
  max-width: 500px;
  margin: 0;
  font-size: 1.08rem;
}

.field-notebook {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 350px;
  transform: rotate(1.3deg);
  filter: drop-shadow(0 24px 30px rgba(24, 49, 40, 0.16));
}

.notebook-page {
  min-height: 350px;
  padding: 34px;
  border: 1px solid #b8ad96;
  background:
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(97, 112, 102, 0.1) 28px),
    #fffdf5;
}

.notebook-page--left {
  border-radius: 16px 5px 5px 16px;
  box-shadow: inset -12px 0 18px rgba(40, 32, 18, 0.07);
}

.notebook-page--right {
  border-radius: 5px 16px 16px 5px;
  box-shadow: inset 12px 0 18px rgba(40, 32, 18, 0.07);
}

.notebook-page p {
  position: absolute;
  bottom: 38px;
  left: 34px;
  margin: 0;
  color: #3f5148;
  font-family: ui-rounded, "Segoe Print", "Bradley Hand", cursive;
  font-size: 0.95rem;
  line-height: 1.75;
}

.specimen {
  position: relative;
  width: 150px;
  height: 155px;
  margin: 0 auto;
  border: 10px solid var(--white);
  background: linear-gradient(#b8c9a5, #536d4e);
  box-shadow: 0 5px 12px rgba(24, 49, 40, 0.18);
  transform: rotate(-2deg);
}

.specimen-cap,
.specimen-stem {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}

.specimen-cap {
  top: 40px;
  width: 87px;
  height: 38px;
  border-radius: 55% 55% 24% 24%;
  background: var(--amber);
}

.specimen-stem {
  top: 74px;
  width: 23px;
  height: 56px;
  background: #f1dfb7;
}

.notebook-page--right {
  display: flex;
  align-items: center;
}

.notebook-page--right svg {
  width: 100%;
  color: rgba(30, 91, 69, 0.28);
}

.notebook-page--right .route {
  fill: none;
  stroke: var(--forest);
  stroke-dasharray: 6 6;
  stroke-width: 3;
}

.notebook-page--right .pin {
  fill: var(--amber);
  stroke: var(--white);
  stroke-width: 4;
}

.support-cta {
  padding-block: 60px;
  background: var(--forest);
  color: var(--white);
}

.support-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.support-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.support-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 720;
  text-decoration: none;
}

.button--light {
  flex: 0 0 auto;
  background: var(--cream);
  color: var(--forest-dark);
}

.site-footer {
  padding-block: 42px 34px;
  background: var(--cream);
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-main {
  padding-bottom: 30px;
}

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--forest-dark);
}

.legal-hero {
  padding-block: 92px 72px;
  background: var(--forest-dark);
  color: var(--white);
}

.legal-hero .breadcrumb {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5rem);
}

.legal-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.legal-content {
  max-width: 820px;
  padding-block: 76px 110px;
}

.legal-content h2 {
  margin: 2.8em 0 0.6em;
  color: var(--forest-dark);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 2em 0 0.45em;
  color: var(--forest-dark);
  font-size: 1.22rem;
}

.legal-content p,
.legal-content li {
  max-width: 74ch;
}

.legal-content a {
  color: var(--forest);
  font-weight: 650;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35em;
}

.legal-content li + li {
  margin-top: 0.65em;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.support-contact {
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.support-contact h2 {
  margin-top: 0;
}

.support-contact dl {
  margin: 0;
}

.support-contact dt {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-contact dd {
  margin: 4px 0 0;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--forest-dark);
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--amber);
  font-size: 1.55rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: -6px 0 24px;
}

@media (max-width: 1040px) {
  .store-status--header {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7vw, 5.3rem);
  }

  .product-stage {
    transform: translateX(0);
  }

  .phone {
    width: clamp(215px, 24vw, 265px);
  }

  .phone--home {
    left: 6%;
  }

  .phone--map {
    left: 44%;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .header-inner {
    min-height: 76px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a:nth-child(-n + 3) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: block;
    min-height: auto;
    padding-block: 70px 90px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 15vw, 5.6rem);
  }

  .hero-copy > p {
    max-width: 580px;
  }

  .product-stage {
    min-height: 570px;
    margin-top: 65px;
  }

  .phone {
    width: min(43vw, 280px);
  }

  .phone--home {
    left: 8%;
  }

  .phone--map {
    left: 48%;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .feature {
    display: grid;
    grid-template-columns: 78px 1fr;
    column-gap: 26px;
    max-width: 620px;
  }

  .feature-icon {
    grid-row: 1 / span 3;
    margin-bottom: 0;
  }

  .feature-rule {
    margin-block: 15px;
  }

  .privacy-inner,
  .safety-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .privacy-inner {
    gap: 28px;
  }

  .privacy-mark {
    width: 112px;
    height: 112px;
  }

  .safety-grid {
    gap: 60px;
  }

  .field-notebook {
    min-height: 300px;
  }

  .notebook-page {
    min-height: 300px;
    padding: 26px;
  }

  .specimen {
    width: 120px;
    height: 128px;
  }

  .specimen-cap {
    top: 34px;
  }

  .specimen-stem {
    top: 68px;
    height: 45px;
  }

  .notebook-page p {
    bottom: 26px;
    left: 26px;
    font-size: 0.8rem;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .primary-nav a {
    font-size: 0.9rem;
  }

  .hero-grid {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.5rem);
  }

  .hero-copy > p {
    margin-top: 22px;
    font-size: 1.15rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .store-status--primary {
    width: 100%;
  }

  .product-stage {
    min-height: 470px;
    margin-top: 48px;
  }

  .phone {
    width: 49vw;
    max-width: 215px;
    padding: 7px;
    border-radius: 34px;
  }

  .phone img {
    border-radius: 27px;
  }

  .phone-speaker {
    top: 13px;
    height: 16px;
  }

  .phone--home {
    left: 2%;
  }

  .phone--map {
    left: 45%;
  }

  .forest-floor {
    height: 64px;
  }

  .section {
    padding-block: 78px;
  }

  .section h2,
  .privacy-band h2 {
    font-size: 2.55rem;
  }

  .feature-list {
    margin-top: 54px;
  }

  .feature {
    grid-template-columns: 60px 1fr;
    column-gap: 18px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
  }

  .privacy-band {
    padding-block: 74px;
  }

  .field-notebook {
    transform: none;
  }

  .notebook-page {
    min-height: 245px;
    padding: 18px;
  }

  .notebook-page p {
    display: none;
  }

  .specimen {
    width: 95px;
    height: 110px;
    border-width: 7px;
  }

  .specimen-cap {
    top: 30px;
    width: 64px;
    height: 28px;
  }

  .specimen-stem {
    top: 55px;
    width: 18px;
    height: 40px;
  }

  .support-cta-inner,
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

  .footer-legal {
    flex-direction: column;
    gap: 11px;
  }

  .legal-hero {
    padding-block: 68px 54px;
  }

  .legal-content {
    padding-block: 54px 82px;
  }

  .support-contact {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
