:root {
      --bg: #fffaf5;
      --bg-soft: #fff3ea;
      --surface: rgba(255,255,255,0.92);
      --surface-strong: #ffffff;
      --text: #172132;
      --muted: #606a78;
      --line: rgba(23, 33, 50, 0.1);
      --dark: #1d2739;
      --dark-2: #2d3750;
      --pink: #ff3d8e;
      --pink-2: #ff73b0;
      --pink-soft: rgba(255, 61, 142, 0.1);
      --gold: #ffd58a;
      --cream: #fff0d8;
      --success: #1d9b63;
      --shadow: 0 20px 60px rgba(31, 42, 61, 0.14);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top right, rgba(255, 61, 142, 0.08), transparent 24%),
        radial-gradient(circle at left center, rgba(255, 218, 180, 0.55), transparent 28%),
        var(--bg);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
    .section { padding: 92px 0; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 8px 14px; border-radius: 999px;
      background: var(--pink-soft); color: #d92b75;
      font-size: 0.9rem; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase;
    }
    .eyebrow::before {
      content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--pink);
      box-shadow: 0 0 0 6px rgba(255, 61, 142, 0.14);
    }
    h1,h2,h3,h4,p { margin-top: 0; }
    h1 {
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      line-height: 1.02; letter-spacing: -0.04em; margin: 18px 0 18px;
    }
    h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.08; letter-spacing: -0.03em; margin: 18px 0 18px;
    }
    h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 10px; }
    .lead {
      font-size: clamp(1.04rem, 1.8vw, 1.2rem);
      color: var(--muted); max-width: 820px;
    }
    .muted { color: var(--muted); }

    .site-header {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(255, 250, 245, 0.84);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }
    .nav-wrap {
      min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
      position: relative;
    }
    .brand { display: flex; align-items: center; gap: 14px; font-weight: 900; font-size: 1.14rem; }
    .brand-badge {
      width: 56px; height: 56px; border-radius: 16px; background: #fff; padding: 6px;
      border: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .nav-toggle {
      display: none; border: 0; cursor: pointer; font-size: 1rem;
      background: #fff; color: var(--dark); border-radius: 12px; padding: 10px 12px; box-shadow: var(--shadow);
    }
    .nav-links { display: flex; align-items: center; gap: 10px; }
    .nav-links a {
      padding: 12px 16px; border-radius: 999px; font-weight: 700; color: var(--dark-2); transition: .25s ease;
    }
    .nav-links a:hover, .nav-links a.active { background: var(--pink-soft); color: #d92b75; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      padding: 15px 22px; border-radius: 999px; border: 1px solid transparent;
      font-weight: 800; transition: transform .2s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff; background: linear-gradient(135deg, var(--pink), var(--pink-2));
      box-shadow: 0 14px 30px rgba(255,61,142,.25);
    }
    .btn-secondary {
      color: var(--dark); background: #fff; border-color: var(--line); box-shadow: var(--shadow);
    }

    .hero { padding: 42px 0 74px; overflow: hidden; }
    .hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 46px; align-items: center; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 16px; }
    .microcopy { color: #d92b75; font-weight: 700; margin-bottom: 24px; }
    .hero-metrics {
      display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px;
    }
    .metric {
      background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow);
    }
    .metric strong { display: block; font-size: 1.2rem; margin-bottom: 6px; }

    .hero-stage {
      position: relative; padding: 24px; border-radius: 34px; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,245,237,.95));
      border: 1px solid var(--line); box-shadow: var(--shadow);
      min-height: 680px;
    }
    .hero-stage::after {
      content: ""; position: absolute; right: -40px; top: -50px; width: 220px; height: 220px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,61,142,.18), transparent 66%);
      pointer-events: none;
    }
    .floating-chip {
      position: absolute; padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
      box-shadow: var(--shadow); font-weight: 800; font-size: .92rem;
    }
    .chip-1 { top: 26px; left: 26px; color: #d92b75; }
    .chip-2 { right: 34px; top: 66px; color: var(--dark); }
    .chip-3 { right: 28px; bottom: 48px; color: var(--dark); }
    .phones {
      position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 14px; height: 100%; padding-top: 40px;
    }
    .phone {
      width: 236px; border-radius: 34px; background: #111a2a; padding: 10px; box-shadow: 0 28px 60px rgba(17,26,42,.28);
      position: relative; transform-origin: bottom center; flex: 0 0 auto;
    }
    .phone.small { width: 205px; transform: translateY(18px) rotate(-4deg); }
    .phone.tall { transform: rotate(4deg); }
    .phone::before {
      content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
      width: 38%; height: 24px; border-radius: 0 0 18px 18px; background: #111a2a; z-index: 4;
    }
    .screen {
      aspect-ratio: 9 / 19.5; min-height: auto; border-radius: 26px; overflow: hidden; background: linear-gradient(180deg, #fffaf7, #fff2e8);
      border: 1px solid rgba(255,255,255,.15); position: relative;
    }
    .screen-top {
      display: flex; align-items: center; justify-content: space-between; padding: 18px 18px 12px; font-size: .85rem; font-weight: 800; color: var(--dark);
    }
    .app-header {
      padding: 0 18px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    }
    .app-logo { display: flex; align-items: center; gap: 10px; font-weight: 900; }
    .app-logo img { width: 34px; height: 34px; border-radius: 12px; background: #fff; padding: 4px; }
    .pill {
      display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
      background: rgba(255,255,255,.88); border: 1px solid var(--line); font-size: .8rem; font-weight: 800;
    }
    .screen-hero {
      margin: 0 16px 14px; border-radius: 24px; padding: 18px;
      background: linear-gradient(135deg, var(--dark), #2b3652 60%, #4a3250 100%); color: #fff;
    }
    .screen-hero p { color: rgba(255,255,255,.82); font-size: .9rem; }
    .tile-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin: 14px 0;
    }
    .tile {
      aspect-ratio: 1; border-radius: 10px; background: #fff5e9; border: 1px solid rgba(255,255,255,.14);
      display: grid; place-items: center; font-size: .8rem; font-weight: 900; color: #ff3d8e;
    }
    .tile.dark { background: rgba(17,26,42,.55); color: #fff; }
    .tile.pink { background: rgba(255,61,142,.28); color: #fff; }
    .screen-body { padding: 0 16px 18px; display: grid; gap: 12px; }
    .app-card {
      border-radius: 20px; padding: 14px; background: rgba(255,255,255,.86); border: 1px solid var(--line);
    }
    .progress {
      height: 10px; background: rgba(23,33,50,.08); border-radius: 999px; overflow: hidden; margin-top: 10px;
    }
    .progress > span {
      display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), #ff8abc);
    }
    .mini-list { display: grid; gap: 10px; }
    .mini-item {
      display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 16px;
      background: rgba(255,240,216,.55);
    }
    .coin-badge { font-weight: 900; color: #d92b75; }

    .panel {
      background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow);
    }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 34px; }
    .card {
      background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,247,240,.92));
      border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); position: relative; overflow: hidden;
    }
    .card::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: linear-gradient(90deg, var(--pink), var(--gold));
    }

    .flow {
      display: grid; gap: 18px; margin-top: 34px;
    }
    .step {
      display: grid; grid-template-columns: 86px 1fr; gap: 18px; align-items: start;
      background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: var(--shadow);
    }
    .step-num {
      width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.2rem;
      background: linear-gradient(135deg, var(--dark), #33415f);
      box-shadow: 0 14px 32px rgba(31,42,61,.22);
    }
    .step ul { padding-left: 1.1rem; margin: 12px 0 0; }

    .funnel-map {
      margin-top: 34px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; align-items: stretch;
    }
    .funnel-node {
      background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: var(--shadow); position: relative;
    }
    .funnel-node:not(:last-child)::after {
      content: "→"; position: absolute; top: 50%; right: -13px; transform: translateY(-50%); font-size: 1.4rem; font-weight: 900; color: var(--pink);
    }
    .node-icon {
      width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 14px;
      background: var(--pink-soft); color: #d92b75; font-weight: 900;
    }

    .sponsor-banner {
      margin-top: 36px; background: linear-gradient(135deg, var(--dark), #293552 58%, #442d47 100%); color: #fff;
      border-radius: 30px; padding: 32px; box-shadow: var(--shadow); position: relative; overflow: hidden;
    }
    .sponsor-banner::after {
      content: ""; position: absolute; width: 220px; height: 220px; right: -40px; top: -70px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
    }
    .sponsor-banner p { color: rgba(255,255,255,.85); }

    .contact-layout {
      display: grid; grid-template-columns: .94fr 1.06fr; gap: 28px; margin-top: 34px;
    }
    .contact-card {
      background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,247,240,.95));
      border-radius: 28px; padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .contact-list { display: grid; gap: 16px; margin-top: 28px; }
    .contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
    .icon-box {
      width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; font-weight: 900;
      background: linear-gradient(135deg, var(--pink), var(--pink-2)); color: #fff; box-shadow: 0 10px 24px rgba(255,61,142,.24);
    }
    .contact-item .icon-box.dark { background: linear-gradient(135deg, var(--dark), #3a4767); }

    form { display: grid; gap: 18px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    label { display: block; font-weight: 800; margin-bottom: 8px; }
    input, textarea {
      width: 100%; border: 1px solid rgba(23,33,50,.14); border-radius: 16px; padding: 14px 16px; font: inherit; color: var(--text); background: #fff;
      outline: none; transition: border-color .2s ease, box-shadow .2s ease;
    }
    input:focus, textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,61,142,.12); }
    textarea { min-height: 150px; resize: vertical; }
    .form-note { font-size: .95rem; color: var(--muted); }
    .form-status { display: none; padding: 14px 16px; border-radius: 14px; font-weight: 700; }
    .form-status.success { display: block; color: #0f6d42; background: rgba(29,155,99,.12); border: 1px solid rgba(29,155,99,.25); }
    .form-status.error { display: block; color: #a12648; background: rgba(255,61,142,.1); border: 1px solid rgba(255,61,142,.2); }

    footer {
      padding: 28px 0 42px; border-top: 1px solid var(--line); background: rgba(255,255,255,.55);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 28px; padding: 24px 0 20px;
    }
    .footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
    .footer-brand img {
      width: 68px; height: 68px; border-radius: 20px; background: #fff; padding: 8px; box-shadow: var(--shadow); border: 1px solid var(--line);
    }
    .footer-links, .social-links { display: grid; gap: 10px; }
    .footer-links a, .social-links a { color: var(--muted); font-weight: 600; }
    .footer-links a:hover, .social-links a:hover { color: #d92b75; }
    .footer-bottom {
      display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .95rem;
    }

    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1160px) {
      .hero-grid, .contact-layout, .footer-grid, .grid-2 { grid-template-columns: 1fr; }
      .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .funnel-map { grid-template-columns: 1fr; }
      .funnel-node:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -18px; transform: translateX(-50%); }
      .hero-stage { min-height: auto; }
    }

    @media (max-width: 860px) {
      .nav-toggle { display: inline-flex; }
      .nav-links {
        display: none; position: absolute; top: calc(100% + 10px); left: 1rem; right: 1rem; flex-direction: column; align-items: stretch;
        padding: 12px; background: rgba(255,250,245,.98); border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow);
      }
      .nav-links.open { display: flex; }
      .nav-links a { text-align: center; }
      .cards, .hero-metrics, .form-grid { grid-template-columns: 1fr; }
      .phones { flex-direction: column; align-items: center; padding-top: 70px; }
      .phone, .phone.small { width: min(100%, 250px); transform: none; }
      .step { grid-template-columns: 1fr; }
      .step-num { width: 56px; height: 56px; }
      .section { padding: 76px 0; }
      .floating-chip { position: static; display: inline-flex; margin: 0 8px 10px 0; }
      .hero-stage { padding-top: 18px; }
    }


/* form */


.form-status {
  display: none;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status.loading {
  display: block;
  color: #664d03;
  background: #fff3cd;
  border: 1px solid #ffecb5;
}

.form-status.success {
  display: block;
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

.form-status.error {
  display: block;
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

#submitButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

