:root {
  color-scheme: light dark;
  --bg: #f7fbfb;
  --bg-elevated: rgba(255, 255, 255, 0.68);
  --bg-strong: #ffffff;
  --text: #0b1718;
  --muted: #5d6a6c;
  --soft: #e8f2f1;
  --line: rgba(9, 32, 32, 0.11);
  --brand: #12bdb5;
  --brand-strong: #079a95;
  --brand-dark: #063f41;
  --accent: #5a7cff;
  --warning: #ffb64a;
  --shadow: 0 24px 80px rgba(10, 51, 53, 0.14);
  --shadow-soft: 0 16px 48px rgba(10, 51, 53, 0.1);
  --glass: blur(22px) saturate(160%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --section: min(1120px, calc(100% - 40px));
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  --bg: #071212;
  --bg-elevated: rgba(15, 31, 31, 0.68);
  --bg-strong: #0e1d1d;
  --text: #edf9f8;
  --muted: #9fb2b3;
  --soft: #112a2b;
  --line: rgba(218, 255, 252, 0.13);
  --brand: #30dad0;
  --brand-strong: #73f4e8;
  --brand-dark: #b9fffa;
  --accent: #9eafff;
  --warning: #ffd18a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #071212;
    --bg-elevated: rgba(15, 31, 31, 0.68);
    --bg-strong: #0e1d1d;
    --text: #edf9f8;
    --muted: #9fb2b3;
    --soft: #112a2b;
    --line: rgba(218, 255, 252, 0.13);
    --brand: #30dad0;
    --brand-strong: #73f4e8;
    --brand-dark: #b9fffa;
    --accent: #9eafff;
    --warning: #ffd18a;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(18, 189, 181, 0.18), transparent 34rem),
    radial-gradient(circle at 92% 14%, rgba(90, 124, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg) 54%, color-mix(in srgb, var(--bg), var(--soft) 56%));
  font-family: var(--font);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(127, 155, 153, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 155, 153, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 68%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 68%, transparent);
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: #041818;
  background: rgba(48, 218, 208, 0.45);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
}

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

.section-shell {
  max-width: 100%;
  min-width: 0;
  width: var(--section);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  max-width: 100%;
  width: var(--section);
  margin: 14px auto 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-elevated);
  box-shadow: 0 10px 40px rgba(6, 35, 36, 0.08);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 760;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(8, 114, 111, 0.16);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 4px;
  border: 1px solid color-mix(in srgb, var(--line), transparent 40%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-strong), transparent 48%);
}

.nav-links a {
  min-width: 0;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 660;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: color-mix(in srgb, var(--brand), transparent 85%);
}

.theme-toggle {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: color-mix(in srgb, var(--bg-strong), transparent 34%);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand), var(--line) 50%);
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: inset -6px -5px 0 color-mix(in srgb, var(--bg-strong), transparent 8%);
}

:root[data-theme="dark"] .theme-toggle__icon {
  box-shadow: 0 -8px 0 -5px currentColor, 0 8px 0 -5px currentColor, 8px 0 0 -5px currentColor, -8px 0 0 -5px currentColor, inset 0 0 0 8px currentColor;
  background: transparent;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__icon {
    box-shadow: 0 -8px 0 -5px currentColor, 0 8px 0 -5px currentColor, 8px 0 0 -5px currentColor, -8px 0 0 -5px currentColor, inset 0 0 0 8px currentColor;
    background: transparent;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-width: 0;
  min-height: calc(100vh - 110px);
  padding: clamp(60px, 8vw, 118px) 0 80px;
}

.hero__media {
  position: absolute;
  inset: 3% 0 auto auto;
  z-index: -1;
  width: min(62vw, 760px);
  opacity: 0.78;
  filter: saturate(1.08);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  border-radius: 44px;
  -webkit-mask-image: radial-gradient(circle at 70% 45%, black 0 48%, transparent 76%);
  mask-image: radial-gradient(circle at 70% 45%, black 0 48%, transparent 76%);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 820;
  hyphens: auto;
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--muted), var(--text) 16%);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__content,
.page-hero__content,
.feature-card,
.topic-card,
.metric-card,
.support-contact,
.legal-card,
.privacy-panel,
.cta__inner,
.faq-list details,
.faq-list summary {
  min-width: 0;
}

.section-heading h2,
.privacy-panel h2,
.cta h2,
.support-contact h2,
.topic-card h2,
.legal-card h2,
.faq-section h2,
.feature-card h3,
.faq-list summary {
  hyphens: auto;
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-badge,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-badge {
  gap: 12px;
  padding: 9px 18px 9px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #101819, #0b2425 52%, #074c4c);
  box-shadow: 0 18px 44px rgba(2, 33, 34, 0.22);
}

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

.store-badge__glyph {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, #63fff0, #5b72ff);
}

.store-badge__glyph::before,
.store-badge__glyph::after {
  position: absolute;
  inset: 8px 6px;
  border-radius: 999px;
  background: #ffffff;
  content: "";
  transform: rotate(32deg);
}

.store-badge__glyph::after {
  transform: rotate(-32deg);
}

.store-badge small,
.store-badge strong {
  display: block;
  line-height: 1.05;
}

.store-badge small {
  opacity: 0.78;
  font-size: 0.72rem;
  font-weight: 620;
}

.store-badge strong {
  font-size: 1.12rem;
}

.button {
  padding: 0 20px;
}

.button--soft {
  border-color: var(--line);
  color: var(--text);
  background: var(--bg-elevated);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
}

.button--primary {
  color: #041818;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 18px 40px rgba(10, 189, 181, 0.24);
}

.privacy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--bg-strong), transparent 54%);
  font-size: 0.9rem;
  font-weight: 650;
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
}

.hero__visual {
  min-width: 0;
}

.device-cluster {
  position: relative;
  max-width: 100%;
  min-height: 640px;
  isolation: isolate;
}

.device-cluster::before {
  position: absolute;
  inset: 14% 6% 8%;
  z-index: -1;
  border-radius: 45%;
  background: radial-gradient(circle, rgba(48, 218, 208, 0.2), transparent 62%);
  filter: blur(24px);
  content: "";
}

.device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 247, 247, 0.42));
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
}

:root[data-theme="dark"] .device {
  border-color: rgba(225, 255, 252, 0.16);
  background: linear-gradient(145deg, rgba(31, 53, 54, 0.82), rgba(10, 24, 25, 0.62));
}

.device--tablet {
  top: 54px;
  right: 0;
  width: min(100%, 520px);
  aspect-ratio: 1.18;
  padding: 16px;
  border-radius: 38px;
  transform: rotate(1.5deg);
}

.device--phone {
  bottom: 28px;
  left: 0;
  width: min(45%, 242px);
  aspect-ratio: 0.49;
  padding: 12px;
  border-radius: 42px;
  transform: rotate(-5deg);
}

.device__screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--line), transparent 25%);
  border-radius: inherit;
  background:
    radial-gradient(circle at 80% 10%, rgba(90, 124, 255, 0.22), transparent 34%),
    radial-gradient(circle at 22% 16%, rgba(48, 218, 208, 0.23), transparent 38%),
    linear-gradient(160deg, color-mix(in srgb, var(--bg-strong), var(--soft) 30%), color-mix(in srgb, var(--soft), var(--bg) 20%));
  padding: 26px;
}

.app-topbar,
.mini-grid,
.timeline-list,
.compact-list {
  position: relative;
  z-index: 1;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.status-card,
.mini-grid > div,
.timeline-list span {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-strong), transparent 28%);
  box-shadow: 0 12px 34px rgba(7, 48, 49, 0.08);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
}

.status-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
}

.status-card--large {
  min-height: 154px;
  margin-bottom: 16px;
}

.status-card strong {
  color: var(--text);
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1;
}

.status-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.status-card__label {
  color: var(--brand-strong) !important;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mini-grid > div {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
}

.mini-grid span,
.timeline-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-grid strong {
  font-size: 1.12rem;
}

.timeline-list {
  display: grid;
  gap: 9px;
}

.timeline-list span {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
}

.phone-pill {
  width: 78px;
  height: 22px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text), transparent 84%);
}

.app-icon {
  margin: 0 auto 24px;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(5, 75, 74, 0.2);
}

.device--phone .status-card {
  margin-bottom: 18px;
}

.device--phone .status-card strong {
  font-size: 2.2rem;
}

.compact-list {
  display: grid;
  gap: 9px;
}

.compact-list span {
  height: 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text), transparent 88%);
}

.compact-list span:nth-child(2) {
  width: 78%;
}

.compact-list span:nth-child(3) {
  width: 62%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -36px;
}

.metric-card,
.feature-card,
.topic-card,
.support-contact,
.legal-card,
.cta__inner,
.privacy-panel,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
}

.metric-card {
  min-height: 152px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.metric-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-strong);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 830;
  line-height: 1;
}

.metric-card p {
  margin: 0;
  font-weight: 650;
}

.feature-section,
.privacy-section,
.cta,
.faq-section,
.support-layout,
.legal-shell {
  padding: clamp(72px, 10vw, 132px) 0 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading h2,
.privacy-panel h2,
.cta h2,
.support-contact h2,
.topic-card h2,
.legal-card h2,
.faq-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.section-heading p {
  margin-bottom: 0;
}

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

.feature-card,
.topic-card {
  min-height: 254px;
  padding: 26px;
  border-radius: var(--radius-md);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover,
.topic-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand), var(--line) 50%);
}

.feature-card h3,
.topic-card h2 {
  margin: 20px 0 10px;
  font-size: 1.24rem;
  font-weight: 790;
}

.feature-card p,
.topic-card p {
  margin-bottom: 0;
}

.icon {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand), transparent 50%);
  border-radius: 16px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.74), transparent 38%),
    linear-gradient(135deg, color-mix(in srgb, var(--brand), white 24%), color-mix(in srgb, var(--accent), var(--brand) 36%));
  box-shadow: 0 14px 30px rgba(9, 151, 146, 0.18);
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon--calendar::before {
  width: 22px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 6px;
}

.icon--calendar::after {
  width: 18px;
  height: 2px;
  background: #ffffff;
  transform: translateY(-5px);
}

.icon--garage::before {
  width: 25px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 0;
  transform: translateY(3px);
}

.icon--garage::after {
  width: 16px;
  height: 7px;
  border: 2px solid #ffffff;
  border-radius: 8px 8px 3px 3px;
  transform: translateY(7px);
}

.icon--shield::before {
  width: 22px;
  height: 25px;
  border: 2px solid #ffffff;
  border-radius: 12px 12px 14px 14px;
  clip-path: polygon(50% 0, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0 18%);
}

.icon--flame::before {
  width: 19px;
  height: 25px;
  border-radius: 16px 16px 18px 4px;
  background: #ffffff;
  transform: rotate(35deg);
}

.icon--lock::before {
  width: 22px;
  height: 18px;
  border-radius: 6px;
  background: #ffffff;
  transform: translateY(5px);
}

.icon--lock::after {
  width: 16px;
  height: 16px;
  border: 3px solid #ffffff;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateY(-5px);
}

.icon--cloud::before {
  width: 26px;
  height: 15px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateY(4px);
}

.icon--cloud::after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 10px 4px 0 -2px #ffffff;
  transform: translate(-5px, -2px);
}

.icon--mail::before {
  width: 24px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.icon--mail::after {
  width: 16px;
  height: 16px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-4px) rotate(45deg);
}

.icon--plus::before,
.icon--plus::after {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.icon--plus::after {
  transform: rotate(90deg);
}

.icon--spark::before {
  width: 24px;
  height: 24px;
  background: #ffffff;
  clip-path: polygon(50% 0, 61% 35%, 98% 50%, 61% 63%, 50% 100%, 38% 63%, 0 50%, 38% 35%);
}

.icon--file::before {
  width: 21px;
  height: 27px;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.icon--file::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translate(6px, -8px);
}

.icon--image::before {
  width: 25px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 6px;
}

.icon--image::after {
  width: 16px;
  height: 10px;
  background: #ffffff;
  clip-path: polygon(0 100%, 35% 35%, 55% 64%, 72% 42%, 100% 100%);
  transform: translateY(5px);
}

.icon--download::before {
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateY(-4px);
}

.icon--download::after {
  width: 18px;
  height: 18px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translateY(2px) rotate(45deg);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bg-elevated), var(--brand) 10%), var(--bg-elevated)),
    radial-gradient(circle at 15% 15%, rgba(48, 218, 208, 0.18), transparent 34%);
}

.privacy-copy p {
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  color: var(--brand-strong);
  font-weight: 780;
}

.text-link::after {
  margin-left: 8px;
  content: "->";
}

.cta {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.cta__inner {
  display: grid;
  justify-items: center;
  padding: clamp(36px, 6vw, 70px);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta__inner img {
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(9, 141, 137, 0.24);
}

.cta p {
  max-width: 560px;
  margin-bottom: 24px;
}

.page-hero {
  padding: clamp(70px, 10vw, 128px) 0 0;
}

.page-hero__content {
  max-width: 820px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.12rem;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) 1fr;
  gap: 18px;
  align-items: start;
}

.support-contact {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.support-contact h2 {
  margin: 20px 0 12px;
  font-size: 1.52rem;
}

.support-contact p {
  margin-bottom: 20px;
}

.support-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.faq-list details {
  border-radius: var(--radius-md);
  transition: transform 220ms ease, border-color 220ms ease;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--brand-strong);
  content: "+";
  font-size: 1.45rem;
  line-height: 1;
}

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

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

.legal-shell {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.legal-card {
  max-width: 880px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-lg);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

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

.legal-card p,
.legal-card address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.72;
}

.legal-card a {
  color: var(--brand-strong);
  font-weight: 740;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 26px 0 34px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--section);
  margin-inline: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 660;
}

.footer-shell a:hover,
.footer-shell a:focus-visible {
  color: var(--brand-strong);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand), transparent 35%);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --section: min(calc(100% - 32px), 740px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero__media {
    inset: 10% 0 auto auto;
    width: min(92vw, 640px);
    opacity: 0.42;
  }

  .device-cluster {
    min-height: 560px;
  }

  .device--tablet {
    width: min(92%, 520px);
  }

  .device--phone {
    width: min(42%, 225px);
  }

  .metrics,
  .feature-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-contact {
    position: static;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px 10px;
    min-height: 0;
    padding: 9px;
    border-radius: 24px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .theme-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 38px;
    height: 38px;
  }

  .nav-links {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: hidden;
    overflow: clip;
    width: 100%;
    border-radius: 18px;
  }

  .nav-links a {
    min-width: 0;
    padding: 8px 5px;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(0.72rem, 3.15vw, 0.84rem);
  }

  .hero {
    padding-top: clamp(26px, 7vw, 34px);
    padding-bottom: clamp(44px, 11vw, 56px);
  }

  .hero__media {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(1.92rem, 9.35vw, 2.95rem);
    line-height: 1.06;
  }

  .hero__lead,
  .page-hero p:not(.eyebrow) {
    font-size: clamp(0.96rem, 3.75vw, 1.05rem);
    line-height: 1.6;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .hero__actions {
    align-items: stretch;
    gap: 10px;
  }

  .store-badge,
  .button {
    width: 100%;
    min-height: 50px;
  }

  .device-cluster {
    min-height: clamp(285px, 78vw, 400px);
  }

  .device--tablet {
    right: 1px;
    width: 90%;
    padding: 10px;
    border-radius: 30px;
  }

  .device--phone {
    bottom: 8px;
    left: 0;
    width: min(44%, 210px);
    padding: 8px;
    border-radius: 30px;
  }

  .device__screen {
    padding: 16px;
  }

  .status-card strong {
    font-size: 1.75rem;
  }

  .status-card--large {
    min-height: 128px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .timeline-list {
    display: none;
  }

  .metrics {
    margin-top: 0;
    gap: 12px;
  }

  .metric-card,
  .feature-card,
  .topic-card,
  .support-contact,
  .legal-card,
  .cta__inner,
  .privacy-panel,
  .faq-list details {
    border-radius: 18px;
  }

  .metric-card,
  .feature-card,
  .topic-card,
  .support-contact {
    padding: clamp(18px, 5.6vw, 22px);
  }

  .metric-card {
    min-height: auto;
  }

  .metric-card span {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .feature-section,
  .privacy-section,
  .cta,
  .faq-section,
  .support-layout,
  .legal-shell {
    padding-top: clamp(52px, 14vw, 76px);
  }

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

  .section-heading h2,
  .privacy-panel h2,
  .cta h2,
  .support-contact h2,
  .topic-card h2,
  .legal-card h2,
  .faq-section h2 {
    font-size: clamp(1.55rem, 7.6vw, 2.22rem);
    line-height: 1.08;
  }

  .feature-grid,
  .support-topics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card,
  .topic-card {
    min-height: auto;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

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

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

  .nav-links a {
    padding-inline: 4px;
    font-size: clamp(0.7rem, 3.1vw, 0.8rem);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.82rem, 8.7vw, 2.34rem);
  }

  .hero__lead,
  .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .privacy-list li {
    width: 100%;
    padding: 8px 11px;
    font-size: 0.84rem;
  }

  .device-cluster {
    min-height: clamp(270px, 80vw, 340px);
  }

  .device--phone {
    width: 44%;
  }

  .app-icon {
    width: 54px;
    height: 54px;
  }

  .store-badge {
    gap: 10px;
  }

  .store-badge strong {
    font-size: 1rem;
  }

  .store-badge small {
    font-size: 0.68rem;
  }
}

@media (max-width: 360px) {
  :root {
    --section: calc(100% - 20px);
  }

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

  .nav-links a {
    padding-inline: 3px;
    font-size: 0.68rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.68rem, 8.4vw, 1.95rem);
  }

  .hero__lead,
  .page-hero p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .feature-card,
  .topic-card,
  .support-contact,
  .metric-card {
    padding: 17px;
  }
}

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