:root {
  --paper: #f7f1e5;
  --paper-deep: #e9dfcd;
  --ink: #25362f;
  --ink-soft: #5d665f;
  --coral: #ef6d4d;
  --coral-deep: #d9573b;
  --butter: #edc94b;
  --sky: #a9d4e5;
  --leaf: #9bb885;
  --white: #fffdf8;
  --line: rgba(37, 54, 47, 0.23);
  --radius: 28px;
  --radius-sm: 16px;
  --sans: "DM Sans", system-ui, sans-serif;
  --hand: "Gaegu", "Comic Sans MS", cursive;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --shadow: 0 24px 70px rgba(60, 53, 38, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(rgba(49, 49, 32, .045) .7px, transparent .7px) 0 0 / 6px 6px,
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 16px;
  background: var(--ink); color: white; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--butter); outline-offset: 4px; }

.announcement {
  min-height: 36px; display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 8px 24px; background: var(--ink); color: var(--white);
  font-size: 12px; letter-spacing: .04em;
}
.announcement span:first-child { opacity: .72; }
.announcement a { font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.4); }

.site-header {
  height: 88px; padding: 0 clamp(22px, 4vw, 70px); display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; position: relative; z-index: 20;
  border-bottom: 1px solid var(--line); background: rgba(247, 241, 229, .88);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 8px; width: fit-content; }
.brand span { font-size: 27px; letter-spacing: -.06em; font-weight: 700; }
.brand-mark { width: 39px; height: 32px; overflow: visible; }
.brand-mark path {
  fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.brand-mark path:first-child { fill: var(--coral); stroke: var(--ink); }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.primary-nav a { font-size: 13px; font-weight: 600; position: relative; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px;
  height: 2px; background: var(--coral); transition: right .25s var(--ease);
}
.primary-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 13px; }
.language-picker {
  min-height: 40px; display: inline-flex; align-items: center; gap: 5px;
  padding: 0 9px 0 11px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255, 253, 248, .58); transition: border-color .2s, background .2s;
}
.language-picker:hover, .language-picker:focus-within { border-color: var(--ink); background: var(--white); }
.language-icon { font-size: 18px; line-height: 1; transform: rotate(-12deg); }
.language-picker select {
  width: 69px; min-height: 38px; padding: 0 18px 0 3px; color: var(--ink);
  border: 0; outline: 0; background: transparent; font: 700 11px var(--sans);
  cursor: pointer; appearance: auto;
}
.language-picker select option { color: var(--ink); background: var(--paper); }
.header-cta {
  padding: 12px 18px; color: var(--white); background: var(--coral);
  border: 1.5px solid var(--ink); border-radius: 50px; font-size: 13px; font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.header-cta:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100svh - 124px); position: relative; overflow: hidden;
  display: grid; align-items: end; padding: clamp(30px, 5vw, 74px);
}
.hero-media { position: absolute; inset: 0; background: #bbdbe1; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(29,39,34,.72) 0, rgba(29,39,34,.32) 42%, transparent 69%),
              linear-gradient(0deg, rgba(29,39,34,.25), transparent 42%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-copy { position: relative; z-index: 2; color: white; max-width: 760px; padding-bottom: 5vh; }
.eyebrow {
  display: flex; align-items: center; gap: 9px; margin: 0 0 22px;
  text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700;
}
.scribble-star { color: var(--butter); font-size: 21px; animation: spin 10s linear infinite; }
.hero h1, .story h2, .feature-intro h2, .product h2, .faq h2, .waitlist h2 {
  margin: 0; font-size: clamp(48px, 7.4vw, 112px); letter-spacing: -.065em;
  line-height: .88; font-weight: 600;
}
h1 em, h2 em {
  font-family: var(--hand); font-weight: 700; letter-spacing: -.045em; color: var(--butter); font-style: normal;
}
.hero-lede {
  max-width: 590px; margin: 30px 0 0; font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55; color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; gap: 22px; min-height: 54px;
  padding: 0 10px 0 24px; border-radius: 999px; font-size: 14px; font-weight: 700;
}
.button-primary { background: var(--coral); color: white; border: 1.5px solid white; }
.button-dot {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  color: var(--coral); background: white; font-size: 25px; line-height: 1;
}
.text-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.hero-note {
  position: absolute; z-index: 2; top: 15%; right: 5%; color: white;
  display: flex; align-items: center; transform: rotate(-5deg); font: 700 22px/1.05 var(--hand);
}
.hero-note svg { width: 86px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; }
.hero-tag {
  position: absolute; z-index: 2; right: 5%; bottom: 7%; display: flex; gap: 9px;
  align-items: center; padding: 10px 15px; border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px; background: rgba(32, 46, 39, .45); backdrop-filter: blur(8px);
  color: white; font-size: 11px; text-transform: uppercase; letter-spacing: .13em;
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: #d6f28f; box-shadow: 0 0 0 5px rgba(214,242,143,.16); }

.section-pad { padding: clamp(90px, 11vw, 180px) clamp(24px, 6vw, 96px); }
.section-kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--coral-deep); }

.shop { background: var(--white); border-bottom: 1px solid var(--line); }
.shop-heading {
  display: grid; grid-template-columns: .55fr 1.2fr .65fr; gap: 5vw;
  align-items: end; margin-bottom: clamp(55px, 7vw, 90px);
}
.shop-heading .section-kicker { align-self: start; }
.shop h2 {
  margin: 0; font-size: clamp(48px, 6vw, 88px); line-height: .9;
  letter-spacing: -.065em;
}
.shop h2 em { color: var(--coral); }
.shop-heading > p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.product-entry {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  min-height: 560px; overflow: hidden; border: 1.5px solid var(--ink);
  border-radius: var(--radius); background: var(--paper); box-shadow: 7px 7px 0 var(--ink);
}
.product-entry-photo { min-height: 560px; margin: 0; position: relative; overflow: hidden; }
.product-entry-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.product-entry-photo::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(29,39,34,.42));
}
.product-entry-photo figcaption {
  position: absolute; z-index: 1; left: 24px; bottom: 22px; color: white;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.product-entry-copy {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: clamp(40px, 6vw, 86px);
}
.product-entry-copy h3 {
  margin: 0 0 24px; font-size: clamp(48px, 6vw, 82px); letter-spacing: -.075em; line-height: .92;
}
.product-entry-copy p { margin: 0 0 34px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.shop-layout {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: clamp(40px, 7vw, 110px); align-items: start;
}
.shop-gallery { min-width: 0; display: grid; gap: 16px; }
.shop-photo-primary {
  min-height: 590px; margin: 0; position: relative; overflow: hidden;
  border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--paper);
}
.shop-photo-primary img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.shop-photo-primary figcaption {
  position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex;
  align-items: end; justify-content: space-between; gap: 24px; padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.42); border-radius: 16px;
  background: rgba(37,54,47,.76); color: white; backdrop-filter: blur(12px);
}
.shop-photo-primary figcaption span {
  font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.shop-photo-primary figcaption strong { max-width: 280px; text-align: right; font-size: 13px; }
.shop-product-stage {
  min-height: 460px; display: grid; place-items: center; position: relative; overflow: hidden;
  border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--sky);
}
.shop-sun {
  position: absolute; width: min(48vw, 590px); aspect-ratio: 1; border-radius: 50%;
  background: var(--butter); right: -2%; bottom: -18%;
}
.shop-product-stage .collar-device { width: min(34vw, 460px); }
.shop-edition {
  position: absolute; top: 24px; left: 24px; z-index: 3; padding: 9px 13px;
  border: 1px solid var(--ink); border-radius: 999px; background: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.shop-hand-note {
  position: absolute; right: 5%; top: 14%; z-index: 3; max-width: 180px;
  font: 700 20px/1.05 var(--hand); transform: rotate(6deg);
}
.shop-gallery-secondary { margin-top: 0; }
.shop-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 20px; border: 1.5px solid var(--ink); border-radius: var(--radius-sm);
  background: var(--paper);
}
.shop-values span {
  padding: 18px; border-right: 1px solid var(--line); text-align: center;
  font: 700 clamp(22px, 2.5vw, 36px)/1 var(--hand); color: var(--coral-deep);
}
.shop-values span:last-child { border-right: 0; }
.shop-buy-panel { position: sticky; top: 30px; padding-top: 8px; }
.product-overline {
  display: block; margin-bottom: 14px; color: var(--coral-deep);
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.shop-buy-panel h1, .shop-buy-panel h3 { margin: 0; font-size: clamp(42px, 5vw, 72px); letter-spacing: -.075em; line-height: .92; }
.shop-price { margin: 20px 0 0; font-size: 18px; font-weight: 700; }
.shop-description { margin: 24px 0; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.shop-benefits { display: grid; gap: 0; margin: 28px 0 32px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.shop-benefits li {
  position: relative; padding: 15px 0 15px 28px; border-bottom: 1px solid var(--line);
  color: var(--ink-soft); font-size: 12px; line-height: 1.5;
}
.shop-benefits li::before {
  content: "✦"; position: absolute; left: 2px; top: 14px; color: var(--coral); font-size: 14px;
}
.product-specs { margin: 0 0 30px; }
.product-specs h2, .product-specs h4 {
  margin: 0 0 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.product-specs dl { margin: 0; border-top: 1px solid var(--ink); }
.product-specs dl > div {
  display: grid; grid-template-columns: minmax(90px, .65fr) 1.35fr; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.product-specs dt { color: var(--ink-soft); font-size: 11px; }
.product-specs dd { margin: 0; font-size: 11px; font-weight: 700; text-align: right; }
.purchase-button {
  min-height: 58px; display: flex; align-items: center; justify-content: center;
  padding: 12px 24px; border: 1.5px solid var(--ink); border-radius: 999px;
  background: var(--coral); color: white; box-shadow: 4px 4px 0 var(--ink);
  font-size: 14px; font-weight: 700; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.purchase-button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.purchase-button.is-disabled {
  cursor: not-allowed; background: #d6d4ce; color: #696d69; box-shadow: none;
  border-color: #a7aaa6; pointer-events: none;
}
.purchase-note { margin: 16px 0 28px; color: var(--ink-soft); font-size: 11px; text-align: center; }
.shop-policies { border-top: 1px solid var(--ink); }
.shop-policies details { border-bottom: 1px solid var(--ink); }
.shop-policies summary {
  min-height: 62px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none; font-size: 13px; font-weight: 700;
}
.shop-policies summary::-webkit-details-marker { display: none; }
.shop-policies summary::after { content: "+"; color: var(--coral); font-size: 20px; font-weight: 400; }
.shop-policies details[open] summary::after { content: "−"; }
.shop-policies p { margin: -4px 30px 20px 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }

.product-page { background: var(--white); }
.product-header { top: 0; grid-template-columns: 1fr auto 1fr; }
.product-header .header-actions { justify-self: end; }
.product-breadcrumb { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 11px; }
.product-breadcrumb a:hover { color: var(--coral-deep); }
.product-detail-main { padding: 42px clamp(24px, 6vw, 96px) clamp(90px, 10vw, 150px); }
.product-back-link {
  display: inline-flex; margin: 0 0 34px; color: var(--ink-soft);
  font-size: 12px; font-weight: 700;
}
.product-back-link:hover { color: var(--coral-deep); }
.product-detail-layout {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: clamp(40px, 7vw, 110px); align-items: start;
}
.product-detail-layout .shop-buy-panel { top: 116px; }
.product-footer { padding-top: 55px; }
.product-footer .footer-bottom { grid-template-columns: 1fr 1fr; margin-top: 50px; }

.story { overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.5fr .7fr; gap: 8vw; margin: 42px 0 80px; align-items: end; }
.story h2 { font-size: clamp(47px, 6vw, 92px); }
.story h2 span { color: var(--coral); }
.story-copy p:first-child { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.hand-note {
  display: inline-block; font: 700 25px/1.05 var(--hand); color: var(--coral-deep); transform: rotate(-3deg);
}
.day-strip { display: grid; grid-template-columns: .85fr 1.5fr .9fr; gap: 18px; }
.moment {
  min-height: 340px; border: 1.5px solid var(--ink); border-radius: var(--radius);
  padding: 22px; position: relative; overflow: hidden; box-shadow: 5px 5px 0 var(--ink);
}
.moment-time { font: 700 18px var(--hand); }
.moment strong { display: block; font-size: 19px; margin-top: auto; }
.moment > span:last-child { font-size: 12px; color: var(--ink-soft); }
.moment-yellow { background: var(--butter); display: flex; flex-direction: column; }
.moment-yellow svg { flex: 1; fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; }
.moment-photo { padding: 0; color: white; }
.moment-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(25,39,31,.72)); }
.moment-photo img { width: 100%; height: 100%; object-fit: cover; }
.moment-photo div { position: absolute; z-index: 1; left: 24px; bottom: 22px; }
.moment-photo strong { font-size: 22px; margin-top: 6px; }
.moment-blue { background: var(--sky); display: flex; flex-direction: column; }
.big-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 60px;
  font-size: clamp(60px, 7vw, 100px);
  letter-spacing: -.08em;
  font-weight: 700;
  line-height: .82;
}
.big-stat small {
  flex: 0 0 auto;
  margin: 0;
  font: 700 30px/1 var(--hand);
  letter-spacing: 0;
}
.route-line { margin-top: auto; width: 100%; fill: var(--paper); stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 4 6; }

.features { background: var(--ink); color: var(--white); }
.feature-intro { display: flex; justify-content: space-between; align-items: end; border-bottom: 1px solid rgba(255,255,255,.22); padding-bottom: 60px; }
.feature-intro .section-kicker { align-self: start; color: var(--butter); }
.feature-intro h2 { font-size: clamp(48px, 6vw, 88px); }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-card {
  position: relative; min-height: 620px; padding: 30px clamp(20px, 3vw, 44px) 42px;
  display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.22);
}
.feature-card:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.feature-number { font: 700 20px var(--hand); color: rgba(255,255,255,.45); }
.feature-icon {
  width: 150px; height: 150px; margin: 65px auto 80px; display: grid; place-items: center;
  border-radius: 52% 48% 45% 55% / 58% 42% 58% 42%; transform: rotate(-7deg);
}
.feature-icon svg { width: 77px; fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-camera { background: var(--butter); }
.icon-location { background: var(--sky); transform: rotate(6deg); }
.icon-heart { background: var(--coral); }
.feature-label { margin: 0 0 12px; color: var(--butter); font: 700 18px var(--hand); text-transform: uppercase; }
.feature-card h3 { margin: 0; font-size: 27px; letter-spacing: -.035em; }
.feature-card p:not(.feature-label) { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }
.card-note {
  position: absolute; right: 22px; top: 240px; font: 700 16px/1 var(--hand);
  color: rgba(255,255,255,.6); transform: rotate(7deg);
}

.product { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; min-height: 850px; }
.product h2 { margin: 36px 0; font-size: clamp(48px, 5vw, 78px); }
.product h2 em { color: var(--coral); }
.product-copy > p { color: var(--ink-soft); line-height: 1.7; max-width: 520px; }
.product-stage {
  min-height: 600px; display: grid; place-items: center; position: relative; border-radius: 50%;
}
.sun-shape {
  position: absolute; width: min(43vw, 570px); aspect-ratio: 1; border-radius: 47% 53% 61% 39% / 47% 41% 59% 53%;
  background: var(--butter); animation: blob 12s ease-in-out infinite alternate;
}
.collar-device {
  width: min(31vw, 430px); aspect-ratio: 1.55; z-index: 2; border: 4px solid var(--ink);
  border-radius: 43% 57% 51% 49% / 48% 45% 55% 52%; background: var(--coral);
  box-shadow: 12px 16px 0 rgba(37,54,47,.9), inset 10px 10px 20px rgba(255,255,255,.18);
  transform: rotate(-6deg); position: relative;
}
.device-lens {
  position: absolute; width: 32%; aspect-ratio: 1; left: 11%; top: 22%; border: 4px solid var(--ink);
  border-radius: 50%; background: #38453f; box-shadow: inset 0 0 0 9px #101712, inset 0 0 0 15px #51635a;
}
.device-lens i { position: absolute; width: 18%; aspect-ratio: 1; top: 22%; left: 24%; border-radius: 50%; background: rgba(255,255,255,.65); }
.device-mark { position: absolute; right: 18%; top: 30%; width: 64px; }
.device-mark svg { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.device-light { position: absolute; right: 23%; bottom: 24%; width: 9px; height: 9px; border-radius: 50%; background: #d9f39d; border: 1px solid var(--ink); }
.product-annotation { position: absolute; z-index: 3; font: 700 18px var(--hand); }
.annotation-one { top: 10%; right: 1%; transform: rotate(5deg); }
.annotation-two { bottom: 7%; left: 0; transform: rotate(-6deg); }
.annotation-arrow { position: absolute; z-index: 3; width: 80px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.arrow-one { top: 18%; right: 13%; }
.arrow-two { left: 13%; bottom: 14%; }

.experience {
  overflow: hidden; background: var(--paper-deep);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.experience-heading {
  display: grid; grid-template-columns: .55fr 1.25fr .65fr; gap: 5vw;
  align-items: end; padding-bottom: clamp(55px, 7vw, 90px);
}
.experience-heading .section-kicker { align-self: start; }
.experience h2 {
  margin: 0; font-size: clamp(48px, 6vw, 88px); line-height: .9;
  letter-spacing: -.065em;
}
.experience h2 em { color: var(--coral); }
.experience-heading > p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.experience-grid {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 150px);
  align-items: center;
}
.experience-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.experience-steps li {
  display: grid; grid-template-columns: 54px 1fr; gap: 20px;
  padding: 30px 0; border-bottom: 1px solid var(--ink);
}
.experience-steps li > span { font: 700 19px var(--hand); color: var(--coral-deep); }
.experience-steps h3 { margin: 0 0 9px; font-size: 20px; letter-spacing: -.035em; }
.experience-steps p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.app-showcase {
  min-height: 720px; display: grid; place-items: center; position: relative;
  border: 1.5px solid var(--ink); border-radius: 50% 48% 45% 52%;
  background: var(--sky);
}
.app-showcase::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: var(--butter); opacity: .88;
}
.app-note {
  position: absolute; z-index: 3; top: 12%; right: 4%; max-width: 150px;
  font: 700 19px/1.05 var(--hand); transform: rotate(7deg);
}
.phone {
  position: relative; z-index: 2; width: min(330px, 62%); padding: 15px 17px 12px;
  border: 3px solid var(--ink); border-radius: 42px; background: var(--white);
  box-shadow: 12px 14px 0 var(--ink), var(--shadow); transform: rotate(-3deg);
}
.phone-top { display: flex; justify-content: space-between; padding: 0 6px 15px; font-size: 9px; font-weight: 700; }
.app-pet { display: grid; grid-template-columns: 42px 1fr auto; gap: 10px; align-items: center; }
.app-avatar {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: var(--coral); color: var(--butter); border: 1.5px solid var(--ink); font-size: 20px;
}
.app-pet strong, .app-pet span { display: block; }
.app-pet strong { font-size: 15px; letter-spacing: -.03em; }
.app-pet div span { margin-top: 2px; color: var(--ink-soft); font-size: 9px; }
.battery-pill { padding: 5px 7px; border-radius: 99px; background: #dcebcf; font-size: 9px; }
.app-map {
  height: 245px; margin-top: 16px; overflow: hidden; position: relative;
  border: 1.5px solid var(--ink); border-radius: 23px; background: #d5e3d1;
}
.app-map svg { width: 100%; height: 100%; }
.map-road { fill: none; stroke: var(--white); stroke-width: 15; stroke-linecap: round; }
.map-route { fill: none; stroke: var(--coral); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 5 7; }
.map-zone { fill: rgba(169,212,229,.5); stroke: var(--ink); stroke-width: 1; stroke-dasharray: 4 5; }
.map-pet { fill: var(--coral); stroke: var(--ink); stroke-width: 3; }
.map-home { fill: var(--butter); stroke: var(--ink); stroke-width: 2; }
.map-label {
  position: absolute; z-index: 1; top: 13px; left: 13px; padding: 6px 9px;
  border: 1px solid var(--ink); border-radius: 99px; background: var(--white);
  font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
}
.map-status {
  position: absolute; left: 13px; bottom: 12px; display: flex; align-items: center; gap: 7px;
  padding: 7px 10px; border-radius: 99px; background: var(--ink); color: white; font-size: 9px;
}
.map-status i { width: 6px; height: 6px; border-radius: 50%; background: #d6f28f; }
.app-recap {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center;
  margin-top: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 18px;
  background: var(--paper);
}
.app-recap span, .app-recap strong { display: block; }
.app-recap div > span { color: var(--coral-deep); font: 700 12px var(--hand); }
.app-recap strong { margin-top: 3px; font-size: 11px; line-height: 1.35; }
.recap-arrow { width: 29px; height: 29px; display: grid !important; place-items: center; border-radius: 50%; background: var(--butter); }
.app-tabs { display: flex; justify-content: space-around; padding: 12px 35px 2px; color: #9ba49f; }
.app-tabs span { font-size: 17px; }
.app-tabs .is-active { color: var(--coral); }

.promise { padding-top: 0; }
.promise-card {
  display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 7vw;
  padding: clamp(50px, 7vw, 100px); background: var(--sky); border: 1.5px solid var(--ink);
  border-radius: var(--radius); box-shadow: 6px 6px 0 var(--ink);
}
.promise-doodle { width: min(100%, 300px); margin: auto; fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; }
.promise-pre { font: 700 22px var(--hand); color: var(--coral-deep); }
.promise h2 { margin: 12px 0 22px; font-size: clamp(38px, 5vw, 72px); letter-spacing: -.06em; }
.promise p { max-width: 610px; color: #43584f; line-height: 1.7; }
.promise .text-link { display: inline-block; margin-top: 18px; }

.faq { display: grid; grid-template-columns: .75fr 1fr; gap: 10vw; }
.faq-heading { position: sticky; top: 130px; align-self: start; }
.faq h2 { font-size: clamp(46px, 5vw, 76px); margin-top: 35px; }
.faq h2 em { color: var(--coral); }
.accordion { border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--ink); padding: 0 4px; }
.accordion summary {
  min-height: 92px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none; font-weight: 600; font-size: 18px; gap: 20px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary > span[aria-hidden] { width: 26px; height: 26px; position: relative; flex: 0 0 auto; }
.accordion summary > span[aria-hidden]::before, .accordion summary > span[aria-hidden]::after {
  content: ""; position: absolute; background: var(--coral); left: 3px; top: 12px; width: 20px; height: 2px;
}
.accordion summary > span[aria-hidden]::after { transform: rotate(90deg); transition: transform .2s; }
.accordion details[open] summary > span[aria-hidden]::after { transform: rotate(0); }
.accordion details p { margin: -10px 55px 30px 0; color: var(--ink-soft); line-height: 1.7; font-size: 14px; }

.waitlist {
  min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  background: var(--coral); color: var(--white);
}
.waitlist-copy { padding: clamp(70px, 9vw, 140px); align-self: center; position: relative; z-index: 2; }
.waitlist .hand-note { color: var(--butter); }
.waitlist h2 { margin: 24px 0; font-size: clamp(55px, 6.5vw, 94px); }
.waitlist-copy > p { color: rgba(255,255,255,.78); max-width: 470px; }
.signup-form {
  display: flex; max-width: 560px; margin-top: 40px; border-bottom: 2px solid white; padding-bottom: 10px; position: relative;
}
.signup-form input {
  flex: 1; min-width: 0; padding: 14px 4px; color: white; background: transparent; border: 0; outline: none; font-size: 17px;
}
.signup-form input::placeholder { color: rgba(255,255,255,.65); }
.signup-form button {
  background: var(--ink); color: white; border: 0; border-radius: 999px; padding: 0 22px; font-weight: 700; cursor: pointer;
}
.form-message { position: absolute; top: calc(100% + 16px); margin: 0; font-size: 13px; }
.waitlist-copy small { display: block; margin-top: 45px; opacity: .62; }
.waitlist-art { position: relative; display: grid; place-items: end center; overflow: hidden; }
.waitlist-art .sun {
  position: absolute; width: min(45vw, 620px); aspect-ratio: 1; border-radius: 50%;
  background: var(--butter); top: 12%; right: -5%;
}
.dog-doodle { position: relative; z-index: 1; width: min(44vw, 600px); fill: var(--paper); stroke: var(--ink); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.heart-doodle { position: absolute; z-index: 2; top: 23%; left: 17%; color: var(--ink); font: 700 55px var(--hand); transform: rotate(-12deg); }
.woof { position: absolute; top: 17%; left: 23%; z-index: 2; color: var(--ink); font: 700 27px var(--hand); transform: rotate(-8deg); }

.site-footer { padding: 75px clamp(24px, 6vw, 96px) 30px; background: var(--ink); color: var(--white); }
.footer-brand span { font-size: 40px; }
.footer-brand .brand-mark { width: 52px; height: 42px; }
.site-footer > p { color: rgba(255,255,255,.55); margin: 20px 0 50px; }
.site-footer > nav { display: flex; gap: 30px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 30px; font-size: 13px; }
.footer-bottom {
  display: grid; grid-template-columns: 1fr 1fr 1fr; margin-top: 80px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.5); font-size: 11px;
}
.footer-bottom div { display: flex; gap: 25px; justify-content: center; }
.back-top { justify-self: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blob { to { transform: rotate(12deg) scale(1.04); border-radius: 56% 44% 38% 62% / 40% 54% 46% 60%; } }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto auto; height: 74px; gap: 4px; padding-inline: 18px; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .header-cta { display: none; }
  .menu-toggle {
    grid-column: 3; grid-row: 1;
    display: grid; gap: 6px; padding: 12px; border: 0; background: transparent; cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 25px; height: 2px; background: var(--ink); transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: absolute; display: none; top: 73px; left: 0; right: 0; padding: 25px;
    background: var(--paper); border-bottom: 1px solid var(--ink); flex-direction: column; align-items: flex-start; gap: 22px;
  }
  .primary-nav.is-open { display: flex; }
  .language-picker { min-height: 38px; }
  .language-picker select { min-height: 36px; width: 66px; }
  .hero { min-height: 750px; padding-bottom: 65px; }
  .hero-media img { object-position: 60% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(29,39,34,.68), rgba(29,39,34,.13)), linear-gradient(0deg, rgba(29,39,34,.5), transparent); }
  .hero-note { display: none; }
  .shop-heading, .shop-layout, .product-entry, .product-detail-layout, .story-grid, .product, .faq, .experience-heading, .experience-grid { grid-template-columns: 1fr; }
  .shop-heading { gap: 35px; }
  .shop-heading > p { max-width: 600px; }
  .product-entry-photo { min-height: 500px; }
  .product-entry-copy { min-height: 390px; }
  .shop-buy-panel { position: static; }
  .product-detail-layout .shop-buy-panel { position: static; }
  .shop-photo-primary { min-height: 560px; }
  .shop-product-stage { min-height: 520px; }
  .shop-product-stage .collar-device { width: min(57vw, 430px); }
  .story-grid { gap: 35px; }
  .day-strip { grid-template-columns: 1fr 1fr; }
  .moment-blue { grid-column: 1 / -1; min-height: 270px; }
  .feature-intro { display: grid; gap: 40px; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-card { min-height: 420px; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); display: grid; grid-template-columns: 120px 1fr; column-gap: 30px; align-items: center; }
  .feature-card:first-child { border-left: 0; }
  .feature-number { position: absolute; top: 30px; left: 0; }
  .feature-icon { width: 110px; height: 110px; margin: 0; }
  .card-note { display: none; }
  .product-stage { order: -1; min-height: 520px; }
  .collar-device { width: min(58vw, 420px); }
  .sun-shape { width: min(70vw, 540px); }
  .experience-heading { gap: 35px; }
  .experience-heading > p { max-width: 600px; }
  .experience-grid { gap: 65px; }
  .app-showcase { min-height: 650px; }
  .phone { width: min(330px, 60%); }
  .faq-heading { position: static; }
  .waitlist { grid-template-columns: 1fr; }
  .waitlist-art { min-height: 480px; }
  .dog-doodle { width: min(80vw, 560px); }
  .waitlist-art .sun { width: min(80vw, 560px); }
}

@media (max-width: 580px) {
  .announcement { justify-content: space-between; padding: 8px 14px; font-size: 10px; gap: 8px; }
  .hero { min-height: 720px; padding: 28px 20px 55px; }
  .brand span { font-size: 24px; }
  .brand-mark { width: 34px; }
  .language-picker { padding-left: 8px; padding-right: 5px; }
  .language-icon { display: none; }
  .language-picker select { width: 59px; padding-left: 4px; font-size: 10px; }
  .product-header { grid-template-columns: 1fr auto; }
  .product-breadcrumb { display: none; }
  .product-header .header-actions { grid-column: 2; }
  .product-detail-main { padding: 28px 20px 80px; }
  .product-entry { box-shadow: 4px 4px 0 var(--ink); }
  .product-entry-photo { min-height: 390px; }
  .product-entry-copy { min-height: 350px; padding: 38px 28px; }
  .hero-media img { object-position: 66% center; }
  .hero h1 { font-size: 49px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-tag { right: 18px; bottom: 18px; }
  .section-pad { padding-left: 20px; padding-right: 20px; }
  .shop h2 { font-size: 49px; }
  .shop-photo-primary { min-height: 430px; }
  .shop-photo-primary figcaption { left: 14px; right: 14px; bottom: 14px; display: grid; gap: 6px; }
  .shop-photo-primary figcaption strong { text-align: left; }
  .shop-product-stage { min-height: 470px; }
  .shop-sun { width: 105%; right: -30%; }
  .shop-product-stage .collar-device { width: min(72vw, 330px); }
  .shop-hand-note { top: 16%; right: 2%; max-width: 135px; font-size: 15px; }
  .shop-values { padding: 10px 14px; overflow-x: auto; }
  .shop-values span {
    min-width: max-content; padding: 14px 18px; border-bottom: 0; border-right: 1px solid var(--line);
    font-size: 25px;
  }
  .shop-values span:last-child { border-right: 0; }
  .story-grid { margin-bottom: 50px; }
  .day-strip { display: flex; overflow-x: auto; padding: 4px 4px 12px; scroll-snap-type: x mandatory; }
  .moment { min-width: 82vw; scroll-snap-align: center; }
  .feature-card { min-height: 500px; padding: 55px 12px 35px; display: flex; align-items: flex-start; }
  .feature-icon { margin: 20px auto 40px; }
  .feature-number { left: 12px; }
  .product-stage { min-height: 390px; }
  .annotation-one { top: 2%; }
  .arrow-one { top: 12%; right: 17%; }
  .annotation-two { bottom: 0; }
  .arrow-two { bottom: 8%; }
  .experience h2 { font-size: 49px; }
  .experience-grid { gap: 55px; }
  .experience-steps li { grid-template-columns: 42px 1fr; gap: 12px; }
  .app-showcase { min-height: 520px; border-radius: 47% 53% 48% 52%; }
  .app-showcase::before { width: 92%; }
  .phone { width: min(300px, 78%); border-radius: 34px; transform: rotate(-2deg); box-shadow: 8px 10px 0 var(--ink); }
  .app-note { top: 5%; right: 1%; font-size: 15px; }
  .app-map { height: 210px; }
  .promise-card { grid-template-columns: 1fr; padding: 45px 25px; }
  .promise-doodle { width: 170px; }
  .waitlist-copy { padding: 75px 24px; }
  .signup-form { flex-direction: column; gap: 12px; border: 0; }
  .signup-form input { border-bottom: 2px solid white; }
  .signup-form button { min-height: 52px; }
  .waitlist-art { min-height: 370px; }
  .site-footer > nav { flex-wrap: wrap; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 25px; }
  .footer-bottom div { justify-content: flex-start; order: 3; grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
