:root {
  color-scheme: light dark;
  --ink: #1d201e;
  --ink-soft: #565c57;
  --paper: #f7f3eb;
  --paper-deep: #eee7da;
  --white: #fffdf8;
  --surface: #fffdf8;
  --surface-muted: #f4f1eb;
  --green: #245948;
  --green-deep: #173f33;
  --green-soft: #dce9df;
  --apricot: #e98b4b;
  --apricot-soft: #f7d9bd;
  --line: rgba(29, 32, 30, 0.14);
  --shadow: 0 30px 80px rgba(42, 38, 29, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background:
    radial-gradient(circle at 18% 22%, rgba(233, 139, 75, 0.09) 0 1px, transparent 1.5px) 0 0 / 28px 28px,
    radial-gradient(circle at 72% 64%, rgba(36, 89, 72, 0.08) 0 1px, transparent 1.5px) 0 0 / 34px 34px;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-deep);
  transform: translateY(-150%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(29, 32, 30, 0.08);
  background: rgba(247, 243, 235, 0.9);
  backdrop-filter: saturate(140%) blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 6px 16px rgba(84, 56, 33, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 580;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.language-toggle {
  min-width: 48px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.language-toggle:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 56px;
  min-height: 760px;
  padding-block: 84px 100px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.legal-hero h1,
.support-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green-deep);
  box-shadow: 0 12px 28px rgba(23, 63, 51, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(23, 63, 51, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
}

.button-disabled {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  cursor: default;
}

.button-disabled:hover {
  transform: none;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--apricot);
  box-shadow: 0 0 0 5px var(--apricot-soft);
}

.hero-facts {
  display: flex;
  gap: 28px;
  margin: 42px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 2px;
}

.hero-facts strong {
  font-size: 14px;
  font-weight: 720;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 12px;
}

.product-stage {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  background: #e8dfd1;
  box-shadow: inset 0 0 0 1px rgba(29, 32, 30, 0.08);
  overflow: hidden;
}

.product-stage::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 44px 44px;
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(36, 89, 72, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: -120px;
  right: -40px;
  width: 350px;
  height: 350px;
}

.orbit-two {
  bottom: -150px;
  left: -90px;
  width: 410px;
  height: 410px;
}

.menu-strip {
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  color: rgba(29, 32, 30, 0.72);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 24px rgba(52, 47, 39, 0.09);
  backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 650;
}

.menu-strip-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-status-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.app-window {
  position: absolute;
  top: 90px;
  right: 42px;
  left: 42px;
  z-index: 2;
  border: 1px solid rgba(29, 32, 30, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.1deg);
}

.window-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-bottom: 1px solid rgba(29, 32, 30, 0.08);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
}

.traffic-lights {
  position: absolute;
  left: 14px;
  display: flex;
  gap: 6px;
}

.traffic-lights i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.traffic-lights i:nth-child(2) {
  background: #febc2e;
}

.traffic-lights i:nth-child(3) {
  background: #28c840;
}

.window-content {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.app-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.app-title img {
  border-radius: 13px;
}

.app-title h2 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.app-title p {
  margin: 1px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.mode-pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 9px;
  font-weight: 750;
}

.setting-card {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(29, 32, 30, 0.09);
  border-radius: 13px;
  background: rgba(244, 241, 235, 0.75);
}

.setting-card-green {
  border-color: rgba(36, 89, 72, 0.18);
  background: rgba(220, 233, 223, 0.72);
}

.setting-card strong,
.setting-card small {
  display: block;
}

.setting-card strong {
  font-size: 11px;
}

.setting-card small {
  color: var(--ink-soft);
  font-size: 9px;
}

.setting-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 15px;
  font-weight: 760;
}

.shield-icon::before {
  content: "✓";
}

.switch {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 99px;
  background: var(--green);
}

.switch::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(29, 32, 30, 0.09);
  border-radius: 13px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.metric-card small {
  color: var(--ink-soft);
  font-size: 9px;
}

.metric-card strong {
  font-size: 12px;
}

kbd {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 7px;
  background: var(--surface);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 720;
}

.paw-note {
  position: absolute;
  right: 24px;
  bottom: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-deep);
  box-shadow: 0 12px 28px rgba(23, 63, 51, 0.24);
  font-size: 11px;
  font-weight: 650;
}

.paw-mark {
  position: relative;
  width: 15px;
  color: var(--apricot);
}

.statement {
  color: var(--white);
  background: var(--green-deep);
}

.statement-inner {
  display: grid;
  place-items: center;
  min-height: 430px;
  text-align: center;
}

.statement p {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.section {
  padding-block: 128px;
}

.section-soft {
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px 70px;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.feature-card-large {
  min-height: 470px;
}

.feature-card-dark {
  color: var(--white);
  background: var(--green-deep);
}

.feature-number {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.feature-card-dark .feature-number {
  color: rgba(255, 255, 255, 0.62);
}

.feature-card h3 {
  margin: 28px 0 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 550px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 205px;
  margin: 18px 0 8px;
  border-radius: 18px;
  background: var(--paper);
}

.feature-card-dark .feature-visual {
  background: rgba(255, 255, 255, 0.07);
}

.smart-visual {
  justify-content: flex-start;
  gap: 12px;
  padding: 38px;
}

.key {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid var(--line);
  border-bottom-width: 5px;
  border-radius: 15px;
  background: var(--surface);
  font-size: 20px;
  font-weight: 700;
}

.key-s {
  transform: translateY(16px);
}

.key-d {
  transform: translateY(-5px);
}

.timing-line {
  position: absolute;
  right: 34px;
  bottom: 48px;
  left: 34px;
  height: 2px;
  background: var(--line);
}

.timing-line::before,
.timing-line::after {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.timing-line::after {
  right: 0;
}

.check-bubble {
  position: absolute;
  top: 30px;
  right: 38px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 21px;
}

.lock-visual img {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  image-rendering: auto;
}

.lock-ring {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid var(--apricot);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(233, 139, 75, 0.1);
}

.allow-visual {
  gap: 16px;
}

.app-chip,
.allow-check {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: var(--white);
  background: #2d6b8f;
  font-weight: 800;
}

.allow-check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
}

.allow-arrow {
  color: var(--ink-soft);
}

.device-shape {
  width: 110px;
  height: 78px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 11px;
}

.device-shape::after {
  position: absolute;
  bottom: 51px;
  left: 50%;
  width: 45px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.82);
  content: "";
  transform: translateX(-50%);
}

.privacy-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--apricot);
  box-shadow: 0 0 0 12px rgba(233, 139, 75, 0.14), 0 0 0 26px rgba(233, 139, 75, 0.07);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  list-style: none;
  overflow: hidden;
}

.steps li {
  min-height: 290px;
  padding: 34px;
  background: var(--paper);
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.steps h3 {
  margin: 72px 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  padding: 68px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green-deep);
}

.privacy-panel .eyebrow {
  color: #a5cdbd;
}

.privacy-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.privacy-copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 680;
}

.privacy-list {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-list li:last-child {
  border-bottom: 0;
}

.privacy-list li > span:first-child {
  color: var(--apricot);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  min-height: 310px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.price-card > p:first-child {
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.price-card h3 {
  margin: 40px 0 16px;
  font-size: 44px;
  letter-spacing: -0.05em;
}

.price-card h3 small {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0;
}

.price-card > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.price-card-featured {
  color: var(--white);
  background: var(--green);
}

.price-card-featured > p:first-of-type,
.price-card-featured > p:last-child,
.price-card-featured h3 small {
  color: rgba(255, 255, 255, 0.7);
}

.price-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--apricot-soft);
  font-size: 11px;
  font-weight: 750;
}

.faq-section .button {
  margin-top: 36px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 54px 27px 0;
  font-size: 18px;
  font-weight: 670;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 820px;
  margin: -8px 0 28px;
  color: var(--ink-soft);
}

.closing {
  padding: 128px 0;
  color: var(--white);
  background: #1c241f;
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.closing img {
  margin-bottom: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.closing .eyebrow {
  color: #a5cdbd;
}

.closing h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.closing p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--paper-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 84px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 100px;
}

.footer-links strong {
  margin-bottom: 7px;
  font-size: 12px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.legal-main {
  min-height: 80vh;
}

.legal-hero {
  padding-block: 110px 76px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(48px, 6vw, 76px);
}

.legal-hero > p:last-child {
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding-block: 82px 130px;
}

.legal-toc {
  position: sticky;
  top: 116px;
  display: grid;
  align-content: start;
  gap: 7px;
  height: max-content;
}

.legal-toc strong {
  margin-bottom: 8px;
  font-size: 12px;
}

.legal-toc a {
  padding: 4px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.legal-toc a:hover {
  color: var(--green);
}

.legal-content section {
  padding: 0 0 54px;
}

.legal-content section + section {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-content .button {
  margin-top: 12px;
}

.policy-callout {
  margin-top: 30px;
  padding: 26px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--green-soft);
}

.policy-callout p {
  margin: 6px 0 0;
  color: var(--green-deep);
}

.support-hero {
  color: var(--white);
  background: var(--green-deep);
}

.support-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: 480px;
  padding-block: 72px;
}

.support-hero h1 {
  font-size: clamp(48px, 6vw, 76px);
}

.support-hero .eyebrow {
  color: #a5cdbd;
}

.support-hero p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.support-hero img {
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  transform: rotate(5deg);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.support-card {
  position: relative;
  min-height: 370px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.support-card-primary {
  background: var(--apricot-soft);
}

.support-card h2 {
  max-width: 520px;
  margin: 8px 0 16px;
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.support-card > p:not(.eyebrow, .support-meta) {
  max-width: 600px;
  color: var(--ink-soft);
}

.support-card .button,
.support-card .text-link {
  margin-top: 18px;
}

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

.support-actions .button {
  margin-top: 0;
}

.support-icon {
  position: absolute;
  top: 34px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
}

.support-meta {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.email-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.email-checklist li {
  position: relative;
  padding-left: 27px;
  color: var(--ink-soft);
  font-size: 14px;
}

.email-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.troubleshoot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.troubleshoot-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.troubleshoot-grid article > span {
  color: var(--apricot);
  font-size: 12px;
  font-weight: 800;
}

.troubleshoot-grid h3 {
  margin: 34px 0 18px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.troubleshoot-grid ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4f1e9;
    --ink-soft: #aeb8b2;
    --paper: #121715;
    --paper-deep: #19211d;
    --surface: #1f2824;
    --surface-muted: #242e29;
    --green: #7cc6a8;
    --green-deep: #174738;
    --green-soft: #213f34;
    --apricot: #f1a46e;
    --apricot-soft: #493127;
    --line: rgba(244, 241, 233, 0.14);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  }

  body::before {
    opacity: 0.16;
    background:
      radial-gradient(circle at 18% 22%, rgba(241, 164, 110, 0.2) 0 1px, transparent 1.5px) 0 0 / 28px 28px,
      radial-gradient(circle at 72% 64%, rgba(124, 198, 168, 0.16) 0 1px, transparent 1.5px) 0 0 / 34px 34px;
  }

  .site-header {
    border-bottom-color: rgba(244, 241, 233, 0.08);
    background: rgba(18, 23, 21, 0.9);
  }

  .product-stage {
    background: #1b2521;
    box-shadow: inset 0 0 0 1px rgba(244, 241, 233, 0.09);
  }

  .product-stage::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 44px 44px,
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 44px 44px;
  }

  .menu-strip {
    border-color: rgba(244, 241, 233, 0.15);
    color: rgba(244, 241, 233, 0.72);
    background: rgba(31, 40, 36, 0.8);
  }

  .menu-status-icon {
    filter: invert(1);
  }

  .app-window {
    border-color: rgba(244, 241, 233, 0.14);
    background: rgba(31, 40, 36, 0.96);
  }

  .window-bar {
    border-bottom-color: rgba(244, 241, 233, 0.09);
  }

  .setting-card {
    border-color: rgba(244, 241, 233, 0.1);
    background: rgba(25, 33, 29, 0.82);
  }

  .setting-card-green {
    border-color: rgba(124, 198, 168, 0.2);
    background: rgba(33, 63, 52, 0.78);
  }

  .metric-card {
    border-color: rgba(244, 241, 233, 0.1);
  }

  .check-bubble,
  .steps li > span,
  .allow-check {
    background: #2f765d;
  }

  .price-card-featured {
    background: #245948;
  }

  .policy-callout {
    background: #1d392f;
  }

  .policy-callout p {
    color: #d6e9e1;
  }

  .support-card-primary {
    border-color: rgba(241, 164, 110, 0.18);
    background: #38291f;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-stage {
    min-height: 600px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .feature-grid,
  .privacy-panel,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .steps li {
    min-height: auto;
  }

  .steps h3 {
    margin-top: 38px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(42, 38, 29, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    padding: 12px 4px;
  }

  .site-nav a::after {
    display: none;
  }

  .language-toggle {
    align-self: flex-start;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    gap: 50px;
    padding-block: 64px 80px;
  }

  .hero h1,
  .legal-hero h1,
  .support-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .product-stage {
    min-height: 480px;
    border-radius: 26px;
  }

  .menu-strip {
    top: 18px;
    right: 18px;
    left: 18px;
  }

  .app-window {
    top: 70px;
    right: 16px;
    left: 16px;
  }

  .window-content {
    padding: 14px;
  }

  .app-title {
    grid-template-columns: auto 1fr;
  }

  .mode-pill {
    display: none;
  }

  .paw-note {
    right: 14px;
    bottom: 16px;
  }

  .statement-inner {
    min-height: 340px;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large {
    min-height: auto;
    padding: 24px;
  }

  .feature-visual {
    min-height: 180px;
  }

  .smart-visual {
    padding: 20px;
  }

  .key {
    width: 52px;
    height: 52px;
  }

  .privacy-panel {
    gap: 40px;
    padding: 38px 24px;
    border-radius: 26px;
  }

  .price-card {
    min-height: 280px;
    padding: 32px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-links {
    gap: 48px;
  }

  .legal-hero {
    padding-block: 72px 56px;
  }

  .legal-layout {
    gap: 50px;
    padding-block: 50px 90px;
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
  }

  .support-hero-inner {
    align-items: flex-start;
    min-height: 520px;
  }

  .support-hero img {
    width: 86px;
    height: 86px;
    margin-top: 22px;
    border-radius: 20px;
  }

  .support-card {
    min-height: auto;
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row .metric-card:last-child {
    display: none;
  }

  .support-hero-inner {
    display: block;
  }

  .support-hero img {
    margin-top: 34px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .skip-link {
    display: none;
  }

  body {
    background: #fff;
  }

  .legal-layout {
    display: block;
    padding-top: 32px;
  }
}
