:root {
      --ink: #14101a;
      --plum: #2a1838;
      --berry: #c4356a;
      --berry-hot: #e84d7f;
      --lime: #c8f542;
      --lime-deep: #9bc41a;
      --cream: #fff7ee;
      --cream-deep: #ffe8d2;
      --sky: #7ec8ff;
      --line: rgba(20, 16, 26, 0.1);
      --shadow: 0 22px 50px rgba(42, 24, 56, 0.22);
      --max: 1120px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Plus Jakarta Sans", sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.55;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    .wrap { width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }

    /* Nav */
    .nav {
      position: absolute;
      inset: 0 0 auto;
      z-index: 30;
      padding: 1.15rem 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .logo {
      display: inline-flex;
      align-items: baseline;
      gap: 0.15rem;
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: -0.04em;
      color: #fff;
    }
    .logo .dot { color: var(--lime); }
    .nav-cta {
      padding: 0.65rem 1.1rem;
      border-radius: 999px;
      background: var(--lime);
      color: var(--ink);
      font-weight: 700;
      font-size: 0.88rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 20px rgba(200, 245, 66, 0.25);
    }
    .nav-cta:hover { transform: translateY(-2px) rotate(-1deg); }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: center;
      padding: 7rem 0 4rem;
      color: #fff;
      background:
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(232, 77, 127, 0.45), transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 90%, rgba(126, 200, 255, 0.25), transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200, 245, 66, 0.08), transparent 60%),
        linear-gradient(155deg, #1a0f24 0%, #2d1540 45%, #3a1848 100%);
      overflow: hidden;
    }
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.55;
      pointer-events: none;
      animation: floaty 12s ease-in-out infinite;
    }
    .blob.a { width: 280px; height: 280px; background: var(--berry); top: 8%; left: -4%; }
    .blob.b { width: 220px; height: 220px; background: var(--sky); bottom: 12%; right: -3%; animation-delay: -4s; }
    .blob.c { width: 160px; height: 160px; background: var(--lime); top: 55%; left: 40%; opacity: 0.2; animation-delay: -7s; }
    @keyframes floaty {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(18px, -24px) scale(1.08); }
    }

    .stars {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.45), transparent),
        radial-gradient(2px 2px at 70% 20%, rgba(200,245,66,0.5), transparent),
        radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,0.35), transparent),
        radial-gradient(2px 2px at 85% 60%, rgba(126,200,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 15% 80%, rgba(255,255,255,0.3), transparent);
      animation: twinkle 4s ease-in-out infinite alternate;
      pointer-events: none;
    }
    @keyframes twinkle { from { opacity: 0.55; } to { opacity: 1; } }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 2.75rem;
      align-items: center;
    }
    @media (min-width: 920px) {
      .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      background: rgba(200, 245, 66, 0.15);
      border: 1px solid rgba(200, 245, 66, 0.35);
      color: var(--lime);
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 1.1rem;
      opacity: 0;
      animation: pop 0.7s ease 0.1s forwards;
    }
    .brand-hero {
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      font-size: clamp(2.8rem, 8vw, 4.6rem);
      letter-spacing: -0.05em;
      line-height: 0.95;
      margin-bottom: 1.1rem;
      opacity: 0;
      animation: pop 0.7s ease 0.2s forwards;
    }
    .brand-hero .accent { color: var(--lime); }
    .brand-hero .slash {
      display: block;
      font-size: 0.42em;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: rgba(255,255,255,0.55);
      margin-top: 0.35rem;
    }
    .hero h1 {
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 700;
      font-size: clamp(1.45rem, 3vw, 1.95rem);
      letter-spacing: -0.03em;
      line-height: 1.2;
      max-width: 18ch;
      margin-bottom: 0.85rem;
      opacity: 0;
      animation: pop 0.7s ease 0.35s forwards;
    }
    .lede {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.78);
      max-width: 34ch;
      margin-bottom: 1.6rem;
      opacity: 0;
      animation: pop 0.7s ease 0.45s forwards;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      align-items: center;
      opacity: 0;
      animation: pop 0.7s ease 0.55s forwards;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.95rem 1.35rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.95rem;
      border: 0;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .btn:hover { transform: translateY(-2px) rotate(-0.5deg); }
    .btn-lime {
      background: var(--lime);
      color: var(--ink);
      box-shadow: 0 14px 32px rgba(200, 245, 66, 0.3);
    }
    .btn-lime:hover { background: #d6ff5e; }
    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.3);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.08); }
    .value-chip {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      margin-top: 1rem;
      opacity: 0;
      animation: pop 0.7s ease 0.65s forwards;
    }
    .value-chip strong { color: var(--lime); font-weight: 700; }

    @keyframes pop {
      from { opacity: 0; transform: translateY(16px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* Hero gadget */
    .gadget {
      position: relative;
      opacity: 0;
      animation: pop 0.9s ease 0.4s forwards;
    }
    .gadget-frame {
      position: relative;
      border-radius: 24px;
      background: rgba(255,247,238,0.97);
      color: var(--ink);
      padding: 1.15rem;
      box-shadow: var(--shadow);
      transform: rotate(1.5deg);
      border: 3px solid #fff;
    }
    .gadget-frame::before {
      content: "live preview vibes";
      position: absolute;
      top: -14px;
      left: 18px;
      background: var(--berry-hot);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.28rem 0.65rem;
      border-radius: 999px;
      transform: rotate(-3deg);
    }
    .gadget-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.9rem;
      padding-bottom: 0.75rem;
      border-bottom: 2px dashed rgba(20,16,26,0.12);
    }
    .gadget-head strong {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.05rem;
      letter-spacing: -0.02em;
    }
    .mini-score {
      background: var(--plum);
      color: var(--lime);
      font-weight: 800;
      font-size: 0.85rem;
      padding: 0.35rem 0.6rem;
      border-radius: 10px;
    }
    .opp {
      display: grid;
      gap: 0.55rem;
      padding: 0.85rem;
      border-radius: 14px;
      background: var(--cream-deep);
      margin-bottom: 0.65rem;
    }
    .opp:last-of-type { margin-bottom: 0.85rem; }
    .opp h4 {
      font-size: 0.92rem;
      font-weight: 700;
    }
    .opp p {
      font-size: 0.78rem;
      color: rgba(20,16,26,0.65);
    }
    .pills { display: flex; flex-wrap: wrap; gap: 0.35rem; }
    .pill {
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.22rem 0.5rem;
      border-radius: 999px;
      background: #fff;
    }
    .pill.pink { background: rgba(196,53,106,0.15); color: var(--berry); }
    .pill.green { background: rgba(155,196,26,0.25); color: #5a7a00; }
    .copy-box {
      background: var(--plum);
      color: #fff;
      border-radius: 14px;
      padding: 0.9rem 1rem;
      font-size: 0.8rem;
      line-height: 1.45;
      position: relative;
    }
    .copy-box .label {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 0.4rem;
    }
    .copy-box em { color: var(--sky); font-style: normal; font-weight: 600; }

    /* Sections */
    section { padding: 5rem 0; }
    .kicker {
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--berry);
      margin-bottom: 0.65rem;
    }
    .title {
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      letter-spacing: -0.04em;
      line-height: 1.08;
      margin-bottom: 0.75rem;
      max-width: 14ch;
    }
    .copy {
      color: rgba(20,16,26,0.68);
      max-width: 40ch;
      margin-bottom: 2.25rem;
      font-size: 1.02rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* Dual tools */
    .tools { background: #fff; }
    .tool-grid {
      display: grid;
      gap: 1.1rem;
    }
    @media (min-width: 800px) {
      .tool-grid { grid-template-columns: 1fr 1fr; }
    }
    .tool-card {
      position: relative;
      padding: 1.6rem 1.5rem;
      border-radius: 22px;
      border: 2px solid var(--ink);
      background: var(--cream);
      overflow: hidden;
      transition: transform 0.25s ease;
    }
    .tool-card:hover { transform: translateY(-4px) rotate(-0.4deg); }
    .tool-card.alt {
      background: var(--plum);
      color: #fff;
      border-color: var(--plum);
    }
    .tool-card .num {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      color: var(--berry);
      margin-bottom: 0.6rem;
      letter-spacing: -0.05em;
    }
    .tool-card.alt .num { color: var(--lime); }
    .tool-card h3 {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.45rem;
      letter-spacing: -0.03em;
      margin-bottom: 0.5rem;
    }
    .tool-card p { font-size: 0.95rem; opacity: 0.78; }
    .tool-card .spark {
      position: absolute;
      right: -10px;
      bottom: -20px;
      font-size: 6rem;
      opacity: 0.08;
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      pointer-events: none;
    }

    /* How */
    .how { background: var(--cream-deep); }
    .steps {
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 800px) {
      .steps { grid-template-columns: repeat(3, 1fr); }
    }
    .step {
      background: #fff;
      border-radius: 20px;
      padding: 1.35rem;
      border: 2px solid transparent;
      box-shadow: 0 10px 30px rgba(42,24,56,0.06);
    }
    .step:hover { border-color: var(--ink); }
    .step .ico {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 1.25rem;
      margin-bottom: 0.85rem;
      background: var(--lime);
    }
    .step:nth-child(2) .ico { background: var(--sky); }
    .step:nth-child(3) .ico { background: #ffb4c8; }
    .step h3 {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      margin-bottom: 0.4rem;
    }
    .step p { font-size: 0.92rem; color: rgba(20,16,26,0.65); }

    /* Sample */
    .sample-list { display: grid; gap: 0.85rem; }
    .sample-item {
      display: grid;
      gap: 1rem;
      padding: 1.25rem;
      background: #fff;
      border-radius: 20px;
      border: 2px solid var(--line);
    }
    @media (min-width: 780px) {
      .sample-item { grid-template-columns: 1.2fr 1fr; align-items: stretch; }
    }
    .sample-item:hover { border-color: var(--berry); }
    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin: 0.55rem 0 0.75rem;
    }
    .sample-item h3 {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
    }
    .sample-item .why {
      font-size: 0.9rem;
      color: rgba(20,16,26,0.62);
    }
    .fit {
      display: inline-flex;
      align-items: baseline;
      gap: 0.25rem;
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--berry);
    }
    .fit span { font-size: 0.7rem; font-weight: 700; color: rgba(20,16,26,0.45); text-transform: uppercase; letter-spacing: 0.05em; }
    .ad-copy {
      background: var(--plum);
      color: #fff;
      border-radius: 16px;
      padding: 1rem 1.1rem;
      font-size: 0.88rem;
      line-height: 1.5;
    }
    .ad-copy .tag {
      display: inline-block;
      background: var(--lime);
      color: var(--ink);
      font-size: 0.68rem;
      font-weight: 800;
      padding: 0.22rem 0.5rem;
      border-radius: 999px;
      margin-bottom: 0.55rem;
    }
    .ad-copy .audience {
      display: block;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.55);
      margin-top: 0.65rem;
    }

    /* Value */
    .value {
      background: var(--ink);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .value .kicker { color: var(--lime); }
    .value .copy { color: rgba(255,255,255,0.7); }
    .value-grid {
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 800px) {
      .value-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .vcard {
      padding: 1.35rem;
      border-radius: 18px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .vcard h3 {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.2rem;
      margin-bottom: 0.4rem;
      letter-spacing: -0.02em;
    }
    .vcard p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
    .price-burst {
      display: inline-block;
      margin-top: 1.75rem;
      padding: 0.85rem 1.25rem;
      background: var(--lime);
      color: var(--ink);
      border-radius: 16px;
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      transform: rotate(-1.5deg);
      box-shadow: 0 12px 28px rgba(200,245,66,0.25);
    }
    .price-burst small {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      opacity: 0.7;
      margin-top: 0.15rem;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 800px) {
      .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
    }
    .plan {
      background: #fff;
      border: 2px solid var(--ink);
      border-radius: 22px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .plan.hot {
      background: var(--berry);
      color: #fff;
      border-color: var(--berry);
      transform: scale(1.02);
      box-shadow: var(--shadow);
    }
    .plan h3 {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.35rem;
    }
    .plan .price {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: -0.04em;
    }
    .plan .price span {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      opacity: 0.65;
    }
    .plan ul {
      list-style: none;
      display: grid;
      gap: 0.4rem;
      font-size: 0.9rem;
      opacity: 0.8;
      flex: 1;
      margin: 0.4rem 0;
    }
    .plan ul li::before {
      content: "✓ ";
      font-weight: 800;
      color: var(--lime-deep);
    }
    .plan.hot ul li::before { color: var(--lime); }
    .plan .btn { width: 100%; margin-top: auto; }
    .plan.hot .btn-lime { background: var(--lime); color: var(--ink); }
    .plan:not(.hot) .btn-ghost {
      border-color: var(--ink);
      color: var(--ink);
    }

    /* Finale */
    .finale {
      text-align: center;
      background:
        radial-gradient(ellipse 50% 60% at 50% 0%, rgba(200,245,66,0.2), transparent 60%),
        linear-gradient(160deg, #2a1838, #1a0f24);
      color: #fff;
      overflow: hidden;
    }
    .finale .title {
      max-width: 16ch;
      margin-inline: auto;
    }
    .finale .copy {
      margin-inline: auto;
      color: rgba(255,255,255,0.7);
    }
    .finale .cta-row { justify-content: center; }

    footer {
      background: #0c0910;
      color: rgba(255,255,255,0.5);
      padding: 1.4rem 0;
      font-size: 0.85rem;
    }
    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
      align-items: center;
    }
    footer .logo { font-size: 1.05rem; }

    .mock-note {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 60;
      max-width: 15rem;
      padding: 0.7rem 0.85rem;
      background: var(--ink);
      color: #fff;
      border-radius: 14px;
      font-size: 0.72rem;
      line-height: 1.4;
      border: 2px solid var(--lime);
      box-shadow: var(--shadow);
    }
    .mock-note strong { color: var(--lime); }

footer .logo{color:var(--ink)}footer .logo .dot{color:var(--berry)}footer a{text-decoration:none}.plan:not(.hot) .btn-ghost{border:2px solid var(--ink);color:var(--ink)}.mock-note{display:none!important}


/* Newsletter / marketing forms */
.mkt-form {
  display: grid;
  gap: 0.85rem;
  max-width: 28rem;
}
.mkt-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.mkt-form input[type="email"],
.mkt-form input[type="text"] {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.mkt-form input:focus {
  outline: 3px solid rgba(200, 245, 66, 0.45);
  border-color: var(--plum);
}
.mkt-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}
.hp-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
