@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&family=Anton&family=Baloo+2:wght@700;800&display=swap');

:root {
  --paper: #fff2e6;
  --paper-deep: #ffe1c2;
  --ink: #2b1522;
  --ink-soft: #6b5560;
  --gray: #96878c;
  --white: #ffffff;
  --berry: #ff2f87;
  --berry-deep: #c81368;
  --gold: #ffa63d;
  --pine: #00c2a8;
  --pink: #ff5ca8;
  --purple: #8b3dff;
  --coral: #ff6b6b;
  --line: #ffd2a8;
  font-size: 17px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-weight: 800;
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

/* ============================================================
   NAV
   ============================================================ */

.hero-band {
  background: linear-gradient(115deg, var(--berry-deep) 0%, var(--purple) 45%, var(--coral) 72%, var(--gold) 100%);
}

.nav {
  background: var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.nav-mark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--berry);
  letter-spacing: -0.02em;
}

.nav-cta {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--white);
  background: var(--berry);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover { background: var(--berry-deep); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 16px 24px 40px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.hero-inner {
  max-width: 560px;
}

.hero-visual {
  display: none;
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  z-index: 1;
  width: 300px;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin: 0 auto 22px;
}

.hero-sub strong { color: var(--white); }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 0 26px;
  list-style: none;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.hero-chips li:not(:last-child)::after {
  content: "\2022";
  margin: 0 10px;
  opacity: 0.55;
}

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(26, 21, 49, 0.22);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(26, 21, 49, 0.28);
}

.btn-primary:active { transform: translateY(0); }

/* floating decorative blobs */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  mix-blend-mode: screen;
}

.blob-1 { width: 220px; height: 220px; background: var(--gold); top: 20px; left: 10px; opacity: 0.45; }
.blob-4 {
  width: 220px; height: 220px; background: rgba(255, 255, 255, 0.5);
  bottom: 10px; right: 10px; opacity: 0.5; mix-blend-mode: normal; filter: blur(40px);
}

.hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 999px;
  background: repeating-radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.16) 0px,
    rgba(255, 255, 255, 0.16) 2px,
    transparent 2px,
    transparent 46px
  );
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   SHOWCASE — browser mockup
   ============================================================ */

.examples {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 60px 24px;
}

.examples-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.examples-blob {
  position: absolute;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(70px);
}

.examples-blob-1 { width: 300px; height: 300px; top: 10px; left: 10px; background: var(--berry); opacity: 0.12; }
.examples-blob-2 { width: 280px; height: 280px; bottom: 10px; right: 10px; background: var(--pine); opacity: 0.14; }

.examples-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.examples-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}

.examples-heading h2 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  margin-bottom: 14px;
  color: var(--ink);
}

.text-gradient {
  background: linear-gradient(115deg, var(--berry-deep) 0%, var(--purple) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.examples-heading p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section-eyebrow {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--berry);
  margin: 0 0 14px;
}

.example-row {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-bottom: 60px;
}

.example-row:last-child { margin-bottom: 0; }

.example-row-reverse { flex-direction: row-reverse; }

.example-media { flex: 0 0 auto; }

.example-text {
  flex: 1;
  min-width: 260px;
}

.example-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: var(--ink);
}

.example-text > p:not(.showcase-demo-note) {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 420px;
}

.mock-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto 20px;
}

.mock-wrap-browser {
  max-width: 500px;
}

.mock-blob {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  z-index: 0;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) translateX(-110px);
  opacity: 0.9;
}

.mock-blob-birthday { background: var(--gold); }
.mock-blob-halloween { background: var(--purple); opacity: 0.85; }

.mock-blob-retirement {
  background: var(--pink);
  width: 250px;
  height: 250px;
  top: 30px;
  transform: translateX(-50%) translateX(200px);
}

.example-row .example-text .section-eyebrow { color: var(--berry); }
.example-row-reverse .example-text .section-eyebrow { color: var(--purple); }
.example-row .example-text .section-eyebrow-retirement,
.example-row-reverse .example-text .section-eyebrow-retirement { color: var(--pink); }

.phone-mock {
  position: relative;
  z-index: 1;
  width: 240px;
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(26, 21, 49, 0.28);
}

.phone-screen {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
  height: 430px;
  background: var(--white);
}

.phone-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 780px;
  border: none;
  transform-origin: top left;
  transform: scale(0.5538);
  pointer-events: none;
}

.browser-mock {
  position: relative;
  z-index: 1;
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 14px;
  padding: 0 0 10px;
  box-shadow: 0 24px 50px rgba(26, 21, 49, 0.28);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.browser-dot-red { background: #ff5f57; }
.browser-dot-yellow { background: #febc2e; }
.browser-dot-green { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-screen {
  position: relative;
  margin: 0 10px;
  border-radius: 6px;
  overflow: hidden;
  height: 280px;
  background: var(--white);
}

.browser-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 916px;
  border: none;
  transform-origin: top left;
  transform: scale(0.3056);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  background: #0d0d0d;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 2;
}

.phone-home-indicator.dark { background: rgba(43, 21, 34, 0.3); }

.phone-url-bar {
  position: absolute;
  bottom: 22px;
  left: 12px;
  right: 12px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(242, 242, 247, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3a3a3c;
  z-index: 2;
}

.phone-url-bar .lock { font-size: 0.68rem; }

.mini-ticket { text-align: center; }

.mini-eyebrow {
  margin: 0 0 6px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.mini-title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.mini-title span { color: #e10600; }

.showcase-demo-btn {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 166, 61, 0.32);
}

.showcase-demo-btn:hover {
  background: #ffb85c;
  box-shadow: 0 14px 30px rgba(255, 166, 61, 0.38);
}

.phone-screen-halloween {
  background: linear-gradient(135deg, #fff2e6, #ffe1c2);
}

.phone-mock-halloween { background: #2b1522; }
.phone-mock-halloween .phone-notch { background: #2b1522; }

.mini-eyebrow-halloween {
  margin: 0 0 6px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7a7085;
}

.mini-title-halloween {
  margin: 0;
  font-family: "Baloo 2", cursive, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #4b2377;
}

.mini-title-halloween span { color: #ff7a1a; }

.showcase-demo-btn-purple {
  background: #6a3fa0;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(106, 63, 160, 0.32);
}

.showcase-demo-btn-purple:hover {
  background: #4b2377;
  box-shadow: 0 14px 30px rgba(106, 63, 160, 0.38);
}

.phone-screen-retirement {
  background: linear-gradient(135deg, #1c2c40, #0f1a28);
}

.showcase-demo-btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 92, 168, 0.32);
}

.showcase-demo-btn-pink:hover {
  background: var(--berry);
  box-shadow: 0 14px 30px rgba(255, 47, 135, 0.38);
}

.showcase-demo-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.showcase-demo-note strong { color: var(--ink); }

/* ============================================================
   FEATURES
   ============================================================ */

.features {
  position: relative;
  overflow: hidden;
  padding: 64px 24px;
  background: var(--white);
}

.features-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.features-blob {
  position: absolute;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(70px);
}

.features-blob-1 { width: 320px; height: 320px; top: 10px; left: 10px; background: var(--gold); opacity: 0.18; }
.features-blob-2 { width: 280px; height: 280px; bottom: 10px; right: 10px; background: var(--purple); opacity: 0.16; }
.features-blob-3 { width: 200px; height: 200px; top: 42%; left: 45%; background: var(--pine); opacity: 0.12; }

.features-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 34px;
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 20px 20px;
  box-shadow: 0 10px 26px var(--accent-shadow, rgba(26, 21, 49, 0.08));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--accent, var(--berry));
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px var(--accent-shadow-hover, rgba(26, 21, 49, 0.16));
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: var(--accent-soft, rgba(255, 47, 135, 0.14));
}

.feature-card:nth-child(6n+1) { --accent: var(--berry); --accent-soft: rgba(255, 47, 135, 0.14); --accent-shadow: rgba(255, 47, 135, 0.16); --accent-shadow-hover: rgba(255, 47, 135, 0.26); }
.feature-card:nth-child(6n+2) { --accent: var(--pine); --accent-soft: rgba(0, 194, 168, 0.16); --accent-shadow: rgba(0, 194, 168, 0.18); --accent-shadow-hover: rgba(0, 194, 168, 0.28); }
.feature-card:nth-child(6n+3) { --accent: var(--gold); --accent-soft: rgba(255, 166, 61, 0.22); --accent-shadow: rgba(255, 166, 61, 0.2); --accent-shadow-hover: rgba(255, 166, 61, 0.3); }
.feature-card:nth-child(6n+4) { --accent: var(--purple); --accent-soft: rgba(139, 61, 255, 0.14); --accent-shadow: rgba(139, 61, 255, 0.18); --accent-shadow-hover: rgba(139, 61, 255, 0.28); }
.feature-card:nth-child(6n+5) { --accent: var(--berry-deep); --accent-soft: rgba(200, 19, 104, 0.14); --accent-shadow: rgba(200, 19, 104, 0.18); --accent-shadow-hover: rgba(200, 19, 104, 0.28); }
.feature-card:nth-child(6n+6) { --accent: var(--coral); --accent-soft: rgba(255, 107, 107, 0.16); --accent-shadow: rgba(255, 107, 107, 0.18); --accent-shadow-hover: rgba(255, 107, 107, 0.28); }

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.feature-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent, var(--pine));
  letter-spacing: 0.02em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how {
  background: linear-gradient(135deg, #f3ecff 0%, #ffeef5 50%, #fff3e6 100%);
  padding: 60px 24px;
}

.how-inner {
  max-width: 760px;
  margin: 0 auto;
}

.how-inner > .section-eyebrow,
.how-inner > h2 {
  text-align: center;
}

.how h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 34px;
  color: var(--ink);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--accent-soft, rgba(255, 166, 61, 0.08));
  border-left: 5px solid var(--accent, var(--gold));
}

.how-step:nth-child(1) { --accent: var(--gold); --accent-soft: rgba(255, 166, 61, 0.09); }
.how-step:nth-child(2) { --accent: var(--purple); --accent-soft: rgba(139, 61, 255, 0.07); }
.how-step:nth-child(3) { --accent: var(--berry); --accent-soft: rgba(255, 47, 135, 0.07); }

.how-step-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--line);
  line-height: 1;
  min-width: 34px;
}

.how-step:nth-child(1) .how-step-num { color: rgba(255, 166, 61, 0.4); }
.how-step:nth-child(2) .how-step-num { color: rgba(139, 61, 255, 0.28); }
.how-step:nth-child(3) .how-step-num { color: rgba(255, 47, 135, 0.28); }

.how-step h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.how-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   INTEREST FORM
   ============================================================ */

.interest {
  position: relative;
  overflow: hidden;
  padding: 60px 24px 70px;
  background: var(--white);
}

.interest-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.interest-blob {
  position: absolute;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(70px);
}

.interest-blob-1 { width: 280px; height: 280px; top: 10px; right: 10px; background: var(--berry); opacity: 0.12; }
.interest-blob-2 { width: 240px; height: 240px; bottom: 10px; left: 10px; background: var(--gold); opacity: 0.16; }

.interest-inner {
  position: relative;
  z-index: 1;
}

.interest-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.interest h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 14px;
  color: var(--ink);
}

.interest-sub {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin: 0 0 26px;
}

.interest-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 20px 50px rgba(26, 21, 49, 0.1);
  border: 1px solid var(--line);
}

.interest-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field .optional {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gray);
}

.field input,
.field select,
.field textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(255, 47, 135, 0.12);
}

.btn-submit {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--berry);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 47, 135, 0.3);
}

.btn-submit:hover {
  background: var(--berry-deep);
  box-shadow: 0 14px 30px rgba(255, 47, 135, 0.36);
}

.interest-thanks {
  text-align: center;
  padding: 28px 20px;
}

.thanks-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--berry);
  margin: 0 0 8px;
}

.interest-thanks p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.interest-error {
  text-align: center;
  color: var(--berry);
  font-weight: 700;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  text-align: center;
  padding: 34px 24px 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  background: linear-gradient(115deg, var(--gold) 0%, var(--coral) 35%, var(--purple) 70%, var(--berry-deep) 100%);
}

.site-footer-mark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 0 6px;
}

/* ============================================================
   SCROLL REVEAL
   (class added by js/app.js only when IntersectionObserver is
   supported, so content stays visible with no JS / no support)
   ============================================================ */

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.feature-grid > .reveal-item:nth-child(2) { transition-delay: 0.06s; }
.feature-grid > .reveal-item:nth-child(3) { transition-delay: 0.12s; }
.feature-grid > .reveal-item:nth-child(4) { transition-delay: 0.06s; }
.feature-grid > .reveal-item:nth-child(5) { transition-delay: 0.12s; }
.feature-grid > .reveal-item:nth-child(6) { transition-delay: 0.18s; }

.how-steps > .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.how-steps > .reveal-item:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 860px) {
  .hero-grid { justify-content: space-between; text-align: left; }
  .hero-inner { margin: 0; }
  .hero-chips { justify-content: flex-start; }
  .hero-visual { display: flex; }
}

@media (max-width: 760px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .example-row,
  .example-row-reverse {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 30px;
  }

  .example-text > p:not(.showcase-demo-note) {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .field-row {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    align-self: stretch;
    text-align: center;
  }

  .interest-panel {
    padding: 28px 22px;
  }

  .how-step {
    padding: 18px 18px;
  }
}
