:root {
  color-scheme: light;
  --ink: #101c2b;
  --ink-soft: #30445a;
  --muted: #657487;
  --paper: #f7f5ef;
  --paper-deep: #efede5;
  --white: #ffffff;
  --line: rgba(16, 28, 43, 0.12);
  --line-strong: rgba(16, 28, 43, 0.22);
  --sky: #bcecff;
  --sky-strong: #35b9eb;
  --aqua: #9be3d0;
  --aqua-strong: #1aa77e;
  --sun: #ffb55f;
  --coral: #ff765c;
  --night: #0c1623;
  --shadow-soft: 0 24px 70px rgba(24, 48, 73, 0.12);
  --shadow-phone: 0 45px 90px rgba(8, 21, 35, 0.3), 0 12px 30px rgba(8, 21, 35, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--ink);
}

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

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--night);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(247, 245, 239, 0.84);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

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

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(12, 22, 35, 0.18);
}

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

.site-nav > a:not(.language-pill) {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.language-pill):hover {
  color: var(--ink);
}

.language-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 99px;
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 124px) 0 88px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 181, 95, 0.28), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(53, 185, 235, 0.32), transparent 34%),
    linear-gradient(145deg, #f9f7f0 0%, #edf8f7 54%, #e5f4fb 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 7%;
  right: -8%;
  width: 55vw;
  height: 55vw;
  border: 2px dashed rgba(16, 28, 43, 0.12);
  border-radius: 47% 53% 64% 36%;
  transform: rotate(-12deg);
}

.hero::after {
  bottom: -210px;
  left: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(155, 227, 208, 0.24);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 8vw, 108px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #176c75;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 86px);
  font-weight: 860;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.hero h1 .accent {
  display: block;
  color: #167e8d;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.85;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--night);
  box-shadow: 0 13px 30px rgba(12, 22, 35, 0.22);
}

.button-primary:not(.is-disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(12, 22, 35, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.button.is-disabled {
  color: rgba(255, 255, 255, 0.78);
  cursor: default;
  box-shadow: none;
}

.button .button-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1;
}

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

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.trust-list li::before {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua-strong);
  content: "";
  box-shadow: 0 0 0 4px rgba(26, 167, 126, 0.12);
}

.device-demo {
  position: relative;
  display: grid;
  justify-items: center;
  touch-action: pan-y;
  user-select: none;
}

.device-glow {
  position: absolute;
  top: 10%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 185, 235, 0.42), rgba(155, 227, 208, 0.12) 48%, transparent 70%);
  filter: blur(12px);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(338px, 76vw);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 54px;
  background: linear-gradient(145deg, #343940 0%, #090c10 28%, #171a20 72%, #535860 100%);
  box-shadow: var(--shadow-phone);
  transform: rotate(2.6deg) perspective(1000px) rotateY(-4deg);
}

.phone-shell::before,
.phone-shell::after {
  position: absolute;
  left: -4px;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: #252930;
  content: "";
}

.phone-shell::before {
  top: 128px;
  height: 72px;
}

.phone-shell::after {
  top: 218px;
  height: 116px;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1320 / 2868;
  border-radius: 47px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.phone-screen-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 420ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.phone-screen-panel.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.phone-screen-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-note {
  position: absolute;
  z-index: 4;
  right: max(-28px, -3vw);
  bottom: 19%;
  display: grid;
  min-width: 116px;
  gap: 3px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(22, 49, 73, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: rotate(-3deg);
}

.device-note span:first-child {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-note strong {
  font-size: 14px;
}

.screen-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(24, 48, 73, 0.1);
  backdrop-filter: blur(12px);
}

.screen-tab,
.demo-play {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.screen-tab {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.screen-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--night);
}

.demo-play {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0;
}

.demo-play::before {
  display: inline-block;
  width: 8px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  vertical-align: middle;
}

.demo-play[data-paused="true"]::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.sr-only,
.screen-status {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.stat-strip {
  position: relative;
  z-index: 4;
  margin-top: -32px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-soft);
}

.stat-item {
  padding: 25px clamp(18px, 4vw, 42px);
}

.stat-item + .stat-item {
  border-left: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.stat-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.section-tight {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-kicker {
  margin: 0 0 16px;
  color: #167e8d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 67px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
}

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

.feature-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(24, 48, 73, 0.07);
}

.feature-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--card-accent, var(--sky));
  content: "";
  opacity: 0.55;
}

.feature-card:nth-child(2) {
  --card-accent: var(--aqua);
  transform: translateY(22px);
}

.feature-card:nth-child(3) {
  --card-accent: #ffd9b0;
}

.feature-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 850;
}

.feature-card h3 {
  max-width: 280px;
  margin: 58px 0 14px;
  font-size: clamp(24px, 2.4vw, 31px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.feature-trace {
  position: absolute;
  right: 24px;
  bottom: 21px;
  z-index: 1;
  width: 86px;
  height: 86px;
  border: 2px dashed rgba(16, 28, 43, 0.4);
  border-radius: 44% 56% 38% 62%;
  transform: rotate(-20deg);
}

.feature-trace::before,
.feature-trace::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.feature-trace::before {
  top: -8px;
  left: 8px;
}

.feature-trace::after {
  right: -8px;
  bottom: 8px;
  background: var(--aqua-strong);
}

.showcase-section {
  overflow: hidden;
  padding: clamp(92px, 11vw, 156px) 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(53, 185, 235, 0.18), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(255, 181, 95, 0.16), transparent 28%),
    #eef4f4;
}

.showcase-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(32px, 7vw, 88px);
}

.showcase-heading-row .section-heading {
  max-width: 820px;
}

.showcase-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
}

.showcase-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  width: min(1480px, calc(100% - 40px));
  margin: 56px auto 0;
  gap: clamp(16px, 2.4vw, 30px);
}

.showcase-rail-three {
  grid-template-columns: repeat(3, minmax(260px, 340px));
  justify-content: center;
}

.showcase-shot {
  min-width: 0;
  margin: 0;
  padding: 10px 10px 24px;
  border: 1px solid rgba(16, 28, 43, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(18, 45, 68, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.showcase-shot:nth-child(even) {
  transform: translateY(26px);
}

.showcase-shot:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 78px rgba(18, 45, 68, 0.18);
}

.showcase-shot:nth-child(even):hover {
  transform: translateY(18px);
}

.showcase-shot img {
  width: 100%;
  aspect-ratio: 349 / 760;
  border-radius: 25px;
  object-fit: cover;
  background: #dfe7e9;
}

.showcase-shot figcaption {
  display: grid;
  gap: 4px;
  padding: 20px 14px 0;
}

.showcase-shot figcaption strong {
  font-size: 17px;
  letter-spacing: -0.025em;
}

.showcase-shot figcaption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(53, 185, 235, 0.2), transparent 25%),
    radial-gradient(circle at 8% 90%, rgba(155, 227, 208, 0.14), transparent 28%),
    var(--night);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 9vw, 118px);
}

.privacy-section .section-kicker {
  color: var(--aqua);
}

.privacy-section .section-heading {
  max-width: 720px;
}

.privacy-section .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.privacy-points {
  display: grid;
  gap: 13px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-points li::before {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--aqua);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.privacy-disclosure {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.privacy-link {
  display: inline-flex;
  margin-top: 25px;
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 5px;
}

.privacy-visual {
  position: relative;
  min-height: 460px;
}

.privacy-orbit {
  position: absolute;
  inset: 6% 0 auto;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 48% 52% 62% 38%;
  transform: rotate(18deg);
}

.privacy-card {
  position: absolute;
  display: grid;
  width: min(300px, 85%);
  min-height: 178px;
  align-content: space-between;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.privacy-card:first-of-type {
  top: 12%;
  left: 0;
  transform: rotate(-5deg);
}

.privacy-card:last-of-type {
  right: 0;
  bottom: 5%;
  transform: rotate(5deg);
}

.privacy-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--night);
  background: var(--aqua);
  font-size: 23px;
  font-weight: 900;
}

.privacy-card:last-of-type .privacy-card-icon {
  background: var(--sky);
}

.privacy-card strong {
  display: block;
  margin-top: 24px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.privacy-card span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 55px;
  border-top: 1px solid var(--line-strong);
}

.step {
  padding: 30px 30px 0 0;
}

.step + .step {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.step-index {
  color: #167e8d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 34px 0 10px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.pro-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: clamp(40px, 7vw, 78px);
  border: 1px solid rgba(16, 28, 43, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 181, 95, 0.48), transparent 30%),
    linear-gradient(135deg, #dff7ff, #e5f7ec 58%, #fff3df);
  box-shadow: var(--shadow-soft);
}

.pro-panel::after {
  position: absolute;
  right: 4%;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 2px dashed rgba(16, 28, 43, 0.15);
  border-radius: 50%;
  content: "";
}

.pro-copy {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.pro-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 59px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.pro-copy p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.pro-badge {
  position: relative;
  z-index: 1;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 38px;
  color: var(--white);
  background: var(--night);
  box-shadow: 0 22px 40px rgba(16, 28, 43, 0.24);
  font-size: 31px;
  font-weight: 860;
  letter-spacing: -0.05em;
  transform: rotate(5deg);
}

.cta-section {
  text-align: center;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 10vw, 112px) 24px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--night);
}

.cta-card::before,
.cta-card::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.cta-card::before {
  top: -170px;
  left: -70px;
  background: rgba(53, 185, 235, 0.34);
}

.cta-card::after {
  right: -80px;
  bottom: -190px;
  background: rgba(155, 227, 208, 0.28);
}

.cta-card h2,
.cta-card p,
.cta-card .cta-actions {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(39px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.cta-card p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-card .cta-actions {
  justify-content: center;
}

.cta-card .button-primary {
  color: var(--night);
  background: var(--white);
}

.cta-card .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.site-footer {
  padding: 48px 0 38px;
  border-top: 1px solid var(--line);
}

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

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-analytics-button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.footer-analytics-button:hover {
  color: var(--ink);
}

.analytics-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  width: min(920px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: var(--white);
  background: rgba(12, 22, 35, 0.97);
  box-shadow: 0 24px 70px rgba(8, 21, 35, 0.34);
}

.analytics-consent-copy {
  display: grid;
  gap: 5px;
}

.analytics-consent-copy strong {
  font-size: 17px;
}

.analytics-consent-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.65;
}

.analytics-consent-copy a {
  width: max-content;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 750;
}

.analytics-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.analytics-consent-button {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.analytics-consent-decline {
  color: var(--white);
  background: transparent;
}

.analytics-consent-accept {
  border-color: var(--white);
  color: var(--night);
  background: var(--white);
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.legal-hero {
  padding: clamp(62px, 9vw, 112px) 0 52px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 14%, rgba(53, 185, 235, 0.22), transparent 30%),
    linear-gradient(145deg, #fbf9f3, #edf8f7);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(43px, 6vw, 72px);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.legal-hero .lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.effective-date {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(50px, 9vw, 120px);
  padding: 70px 0 120px;
}

.legal-toc {
  position: sticky;
  top: 106px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

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

.legal-content section {
  padding: 0 0 42px;
  scroll-margin-top: 104px;
}

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

.legal-content h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3vw, 33px);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}

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

.legal-content p {
  margin: 10px 0;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 9px;
  padding-left: 23px;
}

.legal-content a {
  color: #096d9d;
  font-weight: 700;
  text-underline-offset: 3px;
}

.notice-box {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--aqua-strong);
  border-radius: 0 14px 14px 0;
  background: #e9f7f2;
}

.notice-box p {
  margin: 0;
}

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

.support-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.support-card h2 {
  font-size: 21px;
}

.support-card p {
  font-size: 14px;
}

.support-contact {
  margin-top: 44px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 24px;
  color: var(--white);
  background: var(--night);
}

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

.support-contact p {
  color: rgba(255, 255, 255, 0.7);
}

.support-contact .button {
  margin-top: 12px;
  color: var(--night);
  background: var(--white);
}

.gateway,
.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 181, 95, 0.28), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(53, 185, 235, 0.3), transparent 34%),
    var(--paper);
}

.gateway-card,
.not-found-card {
  width: min(580px, 100%);
  padding: clamp(34px, 7vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.gateway-card img,
.not-found-card img {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 22px;
}

.gateway-card h1,
.not-found-card h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 56px);
  letter-spacing: -0.055em;
}

.gateway-card p,
.not-found-card p {
  color: var(--muted);
}

.language-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.language-options a {
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

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

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

  .device-demo {
    margin-top: 15px;
  }

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

  .feature-card:nth-child(2) {
    transform: none;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }

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

  .showcase-intro {
    max-width: 700px;
  }

  .showcase-rail,
  .showcase-rail-three {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    overflow-x: auto;
    justify-content: start;
    width: 100%;
    padding: 0 20px 44px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .showcase-shot {
    width: min(76vw, 330px);
    scroll-snap-align: center;
  }

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

  .privacy-visual {
    width: min(520px, 100%);
    min-height: 420px;
    margin-inline: auto;
  }

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

  .legal-toc {
    position: static;
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--content));
  }

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav > a:not(.language-pill) {
    padding: 12px;
  }

  .language-pill {
    margin-top: 6px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 67px);
  }

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

  .stat-item + .stat-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .feature-card:last-child {
    grid-column: auto;
  }

  .showcase-section {
    padding-block: 82px;
  }

  .showcase-rail {
    grid-template-columns: repeat(4, minmax(256px, 78vw));
    margin-top: 38px;
  }

  .showcase-rail-three {
    grid-template-columns: repeat(3, minmax(256px, 78vw));
  }

  .showcase-shot:nth-child(even),
  .showcase-shot:nth-child(even):hover {
    transform: none;
  }

  .steps-grid {
    gap: 0;
  }

  .step,
  .step + .step {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps-grid .step:first-child {
    border-top: 0;
  }

  .step h3 {
    margin-top: 19px;
  }

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

  .pro-badge {
    width: 112px;
    height: 112px;
    border-radius: 29px;
    font-size: 25px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .analytics-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .phone-shell {
    border-radius: 47px;
  }

  .phone-screen {
    border-radius: 40px;
  }

  .device-note {
    right: -4px;
    bottom: 16%;
    min-width: 104px;
  }

  .screen-controls {
    width: 100%;
    justify-content: center;
  }

  .screen-tab {
    flex: 1;
    padding-inline: 7px;
  }

  .privacy-visual {
    min-height: 370px;
  }

  .privacy-card {
    width: 82%;
  }

  .language-options {
    grid-template-columns: 1fr;
  }

  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 17px;
    border-radius: 19px;
  }

  .analytics-consent-actions {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}
