/* =========================================================
   Отжимайся — landing site
   Aesthetic: elevated athletic glass — light, energetic,
   soft gradients, premium device frames
   ========================================================= */

:root {
  /* Brand / progress */
  --green: #34C759;
  --green-deep: #1FA84A;
  --blue: #0A84FF;
  --blue-deep: #0066D6;
  --cyan: #5DD9C1;
  --mint: #A8F3B5;
  --orange: #FF9500;
  --red: #FF3B30;

  /* Surface */
  --bg: #F4F7FA;
  --bg-tint: #EEF4F8;
  --surface: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.85);
  --hairline: rgba(11, 38, 60, 0.08);

  /* Ink */
  --ink: #0A1620;
  --ink-mid: #3C4856;
  --ink-soft: #6F7C8A;
  --ink-faint: #A2ADBA;

  /* Brand gradient */
  --grad-brand: linear-gradient(135deg, var(--green) 0%, var(--blue) 90%);

  /* Effects */
  --shadow-card: 0 1px 2px rgba(11, 38, 60, 0.04), 0 16px 40px -12px rgba(11, 38, 60, 0.18);
  --shadow-elevated: 0 2px 4px rgba(11, 38, 60, 0.06), 0 28px 80px -20px rgba(10, 132, 255, 0.22);

  /* Type */
  --font-display: "Bricolage Grotesque", "PT Sans", sans-serif;
  --font-body: "Manrope", "PT Sans", -apple-system, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;

  /* Spacing rhythm (8pt) */
  --space-section: clamp(64px, 10vw, 130px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 14px 14px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* =========================================================
   Ambient — drifting gradient orbs + grain
   ========================================================= */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  will-change: transform;
}
.blob-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: -160px; left: -160px;
  animation: drift1 28s ease-in-out infinite alternate;
}
.blob-2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: 30%; right: -200px;
  animation: drift2 36s ease-in-out infinite alternate;
}
.blob-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  bottom: -160px; left: 30%;
  animation: drift3 32s ease-in-out infinite alternate;
  opacity: 0.45;
}

@keyframes drift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.1); }
}
@keyframes drift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, 80px) scale(1.15); }
}
@keyframes drift3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -60px) scale(1.05); }
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

main, .nav, .footer { position: relative; z-index: 1; }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 10px 12px 10px 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 0.5px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-left: auto;
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--blue); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
  flex-shrink: 0;
  padding: 9px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(10, 22, 32, 0.18);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(10, 22, 32, 0.26); }

@media (max-width: 900px) {
  .nav-links { gap: 18px; font-size: 14px; }
}
@media (max-width: 760px) {
  .nav { padding: 9px 10px 9px 14px; margin: 12px 12px 0; gap: 10px; }
  .nav-links { display: none; }
  .nav-brand { font-size: 16px; }
  .nav-icon { width: 28px; height: 28px; }
  .nav-cta { font-size: 13px; padding: 8px 14px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  max-width: 1000px;
  margin: 72px auto 0;
  padding: 0 24px var(--space-section);
  text-align: center;
}

.hero-glow {
  position: absolute;
  width: 760px; height: 760px;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(93, 217, 193, 0.35) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  margin: 0 auto 32px;
  background: var(--glass-strong);
  border: 0.5px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-mid);
}
.hero-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.22); }
  50% { box-shadow: 0 0 0 7px rgba(52, 199, 89, 0.08); }
}

.hero-icon-wrap {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 32px;
}
.hero-icon {
  width: 148px;
  height: 148px;
  border-radius: 33px;
  box-shadow:
    0 12px 32px rgba(10, 132, 255, 0.25),
    0 4px 12px rgba(52, 199, 89, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  animation: iconFloat 6s ease-in-out infinite;
}
.hero-icon-halo {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 199, 89, 0.25), transparent 60%);
  filter: blur(20px);
  animation: halo 4s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes halo {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 11vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 24px;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-amp {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-tagline {
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
  color: var(--ink-mid);
  max-width: 600px;
  margin: 0 auto 38px;
  font-weight: 500;
}
.hero-tagline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 1.08em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px 13px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(10, 22, 32, 0.2);
}
.cta-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10, 22, 32, 0.28);
}
.cta-badge span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1;
}
.badge-small {
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.badge-big {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  background: var(--glass-strong);
  border: 0.5px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, color 0.2s;
}
.cta-ghost:hover { transform: translateY(-2px); color: var(--blue); }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  background: rgba(255, 255, 255, 0.5);
  border: 0.5px solid var(--glass-border);
  border-radius: 100px;
}
.hero-chips svg { color: var(--green-deep); }

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 64px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-scroll svg { animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Shared section headings
   ========================================================= */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-intro {
  font-size: 18px;
  color: var(--ink-mid);
  margin: 0 auto;
  max-width: 560px;
}

.feature-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.feature-eyebrow.centered { text-align: center; }

/* =========================================================
   How it works — numbered steps
   ========================================================= */
.how {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-section) 24px 0;
}
.how-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px 28px;
  background: var(--glass-strong);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0.8;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.step-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0;
}

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   Features
   ========================================================= */
.features {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-section) 24px 0;
}
.features-head {
  text-align: center;
  margin: 0 auto 24px;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 64px 0;
}

.feature-text { max-width: 480px; }
.feature-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--ink);
}
.feature-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin: 0 0 20px;
}
.feature-body strong {
  color: var(--ink);
  font-weight: 700;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  font-size: 15px;
  color: var(--ink-mid);
}
.feature-bullets li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 0.5px solid var(--hairline);
}
.feature-bullets li:last-child { border-bottom: none; }
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  background: var(--grad-brand);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(52, 199, 89, 0.4);
}

.feature-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1100px;
}

/* Realistic premium device frame */
.device {
  position: relative;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 393 / 850;
  border-radius: 52px;
  padding: 11px;
  background:
    linear-gradient(150deg, #f3f6fa 0%, #c9d4df 22%, #8a98a8 50%, #c9d4df 78%, #eef3f8 100%);
  box-shadow:
    0 40px 90px -24px rgba(10, 132, 255, 0.32),
    0 10px 26px rgba(11, 38, 60, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.feature--right .device { transform: rotate(-2.5deg); }
.feature--left .device { transform: rotate(2.5deg); }
.device:hover { transform: rotate(0) scale(1.03) !important; }

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
  display: block;
  background: #0A1620;
}
.device-island {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 26px;
  background: #05080c;
  border-radius: 100px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* alternate the layout order for "left" variants */
.feature--left { direction: rtl; }
.feature--left > * { direction: ltr; }

@media (max-width: 920px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
    text-align: center;
  }
  .feature--left { direction: ltr; }
  .feature-text { max-width: 100%; margin: 0 auto; }
  .feature-bullets { display: inline-block; text-align: left; }
  .device {
    width: 276px;
    transform: none !important;
  }
}

/* =========================================================
   Colors section
   ========================================================= */
.colors {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-section) 24px 0;
}
.colors-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.colors-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

/* Live progress ring demo */
.ring-demo {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.ring { transform: rotate(-90deg); overflow: visible; }
.ring-track {
  fill: none;
  stroke: rgba(11, 38, 60, 0.08);
  stroke-width: 18;
}
.ring-fill {
  fill: none;
  stroke: var(--ring-color, #FF3B30);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-dasharray: 578;
  stroke-dashoffset: 578;
  filter: drop-shadow(0 4px 12px color-mix(in srgb, var(--ring-color, #FF3B30) 55%, transparent));
  transition: stroke 0.5s ease;
}
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
}
.ring-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ring-unit {
  position: absolute;
  top: 38%;
  right: 56px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-soft);
}
.ring-label {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mid);
}

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

.color-card {
  position: relative;
  padding: 28px 24px;
  background: var(--glass-strong);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
  overflow: hidden;
}
.color-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--c), var(--c2));
  opacity: 0.06;
  z-index: -1;
}
.color-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px var(--c);
}
.color-swatch {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--c), var(--c2));
  box-shadow: 0 8px 20px -4px var(--c);
  margin-bottom: 18px;
}
.color-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.color-range {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.color-note {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.45;
  font-style: italic;
  font-family: var(--font-serif);
}

@media (max-width: 920px) {
  .colors-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .colors-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-section) 24px 0;
}
.faq-head {
  text-align: center;
  margin: 0 auto 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-elevated); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-mark {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.faq-mark::before,
.faq-mark::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2.4px;
  border-radius: 2px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-mark::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-mark::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer {
  padding: 0 26px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.faq-item[open] .faq-answer {
  animation: faqIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Final CTA + QR
   ========================================================= */
.get {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--space-section) 24px 0;
}
.get-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
  padding: 56px 56px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(52,199,89,0.10), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(10,132,255,0.12), transparent 55%),
    var(--glass-strong);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 36px;
  box-shadow: var(--shadow-elevated);
}
.get-text { max-width: 540px; }
.get-text .section-title { font-size: clamp(32px, 4.5vw, 52px); }
.get-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin: 0 0 28px;
}
.cta-badge--lg { padding: 16px 30px 16px 24px; }
.cta-badge--lg .badge-big { font-size: 23px; }

.qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.qr:hover { transform: translateY(-3px); }
.qr-frame {
  padding: 18px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--hairline);
  line-height: 0;
}
.qr-frame img { width: 156px; height: 156px; }
.qr-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

@media (max-width: 820px) {
  .get-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 36px;
    padding: 44px 28px;
  }
  .get-text { max-width: 100%; }
  .get-text .feature-eyebrow { text-align: center; }
  .hero-actions, .get-text .cta-badge { justify-content: center; }
}

/* =========================================================
   Privacy summary
   ========================================================= */
.privacy-summary {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--space-section) 24px 0;
}
.privacy-card {
  padding: 56px 48px;
  background: var(--glass-strong);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.privacy-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 600px;
  margin: 0 auto 28px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue);
  transition: gap 0.25s;
}
.link-arrow:hover { gap: 12px; }

@media (max-width: 720px) {
  .privacy-card { padding: 36px 24px; border-radius: 24px; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  max-width: 1180px;
  margin: var(--space-section) auto 0;
  padding: 60px 24px 48px;
  border-top: 0.5px solid var(--hairline);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(10, 22, 32, 0.12);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 14px;
  color: var(--ink-mid);
  max-width: 540px;
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-mark {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-align: center;
}

@media (max-width: 720px) {
  .footer-content { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-links { flex-direction: column; gap: 12px; }
}

/* =========================================================
   Privacy policy page specifics
   ========================================================= */
.privacy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.privacy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0 0 12px;
}
.privacy-page .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-mid);
  margin: 0 0 48px;
}
.privacy-page h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 12px;
}
.privacy-page p, .privacy-page li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0 0 16px;
}
.privacy-page ul { padding-left: 24px; }
.privacy-page a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.privacy-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  border: none;
}
.privacy-page .back-link:hover { color: var(--blue); }
.privacy-page .meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 60px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .hero-icon, .hero-icon-halo, .hero-scroll svg, .hero-pill-dot { animation: none !important; }
  .reveal { animation: none !important; opacity: 1; transform: none; }
  .reveal-scroll { opacity: 1; transform: none; }
  .ring-fill { transition: none; }
  * { scroll-behavior: auto !important; }
}
