

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  
  --bg:        #0a0a0a;
  --bg-2:      #0e0e0e;
  --bg-3:      #121212;
  --surface:   #141414;
  --surface-2: #1a1a1a;
  --surface-3: #202020;

  --border:      rgba(255,255,255,0.07);
  --border-soft: rgba(255,255,255,0.04);
  --border-mid:  rgba(255,255,255,0.12);

  --text:   #f2f2f2;
  --text-2: #9a9a9a;
  --text-3: #505050;
  --text-4: #333333;

  --accent:       #7C5CFF;
  --accent-light: #a48bff;
  --accent-dim:   rgba(124,92,255,0.12);
  --accent-glow:  rgba(124,92,255,0.20);
  --accent-glow2: rgba(124,92,255,0.06);

  --green:        #3ecf8e;
  --green-dim:    rgba(62,207,142,0.15);

  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-md: 20px;
  --r-lg: 24px;
  --r-xl: 32px;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           0.25s var(--ease);
  --t-slow:      0.5s var(--ease);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.45);
  --shadow:    0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.65);
  --shadow-xl: 0 48px 96px rgba(0,0,0,0.75);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

img, svg { display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; }

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.03em;
}

.section__sub {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--text-2);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.68;
}

.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
  
}

.top-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent) 30%,
    var(--accent-light) 50%,
    var(--accent) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: lineSweep 4s linear infinite;
  z-index: 200;
  opacity: 0.7;
}

@keyframes lineSweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.k-logo {
  display: block;
}

.k-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawPath 0.8s var(--ease-out) forwards;
}

.k-path-1 { animation-delay: 0.1s; stroke-dasharray: 18; stroke-dashoffset: 18; }
.k-path-2 { animation-delay: 0.3s; stroke-dasharray: 18; stroke-dashoffset: 18; }
.k-path-3 { animation-delay: 0.5s; stroke-dasharray: 18; stroke-dashoffset: 18; }

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

.k-dot {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  animation: dotPop 0.4s var(--ease-spring) 0.7s forwards;
}

@keyframes dotPop {
  to { opacity: 1; transform: scale(1); }
}

.nav__logo:hover .k-logo rect:first-of-type {
  opacity: 0.25;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
  border: none;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  border-radius: inherit;
}
.btn:active::after {
  background: rgba(255,255,255,0.06);
}

.btn--nav {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-mid);
  font-size: 0.82rem;
  padding: 9px 18px;
}
.btn--nav:hover {
  background: var(--surface-3);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.btn--nav:active { transform: translateY(0); }

.btn--primary {
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.98rem;
  padding: 15px 32px;
  border-radius: var(--r-md);
  box-shadow: 0 4px 20px rgba(255,255,255,0.10), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.22s var(--ease-spring),
              box-shadow 0.25s var(--ease),
              background 0.2s;
}
.btn--primary:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 36px rgba(255,255,255,0.16), 0 0 0 1px rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(255,255,255,0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-mid);
  padding: 12px 24px;
  border-radius: var(--r-md);
  margin-top: 8px;
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
  background: var(--surface-2);
  transform: translateY(-1px);
}

.btn--cta {
  background: linear-gradient(135deg, #ffffff 0%, #e8e2ff 100%);
  color: #0a0a0a;
  font-size: 1rem;
  padding: 16px 44px;
  border-radius: var(--r-lg);
  box-shadow:
    0 4px 24px rgba(124,92,255,0.25),
    0 0 0 1px rgba(255,255,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.22s var(--ease-spring),
              box-shadow 0.25s var(--ease);
}
.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(124,92,255,0.35),
    0 0 0 1px rgba(255,255,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn--cta:active {
  transform: translateY(-1px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.84);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t-slow), box-shadow var(--t-slow);
}

.nav.scrolled {
  border-bottom-color: var(--border-mid);
  box-shadow: 0 1px 0 rgba(124,92,255,0.06), 0 8px 32px rgba(0,0,0,0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--t);
  letter-spacing: 0.01em;
}

.nav__link:hover { color: var(--text); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding-top: 66px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  will-change: transform;
}

.hero__glow--1 {
  top: -10%;
  left: 20%;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124,92,255,0.10) 0%, transparent 70%);
  animation: drift1 18s ease-in-out infinite alternate;
}

.hero__glow--2 {
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124,92,255,0.07) 0%, transparent 65%);
  animation: drift2 22s ease-in-out infinite alternate;
}

.hero__glow--3 {
  bottom: -5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: drift3 26s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 40px); }
}
@keyframes drift2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-50px, -60px); }
}
@keyframes drift3 {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, -30px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__text {
  flex: 1;
  min-width: 0;
}

.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.hero-anim.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(124,92,255,0.25);
  background: rgba(124,92,255,0.07);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50%       { opacity: 0.6; box-shadow: 0 0 16px var(--accent); }
}

.hero__headline {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 28px;
}

.headline-em {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--text-2);
  line-height: 1.74;
  margin-bottom: 44px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__soon {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 500;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
  padding: 0 16px;
}

.trust-item:first-child { padding-left: 0; }

.trust-item svg { color: var(--text-4); flex-shrink: 0; }

.trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: scrollFloat 2.4s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--text-4);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px 0 0;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--text-3);
  border-radius: 2px;
  animation: scrollWheel 2.4s ease-in-out infinite;
}

@keyframes scrollFloat {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(5px); }
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0.3; transform: translateY(5px); }
}

.hero__phone {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.phone-wrap {
  position: relative;
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 60%, rgba(124,92,255,0.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  
  animation: phoneGlowPulse 4s ease-in-out infinite;
}

@keyframes phoneGlowPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.phone {
  perspective: 1200px;
  position: relative;
  z-index: 1;
}

.phone__shell {
  width: 252px;
  background: #111111;
  border-radius: 44px;
  padding: 14px 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 0 0 2px rgba(0,0,0,0.8),
    0 40px 80px rgba(0,0,0,0.75),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.phone__shell:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone__btn {
  position: absolute;
  background: #1a1a1a;
  border-radius: 3px;
}
.phone__btn--power {
  right: -3px;
  top: 100px;
  width: 3px;
  height: 52px;
  box-shadow: -1px 0 2px rgba(0,0,0,0.6);
}
.phone__btn--vol1 {
  left: -3px;
  top: 90px;
  width: 3px;
  height: 38px;
  box-shadow: 1px 0 2px rgba(0,0,0,0.6);
}
.phone__btn--vol2 {
  left: -3px;
  top: 138px;
  width: 3px;
  height: 38px;
  box-shadow: 1px 0 2px rgba(0,0,0,0.6);
}

.phone__inner {
  background: #0c0c0c;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.phone__notch {
  display: flex;
  justify-content: center;
  padding: 10px 0 6px;
  flex-shrink: 0;
}

.phone__camera {
  width: 10px;
  height: 10px;
  background: #1a1a1a;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03);
}

.phone__screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0e0e0e;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px 2px;
  flex-shrink: 0;
}

.status-time {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ddd;
  letter-spacing: 0.02em;
}

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

.chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  background: rgba(14,14,14,0.95);
}

.chat-header__back {
  color: var(--accent-light);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 2px;
  flex-shrink: 0;
}

.chat-header__avatar {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a3e, #1e1e2e);
  border: 1px solid rgba(124,92,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-letter {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-light);
}

.online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  border: 1.5px solid #0c0c0c;
  box-shadow: 0 0 8px var(--green);
  animation: onlinePulse 2.5s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%, 100% { opacity: 0.85; box-shadow: 0 0 6px var(--green); }
  50%       { opacity: 1;    box-shadow: 0 0 14px var(--green), 0 0 0 4px rgba(62,207,142,0.12); }
}

.chat-header__info {
  flex: 1;
  min-width: 0;
}

.chat-header__name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #e8e8e8;
  line-height: 1.2;
}

.chat-header__status {
  font-size: 0.58rem;
  color: var(--green);
  font-weight: 600;
}

.chat-header__more {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  display: flex;
  padding: 2px;
  flex-shrink: 0;
}

.chat-body {
  flex: 1;
  overflow: hidden;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #0e0e0e;
}

.bubble {
  max-width: 82%;
  padding: 7px 10px;
  border-radius: 16px;
  font-size: 0.65rem;
  line-height: 1.45;
  color: #e0e0e0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.bubble.shown {
  opacity: 1;
  transform: translateY(0);
}

.bubble p { margin: 0 0 2px; }

.bubble__time {
  display: block;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  margin-top: 1px;
}

.bubble__ticks {
  color: rgba(255,255,255,0.45);
  font-size: 0.55rem;
}

.bubble--in {
  background: #1c1c1c;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.bubble--out {
  background: linear-gradient(135deg, #2a2040, #1e1830);
  border: 1px solid rgba(124,92,255,0.15);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 10px;
  background: #1c1c1c;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: 46px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.typing-indicator.shown {
  opacity: 1;
  transform: translateY(0);
}

.typing-indicator span {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.18s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typingBounce {
  0%, 70%, 100% { opacity: 0.3; transform: translateY(0); }
  35%            { opacity: 1;   transform: translateY(-3px); }
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
  background: #0e0e0e;
}

.chat-input__emoji {
  background: none;
  border: none;
  color: var(--text-3);
  display: flex;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.chat-input__field {
  flex: 1;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.2);
  font-family: var(--font);
  border: 1px solid rgba(255,255,255,0.04);
}

.chat-input__send {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  box-shadow: 0 2px 10px rgba(124,92,255,0.4);
}

.value-band {
  padding: 0;
}

.value-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
}

.value-item__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(124,92,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.value-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}

.value-item__text strong {
  font-weight: 700;
  color: var(--text);
  font-size: 0.88rem;
  display: block;
}

.value-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.features {
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feat-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}

.feat-card__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(ellipse at 30% 40%, rgba(124,92,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.feat-card:hover {
  background: var(--surface-2);
  z-index: 1;
}

.feat-card:hover .feat-card__glow {
  opacity: 1;
}

.feat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(124,92,255,0.18);
  border-radius: var(--r-sm);
  color: var(--accent-light);
  margin-bottom: 22px;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  flex-shrink: 0;
}

.feat-card:hover .feat-card__icon {
  border-color: rgba(124,92,255,0.35);
  background: rgba(124,92,255,0.16);
  box-shadow: 0 0 20px rgba(124,92,255,0.15);
}

.feat-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feat-card__text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feat-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid rgba(124,92,255,0.18);
  padding: 4px 10px;
  border-radius: 100px;
}

.feat-card__tag--soon {
  color: var(--text-3);
  background: var(--surface-3);
  border-color: var(--border);
}

.why {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__text .section__label,
.why__text .section__title { text-align: left; }

.why__text .section__title { margin-bottom: 20px; }

.why__desc {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.74;
  max-width: 400px;
  margin-bottom: 20px;
}

.why__props {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-prop {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  background: var(--surface);
  transition: border-color var(--t), background var(--t), transform 0.3s var(--ease-spring);
}

.why-prop:hover {
  border-color: rgba(124,92,255,0.2);
  background: var(--surface-2);
  transform: translateX(4px);
}

.why-prop__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(124,92,255,0.18);
  border-radius: var(--r-sm);
  color: var(--accent-light);
  margin-top: 1px;
}

.why-prop__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.why-prop__text {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.62;
}

.steps {
  background: var(--bg);
}

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

.step {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: border-color var(--t), background var(--t), transform 0.3s var(--ease-spring);
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.step:hover::before { opacity: 0.6; }

.step:hover {
  border-color: rgba(124,92,255,0.2);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.step__num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(124,92,255,0.15);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.step__num-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(124,92,255,0.2);
  border-radius: var(--r-sm);
  color: var(--accent-light);
  margin-bottom: 18px;
}

.step__body {}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step__text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.cta-band__inner {
  text-align: center;
  padding: 96px 48px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

.cta-band__inner::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-xl) + 1px);
  background: linear-gradient(135deg,
    rgba(124,92,255,0.3) 0%,
    transparent 40%,
    transparent 60%,
    rgba(124,92,255,0.3) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}

.cta-bg-glow--1 {
  top: -40%;
  left: 20%;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124,92,255,0.14) 0%, transparent 70%);
  
  animation: ctaGlow1 8s ease-in-out infinite alternate;
}

.cta-bg-glow--2 {
  bottom: -30%;
  right: 15%;
  width: 350px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(124,92,255,0.10) 0%, transparent 70%);
  animation: ctaGlow2 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(30px, 20px); }
}

@keyframes ctaGlow2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-25px, -15px); }
}

.cta-band__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-band__sub {
  color: var(--text-2);
  font-size: 1.02rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-band__note {
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--text-3);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.58;
  position: relative;
  z-index: 1;
}

.faq {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background var(--t);
}

.faq__q span { flex: 1; }

.faq__q:hover { background: var(--surface-2); }
.faq__q[aria-expanded="true"] {
  background: var(--surface-2);
  color: var(--accent-light);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform var(--t), color var(--t);
}

.faq__q[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent-light);
}

.faq__a {
  padding: 0 28px 24px;
  background: var(--surface-2);
}

.faq__a p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.74;
  padding-top: 4px;
}

.faq__a a {
  color: var(--accent-light);
  text-decoration: underline;
  text-decoration-color: rgba(164,139,255,0.3);
  text-underline-offset: 3px;
}
.faq__a a:hover {
  text-decoration-color: rgba(164,139,255,0.7);
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 52px 0;
  position: relative;
}

.footer__top-line {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(124,92,255,0.3) 30%,
    rgba(164,139,255,0.5) 50%,
    rgba(124,92,255,0.3) 70%,
    transparent 100%
  );
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo { opacity: 0.8; transition: opacity var(--t); }
.footer__logo:hover { opacity: 1; }

.footer__tagline {
  font-size: 0.78rem;
  color: var(--text-3);
  padding-left: 38px;
}

.footer__center {
  text-align: center;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-3);
}

.footer__links {
  display: flex;
  justify-content: flex-end;
}

.footer__link {
  font-size: 0.82rem;
  color: var(--text-2);
  transition: color var(--t);
}
.footer__link:hover { color: var(--accent-light); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero__badge   { margin-left: auto; margin-right: auto; }
  .hero__sub     { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust   { justify-content: center; }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why__text .section__label,
  .why__text .section__title { text-align: center; }
  .why__desc { max-width: 100%; margin: 0 auto 20px; text-align: center; }
  .why__text .btn--ghost { display: block; width: fit-content; margin: 0 auto; }

  .steps__track { grid-template-columns: 1fr; gap: 16px; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer__brand { align-items: center; }
  .footer__tagline { padding-left: 0; }
  .footer__links { justify-content: center; }

  .nav__links { display: none; }

  .value-band__inner { gap: 0; }
  .value-item { padding: 14px 20px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section__header { margin-bottom: 48px; }
  .container { padding: 0 16px; }

  .nav__inner { height: 58px; }
  .hero { padding-top: 58px; }

  .hero__phone { display: none; }
  .hero__scroll-hint { display: none; }
  .hero__trust { display: none; }

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

  .feat-card { padding: 28px 22px; }

  .why-prop { flex-direction: column; gap: 12px; }

  .cta-band__inner {
    padding: 56px 20px;
    border-radius: var(--r-lg);
  }

  .faq__q { padding: 18px 20px; font-size: 0.88rem; }
  .faq__a { padding: 0 20px 20px; }

  .btn--cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .value-band__inner {
    flex-direction: column;
    gap: 0;
    padding: 32px 0;
    align-items: stretch;
  }
  .value-item { padding: 14px 16px; }
  .value-sep { width: 100%; height: 1px; }

  .steps__track { gap: 12px; }
  .step { padding: 28px 22px; }

  .hero__headline { font-size: clamp(2.2rem, 10vw, 2.8rem); }
}

@media (max-width: 400px) {
  .container { padding: 0 14px; }

  .nav__inner { gap: 12px; }
  .logo-text { font-size: 1rem; }

  .hero__headline { font-size: clamp(2rem, 9.5vw, 2.4rem); }
  .hero__sub { font-size: 0.93rem; }

  .btn--primary { padding: 14px 22px; font-size: 0.93rem; }
  .btn--nav { padding: 8px 14px; font-size: 0.78rem; }

  .feat-card { padding: 24px 18px; }
  .step { padding: 24px 18px; }

  .cta-band__inner { padding: 48px 16px; }
  .faq__q { padding: 16px 16px; }
  .faq__a { padding: 0 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .grain { animation: none; }
  .top-line { animation: none; }
  .hero__glow--1,
  .hero__glow--2,
  .hero__glow--3 { animation: none; }
  .cta-bg-glow--1,
  .cta-bg-glow--2 { animation: none; }
  .phone-glow { animation: none; }
  .badge-dot { animation: none; }
  .online-dot { animation: none; }
  .k-path { animation: none; stroke-dashoffset: 0; }
  .k-dot { animation: none; opacity: 1; transform: scale(1); }
  .scroll-mouse,
  .scroll-wheel { animation: none; }
  .typing-indicator span { animation: none; }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
