@charset "UTF-8";
:root {
  --brand: #244c3f;
  --brand-hover: #183a2f;
  --paper: #fbf8f1;
  --ink: #263c32;
  --muted: #637066;
  --line: #dce0d4;
  --kiwi: #e3efb0;
  --apricot: #edd5c8;
  --sage: #edf0e5;
  --surface: #fffdf8;
  --butter: #f2d593;
  --butter-soft: #f7ebcf;
  --on-brand-muted: #dce7d7;
  --focus: var(--brand);
  --page-width: 1280px;
  --header-height: 72px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(64px, 7vw, 96px);
  --layout-gap: clamp(32px, 5vw, 72px);
  --card-space: clamp(20px, 2.5vw, 32px);
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1px);
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
::selection {
  background: var(--kiwi);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: 100%;
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-pad {
  padding-block: var(--section-space);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 100;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.micro-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.green-dot {
  background: var(--brand);
}
.site-header {
  --focus: var(--kiwi);
  background: var(--brand);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #ffffff1c;
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.wordmark {
  font-size: 26px;
  letter-spacing: -1.1px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  justify-self: start;
  line-height: 1;
}
.wordmark img {
  transition: transform 0.4s ease;
}
.wordmark:hover img {
  transform: rotate(-14deg);
}
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  align-items: center;
  white-space: nowrap;
}
.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 12px 0;
  line-height: 20px;
  flex-shrink: 0;
  position: relative;
}
.desktop-nav svg {
  width: 13px;
  height: 13px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  place-items: center;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}
.github-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.github-link svg {
  width: 20px;
  height: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 52px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg {
  width: 21px;
  height: 21px;
  transition: transform 0.2s;
}
.button:hover svg {
  transform: translateX(3px);
}
.button-small {
  min-height: 44px;
  white-space: nowrap;
  padding: 10px 14px;
  gap: 19px;
  font-size: 13px;
}
.button-small svg {
  width: 18px;
  height: 18px;
}
.button-paper {
  background: var(--paper);
  color: var(--brand);
}
.button-paper:hover {
  background: #fff;
}
.button-kiwi {
  background: var(--kiwi);
  color: var(--ink);
}
.button-kiwi:hover {
  background: #edf5cf;
}
.button-brand {
  background: var(--brand);
  color: white;
}
.button-brand:hover {
  background: var(--brand-hover);
}
.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-block: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link.light {
  color: var(--paper);
}
.hero {
  --focus: var(--kiwi);
  background: var(--brand);
  color: var(--paper);
  overflow: hidden;
}
.hero-intro {
  padding-top: 40px;
  padding-bottom: 40px;
}
.eyebrow-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid #ffffff60;
  border-radius: 30px;
  font-size: 10px;
  letter-spacing: 0.045em;
  line-height: 1.5;
  padding: 7px 11px;
}
.eyebrow-pill > svg {
  width: 13px;
  height: 13px;
  margin-left: 4px;
}
.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
}
.hero h1 {
  font-size: clamp(56px, 6.4vw, 88px);
  line-height: 1.025;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.end-dot {
  color: var(--kiwi);
}
.hero-doodle {
  width: 120px;
  flex: none;
  margin-right: 3.5%;
  transform: rotate(8deg);
  color: var(--butter);
}
.hero-doodle > svg {
  width: 120px;
  height: 132px;
  stroke-width: 2;
  overflow: visible;
}
.hero-doodle .doodle-line {
  fill: none;
}
.doodle-nose {
  fill: currentColor;
  stroke: none;
}
.hero-doodle span {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-5deg);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}
.hero-bottom > p {
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.3px;
  max-width: 360px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-privacy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--kiwi);
  font-size: 13px;
  line-height: 1.5;
}
.hero-privacy svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.hero-privacy:hover span {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.feature-intro {
  max-width: 39ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-inline: var(--gutter);
  max-width: var(--page-width);
  margin-inline: auto;
}
.pet-panel {
  height: clamp(300px, 29vw, 360px);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #b4a990;
  color: white;
}
.pet-photo {
  background-image: url("assets/pets.webp");
  background-size: 300% auto;
  background-repeat: no-repeat;
}
.pet-panel > .pet-photo {
  position: absolute;
  inset: 0;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pet-panel:hover > .pet-photo {
  transform: scale(1.035);
}
.dog-panel > .pet-photo {
  background-position: 0 43%;
}
.cat-panel > .pet-photo {
  background-position: 50% 50%;
}
.together-panel > .pet-photo {
  background-position: 100% 49%;
}
.pet-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    #1720183d,
    transparent 22%,
    transparent 62%,
    #1d25172b
  );
  pointer-events: none;
}
.panel-top {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.panel-top > span {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-shadow: 0 1px 5px #0006;
}
.panel-top svg {
  width: 21px;
  height: 21px;
  transform: rotate(90deg);
}
.photo-note {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  min-height: 77px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  padding: 15px;
  z-index: 2;
  box-shadow: 0 3px 20px #1520130c;
}
.photo-note small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.045em;
  line-height: 1.5;
  margin-bottom: 5px;
}
.photo-note strong {
  display: block;
  font-size: clamp(12px, 1.14vw, 17px);
  font-weight: 500;
  letter-spacing: -0.35px;
  line-height: 1.2;
}
.note-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: none;
}
.note-icon svg {
  width: 100%;
  height: 100%;
}
.note-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  margin-left: auto;
  flex: none;
}
.accent-note {
  background: var(--butter);
  color: var(--ink);
}
.together-panel .photo-note {
  background: var(--apricot);
}
.hero-caption {
  padding-block: 16px 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--on-brand-muted);
}
.section-heading h2,
h2 {
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.section-heading h2 {
  margin-top: 16px;
}
.experience-copy .section-heading {
  margin-bottom: 32px;
}
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--layout-gap);
  align-items: center;
}
.feature-tabs {
  border-top: 1px solid var(--line);
}
.feature-tab {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 20px 12px;
  transition:
    color 0.2s,
    background 0.2s;
}
.feature-icon {
  flex: none;
  display: flex;
}
.feature-icon svg {
  width: 44px;
  height: 44px;
}
.feature-tab strong {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.45px;
  display: block;
}
.feature-tab small {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
  color: var(--muted);
}
.feature-tab > svg {
  margin-left: auto;
  width: 19px;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.feature-tab.active,
.feature-tab:hover {
  color: var(--brand);
  background: var(--sage);
}
.feature-tab.active > svg {
  opacity: 1;
  transform: none;
}
.demo-surround {
  padding: 24px;
  background: var(--sage);
  border-radius: 12px;
  position: relative;
  min-width: 0;
}
.demo-browser {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 16px 30px -18px #183a2f30;
}
.browser-chrome {
  height: 31px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 12px;
  gap: 12px;
  font-size: 8px;
  color: var(--muted);
}
.browser-chrome > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.browser-chrome svg {
  width: 9px;
  height: 9px;
}
.traffic-lights {
  gap: 4px !important;
}
.traffic-lights i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d5d6ce;
}
.preview-label {
  letter-spacing: 0.04em;
  font-size: 7px;
}
.demo-app {
  padding: 20px 24px 16px;
}
.demo-topline {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.demo-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: -0.6px;
}
.demo-avatar {
  margin-left: auto;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  background: var(--apricot);
  border-radius: 50%;
  color: var(--ink);
  font-size: 8px;
}
.demo-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 104px;
  padding: 24px 0 20px;
  gap: 15px;
}
.demo-kicker {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.demo-title h3 {
  font-size: clamp(19px, 2vw, 29px);
  letter-spacing: -1px;
  font-weight: 400;
  margin-top: 7px;
}
.demo-spark {
  width: 32px;
  height: 32px;
  color: #977137;
  stroke-width: 1.2;
}
.demo-camera {
  height: 248px;
  border-radius: 6px;
  position: relative;
  background-position: 50% 47%;
  overflow: hidden;
}
.camera-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fffef2ed;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 20px;
}
.camera-label .status-dot {
  color: var(--brand);
  width: 4px;
  height: 4px;
}
.demo-camera-note {
  position: absolute;
  bottom: 12px;
  right: 13px;
  font-size: 7px;
  color: white;
  background: #1b201980;
  padding: 4px 6px;
  border-radius: 3px;
}
.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  min-height: 52px;
  padding: 12px 0;
  color: var(--muted);
}
.demo-footer > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.demo-footer svg {
  width: 10px;
  height: 10px;
}
.demo-footer .status-dot {
  width: 4px;
  height: 4px;
}
.demo-bottom-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  border-top: 1px solid #eeeae2;
  padding: 12px 0 1px;
  font-size: 10px;
  color: var(--muted);
}
.demo-bottom-nav > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.demo-bottom-nav svg {
  width: 12px;
  height: 12px;
}
.demo-bottom-nav .selected {
  color: var(--brand);
}
.example-event {
  background: var(--butter-soft);
  position: relative;
  border-radius: 6px;
  padding: 22px 18px 17px;
  min-height: 248px;
}
.event-symbol {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--butter);
  margin-bottom: 19px;
  color: #675536;
}
.event-symbol svg {
  width: 18px;
  height: 18px;
}
.example-tag {
  font-size: 7px;
  position: absolute;
  right: 16px;
  top: 24px;
  color: #675536;
  letter-spacing: 0.04em;
}
.example-event h4 {
  font-weight: 400;
  letter-spacing: -0.4px;
  font-size: 19px;
}
.example-event > p {
  font-size: 11px;
  line-height: 1.6;
  color: #675536;
  margin: 11px 0 15px;
  max-width: 300px;
}
.example-evidence {
  font-size: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.4;
  color: #675536;
}
.example-evidence svg {
  width: 12px;
  height: 12px;
}
.activity-row {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 12px 0;
}
.activity-row strong {
  display: block;
  font-size: 10px;
  font-weight: 400;
}
.activity-row small {
  font-size: 9px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.activity-row .status-dot {
  width: 4px;
  height: 4px;
}
.moment-photo {
  height: 248px;
  background-position: 100% 47%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.moment-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: white;
  text-shadow: 0 1px 10px #000;
}
.moment-heart {
  position: absolute;
  top: 9px;
  right: 15px;
  width: 26px;
  height: 26px;
  color: white;
}
.tiny-pill {
  font-size: 6px;
  letter-spacing: 0.03em;
  padding: 3px 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.privacy-section {
  background: var(--kiwi);
  color: var(--brand);
  padding-block: var(--section-space);
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: center;
}
.privacy-grid h2 {
  margin: 16px 0 24px;
}
.privacy-grid > div > p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 380px;
  margin-bottom: 19px;
  letter-spacing: -0.3px;
}
.privacy-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 56px;
}
.path-node {
  width: 65px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.path-node > svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.25;
}
.path-node > small {
  position: absolute;
  top: 62px;
  white-space: nowrap;
  font-size: 11px;
}
.path-dashes {
  flex: 1;
  border-top: 1px dashed #637344;
  min-width: 10px;
}
.computer-node {
  width: 96px;
  height: 96px;
  border: 1px solid #7d8c5050;
  border-radius: 24px;
  background: #f1f6d9;
}
.computer-node > svg {
  width: 45px;
  height: 45px;
}
.computer-node > small {
  top: 109px;
}
.local-badge {
  position: absolute;
  top: -18px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--kiwi);
  font-size: 9px;
  white-space: nowrap;
  transform: rotate(-5deg);
}
.local-badge svg {
  width: 10px;
  height: 10px;
}
.privacy-points {
  border-top: 1px solid #81905066;
}
.privacy-points p {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px solid #81905066;
  font-size: 14px;
  line-height: 1.5;
}
.privacy-points svg {
  width: 16px;
  height: 16px;
}
.privacy-note {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: #515e3d;
  margin-top: 16px;
  max-width: 48ch;
}
.setup-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--layout-gap);
}
.setup-heading > .micro-label {
  grid-column: 1/-1;
}
.setup-heading > p {
  font-size: 16px;
  line-height: 1.6;
  align-self: end;
  padding-bottom: 4px;
  color: var(--muted);
}
.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.setup-steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.step-number svg {
  width: 26px;
  height: 26px;
  color: var(--brand);
  stroke-width: 1.3;
}
.setup-steps h3 {
  font-size: 26px;
  letter-spacing: -1px;
  font-weight: 400;
  margin: 24px 0 12px;
}
.setup-steps p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 300px;
}
.awake-note {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--sage);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.awake-note svg {
  width: 17px;
  height: 17px;
}
.download-section {
  --focus: var(--kiwi);
  background: var(--brand);
  color: var(--paper);
  padding-block: var(--section-space);
}
.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: var(--layout-gap);
  align-items: center;
}
.download-grid h2 {
  font-size: clamp(40px, 4vw, 56px);
  margin: 24px 0;
}
.download-grid > div > p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 27px;
  color: var(--on-brand-muted);
}
.download-grid .eyebrow-pill {
  font-size: 10px;
}
.download-grid > .download-card {
  --focus: var(--brand);
  background: var(--paper);
  color: var(--ink);
  padding: var(--card-space);
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}
.platform-tabs {
  display: flex;
  background: var(--sage);
  padding: 4px;
  border-radius: 8px;
  gap: 4px;
  margin-bottom: 24px;
}
.platform-tabs button {
  border: 0;
  background: transparent;
  padding: 11px 7px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  border-radius: 5px;
  min-height: 44px;
}
.platform-tabs button[aria-selected="true"] {
  background: var(--paper);
  box-shadow: 0 1px 5px #28301915;
}
.platform-tabs svg {
  width: 16px;
  height: 16px;
  margin-right: 3px;
}
.platform-heading {
  display: flex;
  gap: 11px;
  align-items: center;
}
.platform-heading svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.3;
  color: var(--brand);
}
.platform-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  flex: none;
}
.platform-status {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--brand);
}
.platform-heading h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.65px;
}
#platform-requirements {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 8px 0 24px;
}
.download-card .button {
  width: 100%;
  font-size: 14px;
  min-height: 48px;
  padding: 12px 16px;
}
.download-instruction {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 7px;
  text-align: center;
}
.release-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--brand);
}
.release-note svg {
  width: 13px;
  height: 13px;
}
.source-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 20px;
}
code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.95em;
  color: var(--ink);
  background: var(--sage);
  padding: 2px 4px;
  border-radius: 3px;
}
.download-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 12px;
}
.download-facts > span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.download-facts svg {
  width: 12px;
  height: 12px;
  color: var(--brand);
}
.preview-caution {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin: 20px 0 8px;
}
.setup-guide {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand);
  min-height: 44px;
}
.setup-guide:hover {
  text-decoration: underline;
}
.setup-guide svg {
  width: 16px;
  height: 16px;
}
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: var(--layout-gap);
}
.faq-section h2 {
  margin-top: 16px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 17px;
  letter-spacing: -0.4px;
  cursor: pointer;
  line-height: 1.4;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-toggle {
  width: 20px;
  height: 20px;
  flex: none;
  transition: transform 0.2s;
}
summary:hover {
  color: var(--brand);
}
details[open] .faq-toggle {
  transform: rotate(45deg);
}
details > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 32px 24px 0;
  max-width: 650px;
}
.site-footer {
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: var(--brand);
}
.footer-inner {
  container-type: inline-size;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 37px;
  padding-bottom: 24px;
}
.footer-top > p {
  font:
    italic 19px Georgia,
    serif;
}
.footer-wordmark {
  font-size: min(24cqw, 240px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 24px;
}
.back-top {
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  transition: background 0.2s;
}
.back-top:hover {
  background: var(--kiwi);
}
.back-top svg {
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.footer-bottom nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
}
.footer-bottom nav svg {
  width: 12px;
  height: 12px;
}
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-intro {
    animation: arrive 0.65s ease-out both;
  }
  .photo-strip {
    animation: arrive 0.8s 0.08s ease-out both;
  }
  .demo-view:not([hidden]) {
    animation: arrive 0.25s ease-out both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }
  .hero-doodle {
    width: 100px;
    margin-right: 0;
  }
  .hero-doodle > svg {
    width: 100px;
    height: 110px;
  }
  .hero-doodle span {
    font-size: 13px;
  }
  .hero-bottom > p {
    font-size: 15px;
    max-width: 335px;
  }
  .hero-cta {
    gap: 19px;
  }
  .hero-cta .button {
    gap: 17px;
    font-size: 14px;
  }
  .hero-cta .text-link {
    font-size: 14px;
  }
  .photo-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 9px;
    padding: 13px 10px;
  }
  .photo-note .note-icon {
    width: 36px;
    height: 36px;
  }
  .photo-note small {
    font-size: 8px;
  }
  .note-dot {
    display: none;
  }
  .feature-tab {
    gap: 10px;
  }
  .feature-tab strong {
    font-size: 16px;
  }
  .demo-app {
    padding-inline: 16px;
  }
  .demo-surround {
    padding: 20px;
  }
}
@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }
  .wordmark {
    font-size: 23px;
  }
  .wordmark img {
    width: 28px;
    height: 28px;
  }
  .desktop-nav {
    display: none;
    --focus: var(--brand);
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    padding: 10px;
    gap: 4px;
    grid-template-columns: 1fr 1fr;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 32px #183a2f24;
  }
  .desktop-nav.is-open {
    display: grid;
  }
  .desktop-nav a {
    padding: 12px;
    min-height: 44px;
    font-size: 14px;
    border-radius: 6px;
  }
  .desktop-nav a:hover {
    background: var(--sage);
  }
  .desktop-nav a::after {
    display: none;
  }
  .js .menu-toggle {
    display: grid;
  }
  .header-actions {
    gap: 8px;
  }
  .github-link {
    display: none;
  }
  .button-small {
    font-size: 12px;
    gap: 11px;
    padding: 10px 12px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }
  .hero-intro {
    padding-block: 32px;
  }
  .hero h1 {
    font-size: clamp(44px, 8vw, 60px);
    letter-spacing: -0.055em;
  }
  .hero-title-row {
    margin-top: 24px;
    gap: 12px;
  }
  .hero-doodle {
    display: none;
  }
  .hero-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
    margin-top: 24px;
  }
  .hero-bottom > p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 460px;
  }
  .hero-cta {
    gap: 20px;
  }
  .hero-cta .button {
    min-height: 48px;
    font-size: 14px;
  }
  .eyebrow-pill {
    font-size: 10px;
  }
  .photo-strip {
    grid-template-columns: repeat(3, min(78vw, 320px));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-padding-inline: var(--gutter);
    gap: 12px;
  }
  .photo-strip::-webkit-scrollbar {
    display: none;
  }
  .pet-panel {
    height: 320px;
    scroll-snap-align: start;
  }
  .pet-panel > .pet-photo {
    background-size: 300% auto;
  }
  .panel-top {
    left: 16px;
    right: 16px;
    top: 17px;
  }
  .panel-top > span {
    font-size: 8px;
  }
  .photo-note {
    min-height: 66px;
  }
  .photo-note strong {
    font-size: 13px;
  }
  .photo-note small {
    font-size: 8px;
  }
  .hero-caption {
    padding-block: 16px 24px;
    font-size: 10px;
  }
  .hero-caption::after {
    content: "SWIPE TO EXPLORE →";
    font-size: 8px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  h2,
  .section-heading h2 {
    font-size: clamp(34px, 6vw, 42px);
  }
  .micro-label {
    font-size: 10px;
  }
  .section-heading h2 {
    margin-top: 16px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 640px;
    margin-inline: auto;
  }
  .experience-copy .section-heading {
    margin-bottom: 24px;
  }
  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border: 0;
  }
  .feature-tab {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 16px 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 88px;
  }
  .feature-tab.active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--paper);
  }
  .feature-tab strong {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }
  .feature-tab small,
  .feature-tab > svg {
    display: none;
  }
  .feature-icon svg {
    width: 32px;
    height: 32px;
  }
  .demo-surround {
    width: 100%;
    padding: 20px;
  }
  .demo-title h3 {
    font-size: clamp(22px, 4vw, 28px);
  }
  .demo-camera,
  .moment-photo {
    height: 250px;
  }
  .example-event {
    min-height: 250px;
  }
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .privacy-grid > div > p {
    font-size: 16px;
    max-width: 440px;
  }
  .privacy-path {
    max-width: 400px;
    margin: auto;
    padding-top: 24px;
  }
  .privacy-points p {
    font-size: 14px;
  }
  .setup-heading {
    display: block;
  }
  .setup-heading > p {
    font-size: 15px;
    margin-top: 16px;
  }
  .setup-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .setup-steps article {
    padding-top: 24px;
    position: relative;
    padding-left: 48px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    font-size: 11px;
  }
  .step-number svg {
    width: 22px;
    height: 22px;
  }
  .setup-steps h3 {
    margin: 0 0 12px;
    font-size: 24px;
  }
  .setup-steps p {
    max-width: 440px;
    font-size: 15px;
  }
  .awake-note {
    align-items: flex-start;
    margin-top: 32px;
    padding: 16px;
  }
  .download-grid {
    grid-template-columns: minmax(0, 480px);
    justify-content: center;
    gap: 32px;
  }
  .download-grid h2 {
    font-size: clamp(38px, 7vw, 48px);
    margin-top: 24px;
  }
  .download-grid > div > p {
    font-size: 15px;
  }
  .download-grid > .download-card {
    justify-self: start;
  }
  .platform-heading h3 {
    font-size: 22px;
  }
  #platform-requirements {
    font-size: 14px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-section h2 {
    margin-top: 16px;
  }
  summary {
    font-size: 16px;
    padding-block: 20px;
  }
  details > p {
    font-size: 14px;
  }
  .privacy-grid,
  .setup-section,
  .download-grid,
  .faq-section {
    max-width: calc(640px + var(--gutter) * 2);
  }
  .footer-top {
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 24px;
  }
  .footer-top > p {
    font-size: 15px;
  }
  .footer-bottom {
    font-size: 11px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom nav {
    column-gap: 20px;
    row-gap: 0;
  }
}
@media (max-width: 380px) {
  :root {
    --gutter: 18px;
  }
  .hero h1 {
    font-size: clamp(38px, 11.5vw, 43px);
  }
  .header-inner {
    gap: 8px;
  }
  .wordmark {
    font-size: 21px;
    gap: 7px;
  }
  .wordmark img {
    width: 26px;
    height: 26px;
  }
  .button-small {
    gap: 8px;
    padding-inline: 10px;
  }
  .github-link {
    display: none;
  }
  .hero-cta {
    gap: 12px;
  }
  .hero-cta .button {
    padding-inline: 16px;
  }
  .hero-cta .text-link {
    font-size: 13px;
    gap: 5px;
  }
  .hero-caption {
    font-size: 10px;
    gap: 10px;
  }
  .hero-caption::after {
    content: "SWIPE →";
  }
  .feature-tab {
    padding: 12px 8px;
  }
  .demo-surround {
    padding: 12px;
  }
  .demo-app {
    padding-inline: 12px;
  }
  .demo-title h3 {
    font-size: 22px;
  }
  .demo-camera,
  .moment-photo {
    height: 225px;
  }
  .example-event {
    min-height: 225px;
    padding: 17px 14px;
  }
  .example-event h4 {
    font-size: 17px;
  }
  .demo-footer {
    font-size: 9px;
  }
  .platform-heading h3 {
    font-size: 18px;
  }
  .privacy-path {
    gap: 8px;
  }
  .path-node {
    width: 56px;
  }
  .computer-node {
    width: 80px;
    height: 80px;
  }
  .computer-node > small {
    top: 93px;
  }
  .footer-top > p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
