:root{
  --bg: #f7fbf8;
  --surface: #ffffff;
  --surface-2: #eef8f3;
  --surface-3: #f3f6f4;
  --text: #0f1720;
  --muted: #5f6b66;
  --border: #d9e8df;

  --brand: #2fcd8e;
  --brand-deep: #1fa86d;
  --brand-soft: #dff8ec;

  --accent: #0fb7c9;
  --accent-soft: #dff9fc;

  --shadow: 0 16px 50px rgba(19, 52, 35, 0.08);
  --shadow-soft: 0 10px 28px rgba(19, 52, 35, 0.06);
  --shadow-premium: 0 24px 70px rgba(19, 52, 35, 0.10);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1220px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(47, 205, 142, 0.10), transparent 24%),
    radial-gradient(circle at top right, rgba(15, 183, 201, 0.10), transparent 24%),
    linear-gradient(180deg, #fbfefd 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
}

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

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

.page-bg{
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow{
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .9;
}

.glow-1{
  top: -110px;
  left: -110px;
  width: 340px;
  height: 340px;
  background: rgba(47,205,142,.18);
}

.glow-2{
  top: 40px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(15,183,201,.16);
}

.glow-3{
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: rgba(47,205,142,.12);
}

.logo-link{
  display: inline-flex;
  align-items: center;
}

.site-logo{
  height: 46px;
  width: auto;
  display: block;
}

.lp-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.lp-home-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 700;
  font-size: 0.96rem;
  white-space: nowrap;
}

.lp-home-link:hover{
  transform: translateY(-1px);
  border-color: rgba(47,205,142,0.4);
  box-shadow: var(--shadow);
}

@media (max-width: 720px){
  .site-logo{
    height: 40px;
  }

  .lp-header{
    margin-bottom: 10px;
  }

  .lp-home-link{
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }
}

.page-shell{
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.section-gap{
  margin-top: 28px;
}

h1,h2,h3{
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text);
}

h1{
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 10.5ch;
}

h2{
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: 14ch;
}

h3{
  font-size: clamp(1.18rem, 2vw, 1.65rem);
}

p{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text,
.cta-copy,
.section-heading p{
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  max-width: 62ch;
}

.highlight{
  color: var(--accent);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::after{
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: 0.08em;
  height: 0.34em;
  background: linear-gradient(90deg, rgba(15,183,201,.26), rgba(47,205,142,.22));
  border-radius: 999px;
  z-index: -1;
}

.eyebrow,
.section-kicker{
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.hero-card,
.templates-card,
.cta-card,
.faq-card,
.stats-card,
.feature-band,
.bonus-card{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.98));
  border: 1px solid rgba(217,232,223,0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card{
  padding: 24px;
}

.templates-card,
.cta-card,
.faq-card,
.stats-card,
.feature-band,
.bonus-card{
  padding: 34px;
}

.hero-card::before,
.templates-card::before,
.cta-card::before,
.stats-card::before,
.feature-band::before,
.bonus-card::before{
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(47,205,142,0.18), transparent 68%);
  pointer-events: none;
}

.hero-card::after,
.templates-card::after,
.cta-card::after,
.stats-card::after,
.feature-band::after,
.bonus-card::after{
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(15,183,201,0.14), transparent 65%);
  pointer-events: none;
}

.hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 38px;
  align-items: start;
}

.hero-copy{
  position: relative;
  z-index: 1;
  padding: 10px 8px 10px 10px;
}

.hero-subtext{
  max-width: 58ch;
}

.hero-proof{
  margin: 22px 0 18px;
}

.proof-label{
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.fake-app{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.fake-app .app-name{
  font-weight: 800;
  color: var(--text);
}

.fake-app .app-rank{
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 0;
}

.pill-row span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-side{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.hero-visual-card{
  position: relative;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(217,232,223,0.9);
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15,183,201,0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,251,247,0.92));
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.phone-stack{
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone{
  position: absolute;
  width: 180px;
  height: 340px;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(180deg, #182128, #0d1419);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 40px rgba(10, 26, 18, 0.18);
}

.phone::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 16px;
  border-radius: 0 0 12px 12px;
  background: #081014;
  z-index: 2;
}

.phone-screen{
  height: 100%;
  border-radius: 26px;
  padding: 22px 14px 14px;
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.14), transparent 32%),
    linear-gradient(180deg, #fbfefd, #eef8f3);
  overflow: hidden;
}

.phone-left{
  transform: translateX(-118px) rotate(-11deg) scale(.92);
  opacity: 0.78;
}

.phone-center{
  width: 210px;
  height: 390px;
  z-index: 3;
}

.phone-right{
  transform: translateX(118px) rotate(11deg) scale(.92);
  opacity: 0.78;
}

.mini-bar{
  width: 84px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  margin-bottom: 16px;
}

.mini-card{
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(217,232,223,0.95);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(19, 52, 35, 0.05);
}

.mini-card + .mini-card{
  margin-top: 12px;
}

.mini-card strong{
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 10px;
}

.line{
  height: 10px;
  border-radius: 999px;
  background: #d8e7de;
}

.line + .line{
  margin-top: 8px;
}

.line.brand{
  background: linear-gradient(90deg, rgba(47,205,142,.95), rgba(15,183,201,.8));
  width: 78%;
}

.line.mid{
  width: 58%;
}

.line.short{
  width: 42%;
}

.floating-proof{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.proof-tile{
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 0.98rem;
}

.proof-tile strong{
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 1rem;
}

.signup-card{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(247,252,249,0.98));
  border: 1px solid rgba(217,232,223,0.95);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.signup-card::before{
  content: "";
  position: absolute;
  inset: auto auto -30px -30px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(47,205,142,0.12), transparent 70%);
  pointer-events: none;
}

.signup-card > *{
  position: relative;
  z-index: 1;
}

.badge,
.template-badge{
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border: 1px solid rgba(47,205,142,0.16);
}

.signup-card h2{
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}

.signup-form,
.bottom-form{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

label{
  display: block;
}

label span{
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: .95rem;
}

input,
select{
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.94);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

input:focus,
select:focus{
  border-color: rgba(47,205,142,0.65);
  box-shadow: 0 0 0 4px rgba(47,205,142,0.12);
}

input::placeholder{
  color: #90a09a;
}

select{
  appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 18px 36px rgba(31, 168, 109, 0.25);
}

button:hover{
  transform: translateY(-2px);
}

.microcopy{
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.centered{
  text-align: center;
}

.honeypot-wrap{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cf-turnstile{
  margin-top: 2px;
}

.belief-strip{
  margin-top: 26px;
  padding: 26px 30px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(243,246,244,0.95));
  border: 1px solid rgba(217,232,223,0.95);
  box-shadow: var(--shadow-soft);
}

.belief-strip h2{
  max-width: 18ch;
  margin: 0 auto 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.belief-strip p{
  max-width: 58ch;
  margin: 0 auto;
}

.showcase-strip{
  margin-top: 28px;
  padding: 6px 0 2px;
}

.showcase-header{
  text-align: center;
  margin-bottom: 22px;
}

.showcase-header h2{
  max-width: 14ch;
  margin: 0 auto 10px;
}

.section-heading{
  max-width: 840px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.templates-card{
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15,183,201,0.10), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,252,249,0.96));
}

.comparison-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.comparison-card{
  border-radius: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,0.9);
}

.comparison-card h3{
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.comparison-card ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.comparison-card li{
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.comparison-old li::before,
.comparison-new li::before{
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.comparison-old li::before{
  content: "×";
  color: #b15a5a;
}

.comparison-new li::before{
  content: "✓";
  color: var(--brand-deep);
}

.cta-card{
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(15,183,201,0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4fbf7);
  text-align: center;
}

.cta-card h2{
  margin-inline: auto;
  max-width: 13ch;
}

.bottom-form{
  max-width: 620px;
  margin: 24px auto 0;
}

.urgency{
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.faq-card h2{
  margin-bottom: 20px;
}

.faq-list{
  display: grid;
  gap: 16px;
}

.faq-item{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

details.faq-item{
  padding: 0 20px;
}

details.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 34px 22px 0;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--text);
  position: relative;
}

details.faq-item summary::-webkit-details-marker{
  display: none;
}

details.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brand-deep);
  transition: transform .18s ease;
}

details.faq-item[open] summary::after{
  transform: rotate(45deg);
}

details.faq-item p{
  padding-bottom: 20px;
  margin-bottom: 0;
}

/* ===== PAGE-SPECIFIC ADDITIONS ===== */

.preview-hero h1{
  max-width: 9ch;
}

.portfolio-subtitle{
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 42ch;
  margin: 0 auto;
}

.centered-heading{
  text-align: center;
  margin-inline: auto;
}

.centered-heading h2,
.centered-heading p{
  margin-inline: auto;
}

.stats-card{
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15,183,201,0.10), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,252,249,0.96));
}

.feature-band{
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15,183,201,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,252,249,0.96));
}

.bonus-card{
  background:
    radial-gradient(circle at top left, rgba(15,183,201,0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(47,205,142,0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,252,249,0.96));
}

.metric-stack{
  display: grid;
  gap: 18px;
}

.metric-card{
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.metric-label{
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--text);
}

.star-row{
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.star{
  font-size: 1.25rem;
  color: #bfd3c8;
  line-height: 1;
}

.star.filled{
  color: var(--brand-deep);
}

.star.half{
  color: #7bc7ab;
}

.metric-value{
  margin-left: 8px;
  font-weight: 800;
  color: var(--text);
}

.money-range{
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text);
}

.future-apps-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.future-app-card{
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fcf9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.featured-app-card{
  background:
    radial-gradient(circle at top left, rgba(15,183,201,0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(47,205,142,0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4fbf7);
  border-color: rgba(47,205,142,0.32);
  box-shadow: var(--shadow);
}

.future-app-top{
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.future-app-head{
  min-width: 0;
}

.future-app-head h3{
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.future-app-head p{
  margin-bottom: 0;
  font-size: 0.98rem;
}

.future-app-icon{
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 18px 36px rgba(19, 52, 35, 0.16);
}

.flappy-icon{
  background: linear-gradient(135deg, #f5b545 0%, #f07a3f 100%);
}

.block-icon{
  background: linear-gradient(135deg, #7a6dff 0%, #38c6ff 100%);
}

.snake-icon{
  background: linear-gradient(135deg, #22b573 0%, #0fb7c9 100%);
}

.runner-icon{
  background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
}

.feature-band-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.logo-box{
  min-height: 220px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(47,205,142,0.12), transparent 35%),
    linear-gradient(180deg, #ffffff, #f6fbf8);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  padding: 24px;
}

.large-logo-chip,
.logo-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.large-logo-chip{
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  min-width: 220px;
  background: linear-gradient(180deg, #ffffff, #f6fbf8);
}

.logo-pair{
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 280px;
}

.store-logo-box .logo-chip{
  min-height: 70px;
  font-size: 1.05rem;
}

.feature-copy{
  position: relative;
  z-index: 1;
}

.feature-copy h2{
  max-width: 11ch;
}

.bonus-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
}

.bonus-badge-wrap{
  display: flex;
  justify-content: center;
}

.bonus-badge{
  width: 150px;
  height: 150px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  color: white;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 22px 44px rgba(15, 183, 201, 0.22);
}

.bonus-copy h2{
  max-width: none;
}

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

  .hero-side{
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .future-apps-grid,
  .feature-band-grid,
  .bonus-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px){
  .phone-stack{
    min-height: 320px;
  }

  .phone-left,
  .phone-right{
    display: none;
  }

  .phone-center{
    position: relative;
    transform: none;
    width: min(100%, 220px);
    height: 390px;
  }

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

  .floating-proof{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px){
  .page-shell{
    width: min(var(--max), calc(100% - 24px));
    padding: 18px 0 56px;
  }

  .hero-card{
    padding: 16px;
    border-radius: 24px;
  }

  .templates-card,
  .cta-card,
  .faq-card,
  .stats-card,
  .feature-band,
  .bonus-card{
    padding: 20px;
    border-radius: 24px;
  }

  .signup-card{
    border-radius: 22px;
    padding: 18px;
  }

  .hero-visual-card{
    padding: 18px;
    border-radius: 22px;
  }

  h1{
    font-size: clamp(2.5rem, 12vw, 4.2rem);
    max-width: 100%;
  }

  h2{
    font-size: clamp(1.9rem, 9vw, 3rem);
    max-width: 100%;
  }

  .pill-row{
    gap: 10px;
  }

  .pill-row span{
    width: 100%;
    justify-content: center;
  }

  .future-app-card{
    padding: 20px;
    border-radius: 24px;
  }

  .future-app-top{
    align-items: flex-start;
  }

  .future-app-icon{
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 1.2rem;
  }

  .metric-card{
    padding: 18px;
    border-radius: 18px;
  }

  .logo-box{
    min-height: 180px;
    border-radius: 22px;
  }

  .large-logo-chip{
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .store-logo-box .logo-pair{
    max-width: none;
  }

  .bonus-badge{
    width: 124px;
    height: 124px;
    font-size: 1.7rem;
  }

  .reverse-on-mobile > :first-child{
    order: 2;
  }

  .reverse-on-mobile > :last-child{
    order: 1;
  }

  button{
    width: 100%;
  }

  details.faq-item{
    padding: 0 16px;
  }

  details.faq-item summary{
    padding-right: 28px;
  }
}