.hero { padding: 56px 0 96px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; min-height: calc(100vh - 200px); }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,27,110,0.12); border: 1px solid rgba(255,27,110,0.35); padding: 8px 18px; border-radius: 999px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.4px; color: var(--magenta); margin-bottom: 32px; }
.hero h1 { font-weight: 900; font-size: clamp(36px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -2.4px; margin-bottom: 28px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--magenta) 0%, var(--lime) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18px; color: var(--t-70); max-width: 580px; line-height: 1.65; margin-bottom: 36px; }
.hero-sub strong { color: var(--cream); font-weight: 800; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.text-link { color: var(--lime); font-weight: 800; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.phone-stage { --coral: #FF5C36; position: relative; width: 301px; height: 655px; margin: 0 auto; }
.phone { width: 402px; height: 874px; border-radius: 44px; overflow: hidden; position: relative; display: flex; flex-direction: column; box-shadow: 0 28px 60px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.06) inset, 0 0 0 1px rgba(255,255,255,0.04); isolation: isolate; transform: scale(0.75); transform-origin: top left; }
.phone .statusbar { height: 44px; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 24px 8px; font-size: 14px; font-weight: 700; color: var(--ink); position: relative; z-index: 5; flex-shrink: 0; }
.phone .statusbar .icons { display: flex; gap: 4px; align-items: center; }
.phone .statusbar .bar { width: 3px; background: currentColor; border-radius: 1px; }
.phone .statusbar .bar.s1 { height: 4px; }
.phone .statusbar .bar.s2 { height: 6px; }
.phone .statusbar .bar.s3 { height: 8px; }
.phone .statusbar .bar.s4 { height: 10px; }
.phone .statusbar .wifi { width: 14px; height: 10px; background: currentColor; border-radius: 2px; opacity: 0.95; }
.phone .statusbar .bat { width: 26px; height: 12px; border: 1.5px solid currentColor; border-radius: 3px; padding: 1px; position: relative; }
.phone .statusbar .bat::before { content:''; display:block; width: 18px; height: 6px; background: currentColor; border-radius: 1px; }
.phone .home-indicator { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); width: 140px; height: 5px; border-radius: 3px; background: rgba(12,12,12,0.45); z-index: 5; }
.phone .body { flex: 1; padding: 8px 24px 36px; position: relative; z-index: 3; display: flex; flex-direction: column; min-height: 0; }
.phone .sticker { display: inline-block; padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; background: var(--cream); color: var(--ink); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); transform: rotate(-3deg); white-space: nowrap; }
.phone .sticker.lime { background: var(--lime); }
.phone .sticker.gold { background: var(--gold); }
.phone .sticker.coral { background: var(--coral); color: var(--cream); }
.phone .mega { font-weight: 900; letter-spacing: -3.5px; line-height: 0.88; color: var(--ink); }
.phone .cta { display: flex; align-items: center; justify-content: center; width: 100%; height: 64px; border-radius: 100px; background: var(--ink); color: var(--cream); font-size: 17px; font-weight: 800; letter-spacing: -0.2px; margin-top: auto; border: none; cursor: pointer; box-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 14px 32px rgba(0,0,0,0.22); transition: transform 0.1s, box-shadow 0.1s, opacity 0.2s; flex-shrink: 0; }
.phone .cta:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,0.18), 0 18px 36px rgba(0,0,0,0.28); }
.phone .cta:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 6px 16px rgba(0,0,0,0.2); }
.phone .cta-arrow { margin-left: 10px; font-weight: 900; }

.s1 { background: var(--magenta); }
.s1 .body { gap: 14px; padding-top: 20px; }
.s1 .top-row { display: flex; justify-content: space-between; align-items: flex-start; }
.s1 .map-badge { display: flex; align-items: center; gap: 6px; background: rgba(12,12,12,0.85); color: var(--cream); padding: 6px 10px; border-radius: 100px; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; }
.s1 .map-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); animation: dotBreathe 1.8s ease-in-out infinite; }
@keyframes dotBreathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--lime); }
  50% { transform: scale(1.35); box-shadow: 0 0 14px var(--lime), 0 0 22px rgba(212, 242, 58, 0.5); }
}
.s1 .hero { margin-top: 14px; padding: 0; display: block; min-height: 0; }
.s1 .hero .line1 { font-size: 94px; transform: translateX(-4px); }
.s1 .hero .line2 { font-size: 94px; margin-top: -8px; transform: translateX(24px); }
.s1 .hero .line2 em { font-style: normal; color: var(--lime); }
.s1 .sub { margin-top: 14px; font-size: 16px; font-weight: 700; color: var(--ink); max-width: 300px; line-height: 1.3; }
.s1 .sub em { font-style: normal; background: var(--cream); padding: 1px 8px; border-radius: 6px; }
.s1 .gift-stage { flex: 1; position: relative; margin: 4px 0; display: flex; align-items: center; justify-content: center; }
.s1 .burst { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 280px; height: 280px; background: var(--lime); border: 3px solid var(--ink); border-radius: 50%; box-shadow: 8px 8px 0 var(--ink); }
.s1 .products-grp { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.s1 .products-grp .item { position: relative; }
.s1 .amz-item { filter: drop-shadow(5px 5px 0 #0C0C0C); transform: rotate(-3deg); position: relative; z-index: 2; animation: floatBottleAmz 3.8s ease-in-out infinite; }
.s1 .amz-item img.real-product { width: 160px; height: 238px; display: block; object-fit: contain; }
@keyframes floatBottleAmz {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-7px); }
}
.s1 .sticker-1 { position: absolute; top: 6px; right: -8px; transform: rotate(12deg); z-index: 5; animation: floatFree 3.4s ease-in-out 0.2s infinite; }
.s1 .sticker-2 { position: absolute; top: 14px; left: -8px; transform: rotate(-7deg); z-index: 5; animation: floatOne 3.6s ease-in-out 0.8s infinite; }
.s1 .top-row .sticker.lime { animation: floatTop 3.2s ease-in-out infinite; }
@keyframes floatTop {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-4px); }
}
@keyframes floatFree {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(14deg) translateY(-6px); }
}
@keyframes floatOne {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-9deg) translateY(-5px); }
}

.stats { padding: 56px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: rgba(255,245,230,0.02); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-cell { padding: 12px 28px; border-right: 1px solid var(--hairline); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-weight: 900; font-size: 44px; line-height: 1; letter-spacing: -1.4px; color: var(--cream); margin-bottom: 8px; }
.stat-num.accent { background: linear-gradient(135deg, var(--magenta), var(--lime)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num.live { font-size: 28px; color: var(--lime); }
.stat-label { font-size: 13px; color: var(--t-55); font-weight: 700; }

.how { padding: 88px 0; }
.how-intro { font-size: 17px; color: var(--t-70); line-height: 1.7; max-width: 760px; margin-bottom: 56px; }
.how-intro strong { color: var(--cream); font-weight: 800; }
.how-steps { display: flex; flex-direction: column; gap: 16px; }
.how-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 28px 32px; background: rgba(255,245,230,0.04); border: 1px solid var(--hairline); border-radius: 22px; align-items: start; }
.how-num { font-weight: 900; font-size: 52px; line-height: 0.9; letter-spacing: -2px; background: linear-gradient(135deg, var(--magenta), var(--lime)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.how-step h4 { font-weight: 900; font-size: 20px; letter-spacing: -0.3px; line-height: 1.2; margin-bottom: 10px; }
.how-step p { font-size: 15px; color: var(--t-70); line-height: 1.7; }
.how-step p strong { color: var(--cream); font-weight: 800; }
.how-step p a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.how-closer { margin-top: 32px; padding: 24px 28px; background: rgba(212,242,58,0.06); border: 1px solid rgba(212,242,58,0.3); border-left: 4px solid var(--lime); border-radius: 18px; font-size: 16px; color: var(--cream); line-height: 1.6; font-weight: 700; }

.glossary { padding: 88px 0; background: rgba(255,245,230,0.02); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.term-list { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
.term-row { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 20px 24px; background: rgba(255,245,230,0.03); border: 1px solid var(--hairline); border-radius: 14px; align-items: start; }
.term-row .name { font-weight: 900; font-size: 17px; color: var(--cream); letter-spacing: -0.2px; }
.term-row .name a { color: var(--lime); font-weight: 700; font-size: 12px; margin-left: 6px; }
.term-row .def { font-size: 14.5px; color: var(--t-70); line-height: 1.65; }

.two-sides { padding: 88px 0; }
.sides-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.side-card { background: var(--ink-soft); border: 1px solid var(--hairline); border-radius: 28px; padding: 40px 36px; position: relative; overflow: hidden; transition: transform 0.25s, border-color 0.2s; min-height: 480px; display: flex; flex-direction: column; color: inherit; }
.side-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--magenta); }
.side-card.partners::before { background: var(--violet); }
.side-card:hover { transform: translateY(-4px); border-color: rgba(255,27,110,0.4); }
.side-card.partners:hover { border-color: rgba(149,119,240,0.4); }
.side-card h3 { font-weight: 900; font-size: 26px; letter-spacing: -0.6px; line-height: 1.15; margin-bottom: 18px; }
.side-card > p { font-size: 15.5px; color: var(--t-70); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.side-items { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.side-item { font-size: 13px; font-weight: 800; color: var(--cream); padding: 6px 12px; border: 1px solid var(--hairline-2); border-radius: 8px; background: rgba(255,245,230,0.04); }
.side-link { display: inline-flex; align-items: center; gap: 8px; color: var(--magenta); font-weight: 900; font-size: 14px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.side-card.partners .side-link { color: var(--violet); }

.wsi-teaser { padding: 88px 0; background: linear-gradient(135deg, rgba(0,102,255,0.04), rgba(149,119,240,0.06)); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.wsi-teaser-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.wsi-intro { margin-bottom: 28px; }
.wsi-mock { background: var(--ink-soft); border: 1px solid var(--hairline-2); border-radius: 28px; padding: 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.wsi-mock-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--hairline); margin-bottom: 22px; }
.wsi-mock-title { font-weight: 900; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--t-70); }
.wsi-mock-live { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 900; color: var(--lime); letter-spacing: 1.2px; text-transform: uppercase; }
.wsi-mock-live .ld { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 1.6s ease infinite; }
.wsi-bars { display: flex; flex-direction: column; gap: 14px; }
.wsi-bar { display: grid; grid-template-columns: 48px 1fr 56px; gap: 16px; align-items: center; }
.wsi-bar-abbr { font-weight: 900; font-size: 13px; color: var(--lime); letter-spacing: 0.06em; }
.wsi-bar-track { height: 7px; background: rgba(255,245,230,0.08); border-radius: 4px; overflow: hidden; }
.wsi-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--magenta), var(--lime)); }
.wsi-bar-val { font-weight: 900; font-size: 14px; color: var(--cream); text-align: right; font-variant-numeric: tabular-nums; }

.trust { padding: 88px 0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.trust-body p { font-size: 17px; color: var(--t-70); line-height: 1.7; margin-bottom: 24px; }
.trust-body p strong { color: var(--cream); font-weight: 800; }
.kdk-proof p strong { color: var(--cream); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 56px; padding: 40px 0 80px; }
  .hero-right { order: -1; }
  .how-step { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .how-num { font-size: 36px; }
  .term-row { grid-template-columns: 1fr; gap: 8px; }
  .sides-grid { grid-template-columns: 1fr; }
  .wsi-teaser-grid { grid-template-columns: 1fr; gap: 56px; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .phone-stage { width: 322px; height: 699px; }
  .phone-stage .phone { transform: scale(0.8); transform-origin: top left; }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr; }
  .phone-stage { width: 281px; height: 612px; }
  .phone-stage .phone { transform: scale(0.7); }
}
