img.emoji {
  height: 1em; width: 1em;
  vertical-align: -0.15em;
  display: inline; margin: 0;
}

/* ════════════════════════════════════════
   FONTS — локальные файлы из папки fonts/
   ════════════════════════════════════════ */
@font-face {
  font-family: 'EuclidCircularA';
  src: url('fonts/EuclidCircularA-Regular.4e128fd7.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'EuclidCircularA';
  src: url('fonts/EuclidCircularA-Medium.62bdba40.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'EuclidCircularA';
  src: url('fonts/EuclidCircularA-SemiBold.ce55cb81.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'EuclidCircularA';
  src: url('fonts/EuclidCircularA-Bold.ca5cd9ec.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ════════════════════════════════════════
   RESET + VARS
   ════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:      #08080F;
  --bg2:     #0C0C18;
  --bg3:     #111124;
  --purple:  #FF335F;
  --purple2: #FF6685;
  --green:   #00C957;
  --pink:    #FF335F;
  --teal:    #00C8FF;
  --text:    #FFFFFF;
  --muted:   #6B6B8A;
  --muted2:  #9A9AB8;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --r:       14px;
  --r2:      20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'EuclidCircularA', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }

/* ════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════ */
.wrap  { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.sec   { padding: 96px 0; }
.sec--dark { background: var(--bg2); }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(255,51,95,.35);
  background: rgba(255,51,95,.1);
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple2); white-space: nowrap;
}
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--purple2); flex-shrink: 0; }

.ttl { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; line-height: 1.2; }
.sub { font-size: 15px; color: var(--muted2); line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 11px; border: none; cursor: pointer;
  text-decoration: none; transition: all .22s ease; white-space: nowrap;
}
.btn-g { background: var(--green); color: #fff; box-shadow: 0 4px 28px rgba(0,201,87,.35); }
.btn-g:hover { background: #00E065; transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,201,87,.5); }
.btn-o { background: rgba(255,255,255,.06); color: var(--text); border: 1px solid var(--border2); }
.btn-o:hover { background: rgba(255,255,255,.1); }
.btn-p { background: var(--purple); color: #fff; box-shadow: 0 4px 28px rgba(107,53,255,.4); }
.btn-p:hover { background: var(--purple2); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(107,53,255,.55); }
.btn--lg { font-size: 16px; padding: 16px 34px; border-radius: 13px; }

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity .65s ease;
}
[data-reveal].on { opacity: 1; }

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .35s, border-color .35s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.nav.stuck {
  background: rgba(8,8,15,.88);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav__row { height: 68px; display: flex; align-items: center; gap: 36px; }

.nav__logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 26px; width: auto; }
.nav__logo-txt { font-size: 20px; font-weight: 700; color: var(--text); }
.nav__logo-txt em { font-style: normal; color: var(--purple); }

.nav__menu { display: flex; gap: 2px; margin-left: auto; }
.nav__menu a {
  font-size: 14px; font-weight: 400; color: var(--muted2); text-decoration: none;
  padding: 7px 13px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav__menu a:hover { color: #fff; background: rgba(255,255,255,.06); }

.nav__btns { display: flex; gap: 8px; flex-shrink: 0; }
.nav__btns .btn { padding: 9px 20px; font-size: 14px; }
.nav__mob-btn { display: none; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.burger.x span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.x span:nth-child(2) { opacity: 0; }
.burger.x span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(8,8,15,.97); padding: 84px 24px 32px; flex-direction: column;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: 22px; font-weight: 500; color: #fff; text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid var(--border); display: block;
}
.mob-nav .mob-btns { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mob-nav .btn { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: clip;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 35% 40%, rgba(255,51,95,.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(0,200,255,.07) 0%, transparent 55%),
    var(--bg);
}

/* grid: контент слева, iPhone справа */
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100dvh;
  padding-top: 68px;
}

.hero__content { position: relative; z-index: 2; padding: 60px 0; }
.hero__content .pill { margin-bottom: 22px; }

.hero__title { font-size: clamp(34px, 4.5vw, 62px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.hero__title em { font-style: normal; color: var(--green); }

.hero__desc { font-size: 17px; font-weight: 400; color: var(--muted2); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.hero__cta  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted2); }
.hero__meta-item svg { flex-shrink: 0; }

.hero__visual {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 0; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 20%, black 50%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 20%, black 50%);
}
.hero__visual-inner { display: flex; align-items: center; justify-content: center; }

/* ─ Ambient glow orbs ─ */
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none; z-index: 0;
}
.hero__glow--purple {
  width: 320px; height: 320px;
  background: rgba(255,51,95,.18);
  top: 5%; left: 5%;
}
.hero__glow--teal {
  width: 220px; height: 220px;
  background: rgba(0,200,255,.13);
  bottom: 10%; right: 0%;
}

/* ─ Floating badges ─ */
.iphone-badge {
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: rgba(12,12,24,.88); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,51,95,.35); border-radius: 22px;
  padding: 8px 16px; font-size: 12px; font-weight: 600; color: #fff;
  white-space: nowrap; z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,.45), 0 0 0 .5px rgba(255,255,255,.06);
}
.iphone-badge__icon { font-size: 14px; }
.iphone-badge--top {
  top: 18%; right: 2%;
  animation: badge-float 4s ease-in-out infinite;
}
.iphone-badge--bottom {
  bottom: 22%; left: 2%;
  border-color: rgba(0,201,87,.35);
  animation: badge-float 4s ease-in-out infinite 2s;
}
.iphone-badge--bottom .iphone-badge__icon { color: var(--green); }
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ─ iPhone mockup (scene / phone) ─ */
.scene {
  perspective: 1200px;
  perspective-origin: 60% 45%;
  width: 420px;
  height: 860px;
  transform: scale(0.72);
  transform-origin: center center;
  margin: -120px -59px;
}

.phone {
  width: 375px;
  height: 812px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(3deg) rotateZ(1deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2c2c2e 0%, #1c1c1e 30%, #111113 70%, #0a0a0b 100%);
  border-radius: 52px;
  position: absolute;
  top: 0; left: 0;
  box-shadow:
    18px 25px 60px rgba(0,0,0,0.45),
    8px 12px 25px rgba(0,0,0,0.3),
    inset 0 0 0 1.5px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 1px 0 0 rgba(255,255,255,0.06);
  transform-style: preserve-3d;
}

.phone-body::before {
  content: '';
  position: absolute;
  top: 52px; bottom: 52px;
  right: -8px;
  width: 8px;
  background: linear-gradient(to right, #3a3a3e, #2a2a2e, #222226);
  border-radius: 0 3px 3px 0;
  transform: rotateY(90deg);
  transform-origin: left center;
}

.phone-body::after {
  content: '';
  position: absolute;
  left: 52px; right: 52px;
  bottom: -6px;
  height: 6px;
  background: linear-gradient(to bottom, #2a2a2e, #1a1a1e);
  border-radius: 0 0 3px 3px;
  transform: rotateX(-90deg);
  transform-origin: top center;
}

.btn-silent {
  position: absolute;
  left: -3px; top: 148px;
  width: 3px; height: 22px;
  background: linear-gradient(to left, #4a4a4e, #3a3a3e);
  border-radius: 2px 0 0 2px;
}

.btn-vol-up {
  position: absolute;
  left: -3px; top: 190px;
  width: 3px; height: 38px;
  background: linear-gradient(to left, #4a4a4e, #3a3a3e);
  border-radius: 2px 0 0 2px;
}

.btn-vol-down {
  position: absolute;
  left: -3px; top: 238px;
  width: 3px; height: 38px;
  background: linear-gradient(to left, #4a4a4e, #3a3a3e);
  border-radius: 2px 0 0 2px;
}

.btn-power {
  position: absolute;
  right: -3px; top: 205px;
  width: 3px; height: 52px;
  background: linear-gradient(to right, #4a4a4e, #3a3a3e);
  border-radius: 0 2px 2px 0;
}

.screen {
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  background: linear-gradient(180deg, #f2f2f7 0%, #ebebf0 100%);
  border-radius: 44px;
  overflow: hidden;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.2);
}

.screen::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    125deg,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.05) 25%,
    transparent 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 100;
  border-radius: 44px;
}

.dynamic-island {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 34px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 50;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,0.3);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px 0;
  height: 54px;
  position: relative;
  z-index: 10;
}

.status-time {
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1e;
  letter-spacing: 0.3px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 12px;
}

.signal-bar {
  width: 3px;
  background: #1c1c1e;
  border-radius: 0.5px;
}

.signal-bar:nth-child(1) { height: 4px; }
.signal-bar:nth-child(2) { height: 6px; }
.signal-bar:nth-child(3) { height: 9px; }
.signal-bar:nth-child(4) { height: 12px; }

.wifi-icon { width: 16px; height: 12px; }

.battery { display: flex; align-items: center; gap: 1px; }

.battery-body {
  width: 24px; height: 11px;
  border: 1px solid #1c1c1e;
  border-radius: 3px;
  padding: 1px;
  position: relative;
}

.battery-fill {
  width: 100%; height: 100%;
  background: #34c759;
  border-radius: 1.5px;
}

.battery-tip {
  width: 2px; height: 5px;
  background: #1c1c1e;
  border-radius: 0 1px 1px 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 12px;
  position: relative;
}

.nav-back {
  position: absolute;
  left: 20px;
  font-size: 17px;
  color: #007aff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-back-chevron { font-size: 20px; font-weight: 300; }

.nav-title { font-size: 17px; font-weight: 600; color: #1c1c1e; }

.content { padding: 0 16px; overflow: hidden; }

.profile-card {
  background: white;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  box-shadow: 0 0.5px 2px rgba(0,0,0,0.06);
}

.avatar {
  width: 52px; height: 52px;
  background: #32ade6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; font-weight: 500;
  color: white;
  flex-shrink: 0;
}

.profile-info { display: flex; flex-direction: column; gap: 2px; }
.profile-name  { font-size: 17px; font-weight: 600; color: #1c1c1e; }
.profile-email { font-size: 13px; color: #8e8e93; }

.section-header {
  font-size: 13px;
  color: #6d6d72;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0 4px;
  margin-bottom: 8px;
}

.settings-group {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 0.5px 2px rgba(0,0,0,0.06);
}

.settings-row {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  min-height: 50px;
  position: relative;
}

.settings-row:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 54px; right: 0;
  height: 0.5px;
  background: #c6c6c8;
}

.settings-row.highlighted { background: #e8f4fd; }

.row-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
  font-size: 16px;
  color: white;
}

.icon-red    { background: #fc3c44; }
.icon-blue   { background: #32ade6; }
.icon-icloud { background: #3693f5; }
.icon-green  { background: #34c759; }

.row-label { font-size: 16px; color: #1c1c1e; flex: 1; }
.row-label.blue  { color: #007aff; font-weight: 500; }
.row-label.green { color: #34c759; font-weight: 500; }

.row-value { font-size: 16px; color: #8e8e93; margin-right: 6px; }
.row-value.red { color: #ff3b30; }

.blue-dot {
  width: 10px; height: 10px;
  background: #007aff;
  border-radius: 50%;
  margin-right: 6px;
}

.chevron { color: #c7c7cc; font-size: 18px; font-weight: 300; }

.home-indicator {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 134px; height: 5px;
  background: #1c1c1e;
  border-radius: 3px;
  opacity: 0.2;
}

/* ════════════════════════════════════════
   PREREQ
   ════════════════════════════════════════ */
.prereq {
  padding: 72px 0; background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.prereq__inner { display: flex; flex-direction: column; align-items: center; gap: 52px; }
.prereq__hdr { text-align: center; }
.prereq__hdr h2 { margin-top: 14px; font-size: clamp(20px, 2.8vw, 34px); font-weight: 700; }
.prereq__hdr p  { margin-top: 10px; color: var(--muted2); }

.stepper {
  display: flex; align-items: flex-start; gap: 0; width: 100%; max-width: 640px;
  margin: 32px auto 32px;
}
.stepper__item {
  display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0;
}
.stepper__dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,51,95,.1); border: 2px solid rgba(255,51,95,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: var(--purple2);
  transition: all .3s;
}
.stepper__item:hover .stepper__dot {
  background: var(--purple); border-color: var(--purple); color: #fff;
  box-shadow: 0 0 20px rgba(255,51,95,.45);
}
.stepper__lbl {
  font-size: 12px; font-weight: 500; color: var(--muted); text-align: center;
  white-space: nowrap;
}
.stepper__line {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, rgba(255,51,95,.4), rgba(255,51,95,.1));
  margin-top: 23px;
}

.req-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; width: 100%; }
.req-card {
  border-radius: var(--r2); padding: 26px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start;
}
.req-card:hover { transform: translateY(-5px); }

.req-card--1 { background: linear-gradient(135deg, #280A18 0%, #140810 100%); border: 1px solid rgba(255,51,95,.2); }
.req-card--1:hover { box-shadow: 0 16px 50px rgba(255,51,95,.18); border-color: rgba(255,51,95,.4); }
.req-card--1 .rc-glow { background: #FF335F; }

.req-card--2 { background: linear-gradient(135deg, #0A1A38 0%, #060E20 100%); border: 1px solid rgba(0,200,255,.18); }
.req-card--2:hover { box-shadow: 0 16px 50px rgba(0,200,255,.12); border-color: rgba(0,200,255,.38); }
.req-card--2 .rc-glow { background: #00C8FF; }

.req-card--3 { background: linear-gradient(135deg, #0A2A14 0%, #061208 100%); border: 1px solid rgba(0,201,87,.18); }
.req-card--3:hover { box-shadow: 0 16px 50px rgba(0,201,87,.12); border-color: rgba(0,201,87,.38); }
.req-card--3 .rc-glow { background: #00C957; }

.rc-glow { position: absolute; width: 160px; height: 160px; border-radius: 50%; top: -50px; right: -40px; opacity: .15; filter: blur(50px); pointer-events: none; }
.rc-icon  { font-size: 28px; grid-row: 1; grid-column: 1; align-self: center; }
.rc-title { font-size: 17px; font-weight: 700; grid-row: 1; grid-column: 2; align-self: center; }
.rc-text  { font-size: 14px; font-weight: 400; color: var(--muted2); line-height: 1.6; grid-row: 2; grid-column: 1 / -1; margin-top: 12px; }

/* ════════════════════════════════════════
   STEPS
   ════════════════════════════════════════ */
.steps-sec { background: var(--bg); }
.steps-hdr { text-align: center; margin-bottom: 56px; }
.steps-hdr h2 { margin-top: 14px; }
.steps-hdr p  { margin-top: 10px; }

.steps-list { display: flex; flex-direction: column; gap: 18px; max-width: 860px; margin: 0 auto; }

.step-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 28px 32px; display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: start;
  transition: border-color .3s, box-shadow .3s, transform .3s; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0 0 0 auto; width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--teal));
  transform: scaleY(0); transform-origin: top; transition: transform .4s ease;
}
.step-card:hover { border-color: rgba(255,51,95,.35); transform: translateX(4px); box-shadow: -4px 0 30px rgba(255,51,95,.12); }
.step-card:hover::before { transform: scaleY(1); }

.step-num {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255,51,95,.1); border: 1px solid rgba(255,51,95,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--purple2);
}
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-body p  { font-size: 15px; font-weight: 400; color: var(--muted2); line-height: 1.7; }
.step-body code {
  display: inline-flex; align-items: center;
  background: rgba(255,51,95,.1); border: 1px solid rgba(255,51,95,.22);
  border-radius: 8px; padding: 2px 10px; font-family: inherit;
  font-size: 13px; font-weight: 500; color: var(--purple2); margin: 0 2px;
}
.step-path { margin-top: 14px; display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.step-path-group { display: inline-flex; align-items: center; gap: 6px; }

.step-path-item {
  background: rgba(255,255,255,.06); border: 1px solid var(--border2);
  border-radius: 8px; padding: 4px 11px; font-size: 13px; font-weight: 500; color: var(--muted2);
}
.step-path-arr { color: var(--purple); font-size: 12px; }

/* ── Step note (callout) ── */
.step-note {
  max-width: 860px; margin: 12px auto 0;
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
}
.step-note__icon {
  font-size: 20px; flex-shrink: 0; line-height: 1.4;
}
.step-note__body p {
  font-size: 14px; font-weight: 400; color: var(--muted2); line-height: 1.7; margin: 0;
}
.step-note__body a {
  color: var(--pink); text-decoration: none; border-bottom: 1px solid rgba(0,200,255,.3);
  transition: border-color .2s, color .2s;
}
.step-note__body a:hover {
  color: #fff; border-bottom-color: #fff;
}

/* ════════════════════════════════════════
   BENEFITS
   ════════════════════════════════════════ */
.benefits { background: var(--bg2); }
.benefits-hdr { text-align: center; margin-bottom: 52px; }
.benefits-hdr h2 { margin-top: 14px; }
.benefits-hdr p  { margin-top: 10px; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ben-col {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ben-col:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(0,0,0,.3); }
.ben-col--green { border-color: rgba(0,201,87,.2); background: linear-gradient(180deg, rgba(0,201,87,.06) 0%, var(--bg3) 80%); }
.ben-col--green:hover { border-color: rgba(0,201,87,.4); }
.ben-col__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; }
.ben-col--green .ben-col__label { color: var(--green); }
.ben-col h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.ben-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ben-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--muted2); }
.ben-list li .tick {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.ben-col--gray  .tick { background: rgba(255,255,255,.05); color: var(--muted); }
.ben-col--green .tick { background: rgba(0,201,87,.15); color: var(--green); }
.ben-col--green li { color: var(--text); }

/* ════════════════════════════════════════
   STATS
   ════════════════════════════════════════ */
.stats-sec { background: var(--bg); }
.stats-hdr { text-align: center; margin-bottom: 52px; }
.stats-hdr h2 { margin-top: 14px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px 20px; text-align: center; transition: all .3s;
}
.stat-card:hover { border-color: rgba(107,53,255,.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(107,53,255,.12); }
.stat-card__ic {
  font-size: 30px; width: 56px; height: 56px; border-radius: 15px;
  background: rgba(107,53,255,.1); border: 1px solid rgba(107,53,255,.18);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.stat-card__val { font-size: 30px; font-weight: 700; margin-bottom: 4px; }
.stat-card__lbl { font-size: 14px; font-weight: 400; color: var(--muted2); }

/* ════════════════════════════════════════
   GUIDE (2-col)
   ════════════════════════════════════════ */
.guide { background: var(--bg2); overflow: hidden; }
.guide__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.guide__text h2 { margin-top: 14px; margin-bottom: 20px; }
.guide__text h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--green), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.guide__text p { font-size: 15px; font-weight: 400; color: var(--muted2); line-height: 1.75; margin-bottom: 14px; }

.guide__text a {
  color: #FF335F;
}
.guide__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.guide__tag {
  font-size: 13px; font-weight: 500; padding: 5px 13px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--muted2);
}
.guide__screens { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 130px; gap: 12px; }
.gs {
  border-radius: var(--r); background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 8px; color: var(--muted2); font-size: 13px; overflow: hidden;
}
.gs:first-child { grid-column: 1/-1; }
.gs__emoji { font-size: 36px; }
.gs__lbl   { font-size: 12px; }
.gs--glow   { background: linear-gradient(135deg, #0A1230 0%, #07070F 100%); border-color: rgba(0,200,255,.15); }
.gs--purple { background: linear-gradient(135deg, #150A30 0%, #07070F 100%); border-color: rgba(107,53,255,.15); }
.gs--green  { background: linear-gradient(135deg, #0A2010 0%, #07070F 100%); border-color: rgba(0,201,87,.15); }

/* App Store Gift Card */
.guide__screens:has(.appstore-card) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.appstore-card {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.7 / 1;
  border-radius: 24px;
  background: #F5F5F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border-color .25s, box-shadow .25s;
  box-shadow:
    0 0 60px rgba(255,51,95,.25),
    0 20px 50px rgba(255,51,95,.15),
    0 4px 16px rgba(0,0,0,.25);
}
.appstore-card:hover {
  border-color: rgba(255,51,95,.7);
  box-shadow:
    0 0 80px rgba(255,51,95,.35),
    0 20px 50px rgba(255,51,95,.2),
    0 4px 16px rgba(0,0,0,.25);
}
.appstore-card__logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.appstore-card__text {
  font-size: 17px;
  font-weight: 400;
  color: #1d1d1f;
  text-align: center;
  line-height: 1.55;
  letter-spacing: -.2px;
}
.appstore-card__cta {
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 600;
  color: #FF335F;
  background: rgba(255,51,95,.08);
  border: 1px solid rgba(255,51,95,.25);
  border-radius: 20px;
  padding: 6px 16px;
  letter-spacing: .1px;
  transition: background .2s, border-color .2s;
}
.appstore-card:hover .appstore-card__cta {
  background: rgba(255,51,95,.14);
  border-color: rgba(255,51,95,.5);
}

/* ════════════════════════════════════════
   WHY
   ════════════════════════════════════════ */
.why { background: var(--bg); }
.why__hdr { text-align: center; margin-bottom: 52px; }
.why__hdr h2 { margin-top: 14px; }
.why__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.why-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 30px 26px; position: relative; overflow: hidden; transition: all .3s;
  display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: start;
}
.why-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.why-card:hover { border-color: rgba(255,51,95,.25); transform: translateY(-4px); }
.why-card:hover::after { transform: scaleX(1); }
.why-card__em  { font-size: 28px; grid-row: 1; grid-column: 1; align-self: center; }
.why-card__ttl { font-size: 17px; font-weight: 700; grid-row: 1; grid-column: 2; align-self: center; }
.why-card__txt { font-size: 14px; font-weight: 400; color: var(--muted2); line-height: 1.65; grid-row: 2; grid-column: 1 / -1; margin-top: 10px; }

/* ════════════════════════════════════════
   CTA
   ════════════════════════════════════════ */
.cta { padding: 120px 0; position: relative; overflow: hidden; text-align: center; background: var(--bg2); }
.cta__bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,51,95,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta__content { position: relative; }
.cta h2 { font-size: clamp(28px,4vw,52px); font-weight: 700; margin-bottom: 16px; }
.cta p  { font-size: 17px; font-weight: 400; color: var(--muted2); max-width: 450px; margin: 0 auto 36px; }
.cta-perks { display: flex; justify-content: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.cta-perk  { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--muted2); }
.cta-perk::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq { background: var(--bg); }
.faq__hdr { text-align: center; margin-bottom: 52px; }
.faq__hdr h2 { margin-top: 14px; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: border-color .25s;
}
.faq-item.open { border-color: rgba(255,51,95,.4); }
.faq-q {
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; cursor: pointer; font-size: 15px; font-weight: 600; user-select: none; transition: color .2s;
}
.faq-q:hover { color: var(--purple2); }
.faq-ico {
  width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
  background: rgba(255,51,95,.1); border: 1px solid rgba(255,51,95,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--purple2); transition: all .28s;
}
.faq-item.open .faq-ico { background: var(--purple); border-color: var(--purple); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-a-in { padding: 0 22px 18px; font-size: 14px; font-weight: 400; color: var(--muted2); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 320px; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { font-size: 14px; font-weight: 400; color: var(--muted2); margin-top: 12px; max-width: 240px; line-height: 1.7; }
.footer__col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 18px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__col a  { font-size: 14px; font-weight: 400; color: var(--muted2); text-decoration: none; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 13px; color: var(--muted); }
.socials { display: flex; gap: 8px; }
.soc {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--muted2); font-size: 14px; transition: all .22s;
}
.soc:hover { background: var(--purple); border-color: var(--purple); color: #fff; transform: translateY(-2px); }

/* ════════════════════════════════════════
   DIVIDER
   ════════════════════════════════════════ */
.div-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,51,95,.35) 50%, transparent 100%);
}



/* ════════════════════════════════════════
   DESKTOP FONT MINIMUM 16px
   ════════════════════════════════════════ */
@media (min-width: 769px) {
  .sub             { font-size: 16px; }
  .btn             { font-size: 16px; }
  .nav a           { font-size: 16px; }
  .nav__btns .btn  { font-size: 16px; }
  .hero__meta-item { font-size: 16px; }
  .rc-text         { font-size: 16px; }
  .step-body p     { font-size: 16px; }
  .step-note__body p { font-size: 16px; }
  .ben-list li     { font-size: 16px; }
  .guide__text p   { font-size: 16px; }
  .guide__tag      { font-size: 16px; }
  .stat-card__lbl  { font-size: 16px; }
  .why-card__txt   { font-size: 16px; }
  .cta-perk        { font-size: 16px; }
  .faq-q           { font-size: 16px; }
  .faq-a-in        { font-size: 16px; }
  .footer__brand p { font-size: 16px; }
  .footer__col a   { font-size: 16px; }
  .footer__copy    { font-size: 16px; }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .guide__inner  { grid-template-columns: 1fr; gap: 40px; }
  .guide__screens { grid-template-columns: 1fr; grid-template-rows: auto; }
  .guide__screens .gs:first-child { grid-column: auto; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav.stuck {
    background: rgba(8,8,15,.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .wrap          { padding: 0 20px; }
  .sec           { padding: 68px 0; }
  .nav__menu, .nav__btns { display: none; }
  .burger        { display: flex; }
  .nav__mob-btn  { display: flex; margin-left: auto; padding: 7px 14px; font-size: 13px; }
  .hero .wrap    { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero__visual  { display: none; }
  .hero__content { padding: 40px 0 0; }
  .hero__title   { font-size: clamp(30px,8vw,46px); }
  .req-cards     { grid-template-columns: 1fr; }
  .stepper       { max-width: 100%; }
  .stepper__dot  { width: 38px; height: 38px; font-size: 14px; }
  .stepper__lbl  { display: none; }
  .stepper__line { margin-top: 18px; }
  .step-card     { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 20px; }
  .why__grid     { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid    { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .hero__cta     { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .stepper__lbl  { display: none; }
  .step-num      { width: 44px; height: 44px; font-size: 18px; }
}
