@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");
:root {
  /* Fonts */
  --font-heading: "Baloo 2", "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Brand greens */
  --green-50: #f3fff7;
  --green-100: #def5df;
  --green-200: #c9f7e4;
  --green-500: #2fb15d;
  --green-600: #1a8442;
  --primary: var(--green-500);
  --primary-deep: var(--green-600);
  --primary-soft: #dff8e6;

  /* Accent colors */
  --amber-100: #fff6df;
  --amber-400: #f4c87d;
  --amber: var(--amber-400);
  --violet-100: #f0edff;
  --violet-500: #8578f7;
  --violet: var(--violet-500);

  /* Backgrounds */
  --page-bg: #f5f7f2;
  --cream-bg: #fbfaf4;
  --card-bg: rgba(255, 255, 255, 0.9);

  /* Text */
  --ink: #13261d;
  --text-muted: #64756b;
  --text-soft: #8a9a90;
  --muted: var(--text-muted);

  /* Borders */
  --border: #d9e4d5;
  --border-green: rgba(40, 114, 68, 0.18);
  --line: var(--border);

  /* Shadows */
  --shadow-lg: 0 18px 44px rgba(22, 38, 28, 0.06);
  --shadow-md: 0 12px 28px rgba(22, 38, 28, 0.05);

  /* Radius */
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1440px;
  --section-gap: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(47, 177, 93, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(133, 120, 247, 0.06), transparent 22%),
    linear-gradient(180deg, #fdfcf8 0%, #f4f6f1 100%);
}

h1,
h2,
h3,
.brand {
  font-family: var(--font-heading);
}
.btn.primary {
  background: linear-gradient(90deg, var(--green-500), #8eb54b);
}

p {
  color: var(--text-muted);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p,
li,
a,
span,
strong,
b,
label {
  overflow-wrap: break-word;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 252, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 228, 213, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 170px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #5e7066;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
  transition: color 0.18s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.header-link {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(217, 228, 213, 0.95);
  background: linear-gradient(180deg, #fffdf8, #f8f7f0);
  color: #2a553d;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(22, 38, 28, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.header-link:hover,
.btn:hover,
.signal-card:hover,
.info-card:hover,
.flow-step:hover,
.audience-row:hover,
.sample-project:hover,
.sample-result:hover,
.compare-card:hover,
.feedback-card:hover,
.trust-card:hover {
  transform: translateY(-2px);
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 18px 40px;
}

.section {
  margin-bottom: 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: center;
  padding: 34px 28px 28px;
  border: 1px solid rgba(217, 228, 213, 0.82);
  border-radius: 40px;
  background:
    radial-gradient(circle at 16% 22%, rgba(47, 177, 93, 0.10), transparent 24%),
    radial-gradient(circle at 86% 26%, rgba(133, 120, 247, 0.09), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 243, 0.74));
  box-shadow: 0 30px 70px rgba(22, 38, 28, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero + .problem-section {
  margin-top: 30px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 28%, rgba(47, 177, 93, 0.08), transparent 18%),
    radial-gradient(circle at 72% 30%, rgba(133, 120, 247, 0.08), transparent 18%),
    radial-gradient(circle at 84% 66%, rgba(244, 200, 125, 0.08), transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #edf9ed;
  border: 1px solid rgba(47, 177, 93, 0.14);
  color: #12432a;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(22, 38, 28, 0.04);
}

.eyebrow.small {
  margin-bottom: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #5e7066;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-deep);
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 14ch;
  font-size: clamp(56px, 5.4vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #16281f;
}

h1 span {
  color: var(--primary);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.lead {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--green-500), #8eb54b);
  box-shadow: 0 16px 30px rgba(47, 177, 93, 0.24);
  min-width: 238px;
}

.btn.ghost {
  color: #20503a;
  background: rgba(255, 255, 255, 0.84);
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  max-width: 700px;
}

.hero-pills span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid rgba(217, 228, 213, 0.95);
  box-shadow: none;
  color: #4f6259;
  font-size: 14px;
  font-weight: 700;
}

.hero-pills i {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf9ed;
  color: var(--primary-deep);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  z-index: 1;
}

.hero-art-orb,
.hero-art-dots,
.hero-art-ring,
.hero-art-rail {
  position: absolute;
  pointer-events: none;
}

.hero-art-orb-a {
  right: 10px;
  top: 22px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 240, 214, 0.72), rgba(209, 240, 214, 0.03) 68%, transparent 69%);
}

.hero-art-orb-b {
  right: 96px;
  top: 174px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133, 120, 247, 0.15), rgba(133, 120, 247, 0.03) 70%, transparent 71%);
}

.hero-art-dots {
  left: 56px;
  top: 80px;
  width: 120px;
  height: 130px;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(47, 177, 93, 0.14) 3px, transparent 3.6px);
  background-size: 16px 16px;
}

.hero-art-ring {
  right: 82px;
  bottom: 112px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 2px solid rgba(47, 177, 93, 0.14);
  box-shadow: 0 0 0 16px rgba(209, 240, 214, 0.16);
}

.hero-art-rail {
  left: 12px;
  right: 40px;
  bottom: 18px;
  height: 112px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(209, 240, 214, 0.24), rgba(209, 240, 214, 0.55), rgba(250, 243, 223, 0.38));
  opacity: 0.45;
  filter: blur(4px);
}

.hero-scene {
  position: relative;
  width: min(100%, 680px);
  min-height: 520px;
  z-index: 2;
}

.hero-phone {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 270px;
  height: 372px;
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(180deg, #2ec45d, #15984c);
  box-shadow: 0 30px 42px rgba(22, 137, 75, 0.22);
  transform: translate(-50%, -50%) rotate(5deg);
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fefefe, #f9fbf4);
}

.hero-phone-notch {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 88px;
  height: 18px;
  border-radius: 999px;
  background: rgba(17, 37, 28, 0.08);
  transform: translateX(-50%);
  z-index: 2;
}

.hero-phone-screen {
  position: absolute;
  inset: 28px 22px 22px;
  border-radius: 28px;
  z-index: 2;
}

.hero-chart {
  position: relative;
  height: 106px;
  margin: 16px 4px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(242, 240, 255, 0.92), rgba(236, 233, 255, 0.55));
  border: 1px solid rgba(133, 120, 247, 0.12);
  overflow: hidden;
}

.hero-chart::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 2px;
  background: rgba(133, 120, 247, 0.14);
}

.hero-chart::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  top: 18px;
  background:
    linear-gradient(180deg, rgba(133, 120, 247, 0.08), transparent 70%),
    radial-gradient(circle at 18% 80%, rgba(133, 120, 247, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 46% 54%, rgba(133, 120, 247, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 68%, rgba(133, 120, 247, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 96% 26%, rgba(133, 120, 247, 0.95) 0 4px, transparent 5px);
  clip-path: path("M 0 74 C 20 68, 24 50, 42 48 C 58 46, 68 62, 82 56 C 96 50, 106 22, 128 22 C 146 22, 154 32, 170 26 L 170 106 L 0 106 Z");
}

.hero-chart span {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 22px;
  height: 64px;
  border-radius: 18px;
  border: 3px solid transparent;
  border-top-color: var(--violet);
  border-right-color: var(--violet);
  opacity: 0.7;
  transform: skewX(-10deg);
}

.hero-mini-card {
  position: absolute;
  left: 8px;
  right: 8px;
  min-height: 82px;
  padding: 12px 14px 12px 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 228, 213, 0.96);
  box-shadow: 0 16px 24px rgba(22, 38, 28, 0.08);
}

.hero-mini-card.green {
  top: 118px;
}

.hero-mini-card.violet {
  top: 214px;
}

.hero-mini-card strong {
  display: block;
  color: #62756b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-mini-card b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-mini-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.hero-mini-card.green .hero-mini-icon {
  background: linear-gradient(180deg, #57d175, #2ea75a);
}

.hero-mini-card.violet .hero-mini-icon {
  background: linear-gradient(180deg, #8a7dff, #7567f0);
}

.hero-calculator {
  position: absolute;
  left: 18px;
  bottom: 34px;
  width: 86px;
  height: 118px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #31c35f, #179548);
  box-shadow: 0 18px 30px rgba(21, 154, 104, 0.24);
  transform: rotate(-10deg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  z-index: 1;
}

.hero-calculator span {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-pie {
  position: absolute;
  right: 24px;
  top: 180px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: conic-gradient(#7b6cf5 0 23%, #91da8b 23% 55%, #5bd68b 55% 100%);
  box-shadow: 0 18px 34px rgba(22, 38, 28, 0.06);
  filter: saturate(0.98);
  z-index: 0;
}

.hero-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 184px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 228, 213, 0.95);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.hero-chip strong {
  display: block;
  color: #6a7a72;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-chip b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.chip-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.chip-dot-green {
  background: var(--primary);
}

.chip-dot-violet {
  background: var(--violet);
}

.chip-dot-amber {
  background: var(--amber);
}

.hero-chip-cost {
  left: 54%;
  top: 22%;
  transform: translateX(-8%);
}

.hero-chip-time {
  right: 28%;
  bottom: 24%;
}

.hero-chip-level {
  left: 20%;
  bottom: 10%;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 14px 0 64px;
}

.signal-card {
  min-height: 132px;
  padding: 24px 24px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 228, 213, 0.9);
  box-shadow: var(--shadow-lg);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.signal-card span {
  display: block;
  margin-bottom: 12px;
  color: #61746a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  color: #153427;
  font-size: 20px;
  line-height: 1.18;
}

.section.centered {
  text-align: center;
}

.section-head {
  max-width: 1080px;
  margin: 0 auto 22px;
}

.section-head.narrow {
  max-width: 960px;
}

.section-head p {
  margin-bottom: 0;
  font-size: 17px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
  gap: 30px;
  align-items: center;
}

.split-copy {
  text-align: left;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 24px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.problem-copy {
  display: grid;
  gap: 18px;
}

.problem-summary {
  padding: 26px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 177, 93, 0.06), transparent 22%),
    radial-gradient(circle at 86% 22%, rgba(133, 120, 247, 0.05), transparent 20%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 228, 213, 0.94);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.problem-summary-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #5f7268;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-summary h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.problem-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.problem-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-auto-rows: 1fr;
}

.problem-pills span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 228, 213, 0.95);
  color: #27503b;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 38, 28, 0.04);
  text-align: left;
  line-height: 1.25;
}

.problem-visual {
  display: flex;
  justify-content: center;
  align-self: stretch;
}

.problem-section {
  padding-top: 10px;
}

.why-rail {
  width: min(100%, 720px);
  padding: 28px;
  display: grid;
  gap: 18px;
  min-height: auto;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 177, 93, 0.12), transparent 20%),
    radial-gradient(circle at 86% 20%, rgba(244, 200, 125, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 244, 0.92));
  border: 1px solid rgba(217, 228, 213, 0.96);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.why-rail::before {
  content: none;
}

.why-flow-head {
  display: grid;
  gap: 8px;
  text-align: left;
}

.why-flow-kicker {
  color: #5f7268;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-flow-head strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.05em;
  max-width: 18ch;
}

.why-flow-path {
  display: grid;
  grid-template-columns: auto minmax(48px, 1fr) auto minmax(48px, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 228, 213, 0.88);
  box-shadow: 0 10px 22px rgba(22, 38, 28, 0.04);
}

.why-flow-step {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: #194232;
}

.why-flow-step.start {
  background: #d7f2dc;
}

.why-flow-step.mid {
  background: #f7efcf;
  color: #705f28;
}

.why-flow-step.end {
  background: #fde1b6;
  color: #7a5a28;
}

.why-flow-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 146, 131, 0.12), rgba(143, 176, 75, 0.85), rgba(120, 146, 131, 0.12));
}

.why-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.why-flow-card {
  min-height: 170px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 228, 213, 0.92);
  box-shadow: 0 12px 24px rgba(22, 38, 28, 0.05);
  text-align: left;
}

.why-flow-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.why-flow-icon.start {
  color: #1f6f47;
  background: #d7f2dc;
}

.why-flow-icon.mid {
  color: #7a6426;
  background: #f7efcf;
}

.why-flow-icon.end {
  color: #8a5f27;
  background: #fde1b6;
}

.why-flow-card h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.why-flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.showcase-section {
  position: relative;
  padding-top: 10px;
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0 20px auto;
  height: 420px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 18% 20%, rgba(47, 177, 93, 0.10), transparent 20%),
    radial-gradient(circle at 82% 16%, rgba(133, 120, 247, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(247, 252, 245, 0.96), rgba(248, 250, 246, 0.86));
  border: 1px solid rgba(217, 228, 213, 0.85);
  box-shadow: 0 26px 70px rgba(22, 38, 28, 0.06);
  pointer-events: none;
}

.showcase-section > * {
  position: relative;
  z-index: 1;
}

.showcase-shell {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 228, 213, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.showcase-illustration {
  position: absolute;
  right: 22px;
  bottom: -6px;
  width: min(34%, 310px);
  pointer-events: none;
  filter: drop-shadow(0 24px 30px rgba(22, 38, 28, 0.12));
}

.showcase-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-shell-minimal {
  padding: 22px;
}

.showcase-device-minimal {
  display: flex;
  justify-content: center;
  padding: 0;
  background: none;
}

.showcase-device-screen-full {
  padding: 0;
}

.showcase-device-screen-full img {
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(22, 38, 28, 0.10);
}

.why-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.why-points span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 228, 213, 0.95);
  color: #264e39;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 38, 28, 0.04);
}

.why-visual {
  display: flex;
  justify-content: center;
}

.why-rail {
  width: min(100%, 720px);
  padding: 28px;
  display: grid;
  gap: 18px;
  min-height: auto;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 177, 93, 0.12), transparent 20%),
    radial-gradient(circle at 86% 20%, rgba(244, 200, 125, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 244, 0.92));
  border: 1px solid rgba(217, 228, 213, 0.96);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.why-rail::before {
  content: none;
}

.why-meter {
  display: grid;
  gap: 12px;
}

.why-meter i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #9bb64f);
  transform-origin: left center;
  animation: meter-grow 2.8s ease-in-out infinite;
}

.why-meter i.scope {
  width: 100%;
}

.why-meter i.cost {
  width: 74%;
  animation-delay: 0.25s;
}

.why-meter i.time {
  width: 42%;
  animation-delay: 0.5s;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.why-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #f8faf2;
  border: 1px solid rgba(217, 228, 213, 0.92);
  color: #5c6f65;
  font-size: 13px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.learn-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
}

.info-card,
.step-card,
.compare-card,
.feedback-card,
.sample-project,
.sample-result,
.audience-row {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 228, 213, 0.92);
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.info-card,
.step-card,
.compare-card,
.feedback-card,
.sample-project,
.sample-result {
  border-radius: 24px;
  padding: 24px 22px;
  text-align: left;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #185f35;
  font-size: 18px;
  font-weight: 800;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.light-green {
  background: #d8f4dc;
  color: #1f7d47;
}

.light-orange {
  background: #fde9c9;
  color: #94631e;
}

.light-amber {
  background: #fde9c9;
  color: #94631e;
}

.light-mint {
  background: #d7f7ef;
  color: #177b68;
}

.light-violet {
  background: #e6ddff;
  color: #6950d1;
}

.step-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  padding-top: 28px;
}

.step-flow-track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 217, 193, 0.16), rgba(47, 177, 93, 0.88), rgba(143, 176, 75, 0.92), rgba(185, 217, 193, 0.16));
  background-size: 220% 100%;
  animation: flow-track 4.8s linear infinite;
  opacity: 0.92;
}

.step-flow-track::before,
.step-flow-track::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fb04b;
  box-shadow: 0 0 0 10px rgba(143, 176, 75, 0.08);
  transform: translateY(-50%);
  animation: flow-pulse 2.8s ease-in-out infinite;
}

.step-flow-track::before {
  left: 2%;
}

.step-flow-track::after {
  right: 2%;
}

.flow-step {
  position: relative;
  z-index: 1;
  padding: 20px 20px 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 246, 0.96));
  border: 1px solid rgba(217, 228, 213, 0.95);
  box-shadow: 0 20px 44px rgba(22, 38, 28, 0.08);
  text-align: left;
  overflow: hidden;
}

.flow-step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(47, 177, 93, 0.95), rgba(143, 176, 75, 0.9));
  opacity: 0.85;
}

.flow-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(209, 240, 214, 0.96);
  border: 1px solid rgba(143, 176, 75, 0.2);
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(47, 177, 93, 0.08);
}

.flow-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: #6f8d75;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-step p {
  max-width: 28ch;
  margin-bottom: 0;
}

.pain-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  gap: 24px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.pain-copy {
  text-align: left;
}

.pain-summary {
  padding: 26px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 177, 93, 0.06), transparent 22%),
    radial-gradient(circle at 86% 22%, rgba(133, 120, 247, 0.05), transparent 20%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 228, 213, 0.94);
  box-shadow: var(--shadow-lg);
}

.pain-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #5f7268;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pain-summary h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
}

.pain-summary p {
  margin-bottom: 0;
  font-size: 16px;
}

.pain-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pain-pill-row span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 228, 213, 0.95);
  color: #27503b;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 38, 28, 0.04);
}

.pain-visual {
  display: flex;
  justify-content: center;
}

.pain-rail {
  position: relative;
  width: min(100%, 680px);
  min-height: 380px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 177, 93, 0.08), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(133, 120, 247, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 244, 0.9));
  border: 1px solid rgba(217, 228, 213, 0.95);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pain-orb {
  position: absolute;
  border-radius: 50%;
}

.pain-orb-a {
  width: 98px;
  height: 98px;
  right: 34px;
  top: 34px;
  background: radial-gradient(circle, rgba(209, 240, 214, 0.85), rgba(209, 240, 214, 0.04) 72%, transparent 73%);
}

.pain-orb-b {
  width: 128px;
  height: 128px;
  left: -26px;
  bottom: -22px;
  background: radial-gradient(circle, rgba(244, 200, 125, 0.16), rgba(244, 200, 125, 0.02) 72%, transparent 74%);
}

.pain-node,
.pain-panel {
  position: absolute;
  z-index: 2;
}

.pain-node {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 228, 213, 0.95);
  color: #194232;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(22, 38, 28, 0.08);
}

.pain-node.start {
  left: 50px;
  top: 56px;
  background: #d9f5de;
}

.pain-node.mid {
  left: 250px;
  top: 56px;
  background: #f6efcf;
  color: #705f28;
}

.pain-node.end {
  right: 56px;
  top: 56px;
  background: #fde1b6;
  color: #7a5a28;
}

.pain-line {
  position: absolute;
  top: 82px;
  height: 2px;
  background: linear-gradient(90deg, rgba(120, 146, 131, 0.08), rgba(143, 176, 75, 0.72), rgba(120, 146, 131, 0.08));
}

.pain-line.one {
  left: 146px;
  right: 388px;
}

.pain-line.two {
  left: 362px;
  right: 160px;
}

.pain-panel {
  left: 42px;
  right: 42px;
  bottom: 42px;
  padding: 20px 22px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 228, 213, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(22, 38, 28, 0.08);
}

.pain-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.pain-panel-head span {
  color: #61746a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pain-panel-head strong {
  color: #143124;
  font-size: 18px;
}

.pain-bars {
  display: grid;
  gap: 12px;
}

.pain-bar {
  display: grid;
  gap: 8px;
}

.pain-bar label {
  color: #5d7065;
  font-size: 13px;
  font-weight: 700;
}

.pain-bar i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #9bb64f);
  transform-origin: left center;
  animation: meter-grow 2.8s ease-in-out infinite;
}

.pain-bar:nth-child(1) i {
  width: 100%;
}

.pain-bar:nth-child(2) i {
  width: 74%;
  animation-delay: 0.25s;
}

.pain-bar:nth-child(3) i {
  width: 46%;
  animation-delay: 0.5s;
}

.pain-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  gap: 24px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.pain-copy {
  text-align: left;
}

.pain-summary {
  padding: 26px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 177, 93, 0.06), transparent 22%),
    radial-gradient(circle at 86% 22%, rgba(133, 120, 247, 0.05), transparent 20%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 228, 213, 0.94);
  box-shadow: var(--shadow-lg);
}

.pain-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #5f7268;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pain-summary h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
}

.pain-summary p {
  margin-bottom: 0;
  font-size: 16px;
}

.pain-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pain-pill-row span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 228, 213, 0.95);
  color: #27503b;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 38, 28, 0.04);
}

.pain-visual {
  display: flex;
  justify-content: center;
}

.pain-rail {
  position: relative;
  width: min(100%, 680px);
  min-height: 380px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 177, 93, 0.08), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(133, 120, 247, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 244, 0.9));
  border: 1px solid rgba(217, 228, 213, 0.95);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pain-orb {
  position: absolute;
  border-radius: 50%;
}

.pain-orb-a {
  width: 98px;
  height: 98px;
  right: 34px;
  top: 34px;
  background: radial-gradient(circle, rgba(209, 240, 214, 0.85), rgba(209, 240, 214, 0.04) 72%, transparent 73%);
}

.pain-orb-b {
  width: 128px;
  height: 128px;
  left: -26px;
  bottom: -22px;
  background: radial-gradient(circle, rgba(244, 200, 125, 0.16), rgba(244, 200, 125, 0.02) 72%, transparent 74%);
}

.pain-node,
.pain-panel {
  position: absolute;
  z-index: 2;
}

.pain-node {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 228, 213, 0.95);
  color: #194232;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(22, 38, 28, 0.08);
}

.pain-node.start {
  left: 50px;
  top: 56px;
  background: #d9f5de;
}

.pain-node.mid {
  left: 250px;
  top: 56px;
  background: #f6efcf;
  color: #705f28;
}

.pain-node.end {
  right: 56px;
  top: 56px;
  background: #fde1b6;
  color: #7a5a28;
}

.pain-line {
  position: absolute;
  top: 82px;
  height: 2px;
  background: linear-gradient(90deg, rgba(120, 146, 131, 0.08), rgba(143, 176, 75, 0.72), rgba(120, 146, 131, 0.08));
}

.pain-line.one {
  left: 146px;
  right: 388px;
}

.pain-line.two {
  left: 362px;
  right: 160px;
}

.pain-panel {
  left: 42px;
  right: 42px;
  bottom: 42px;
  padding: 20px 22px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 228, 213, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(22, 38, 28, 0.08);
}

.pain-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.pain-panel-head span {
  color: #61746a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pain-panel-head strong {
  color: #143124;
  font-size: 18px;
}

.pain-bars {
  display: grid;
  gap: 12px;
}

.pain-bar {
  display: grid;
  gap: 8px;
}

.pain-bar label {
  color: #5d7065;
  font-size: 13px;
  font-weight: 700;
}

.pain-bar i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #9bb64f);
  transform-origin: left center;
  animation: meter-grow 2.8s ease-in-out infinite;
}

.pain-bar:nth-child(1) i {
  width: 100%;
}

.pain-bar:nth-child(2) i {
  width: 74%;
  animation-delay: 0.25s;
}

.pain-bar:nth-child(3) i {
  width: 46%;
  animation-delay: 0.5s;
}

.audience-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.audience-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.audience-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  padding: 8px 0 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.audience-rail::-webkit-scrollbar {
  display: none;
}

.audience-nav {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 228, 213, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(22, 38, 28, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.audience-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 18px 34px rgba(22, 38, 28, 0.11);
}

.audience-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.audience-card {
  scroll-snap-align: start;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 246, 0.96));
  border: 1px solid rgba(217, 228, 213, 0.94);
  box-shadow: 0 20px 42px rgba(22, 38, 28, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(22, 38, 28, 0.12);
}

.audience-photo {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(214, 246, 219, 0.95), rgba(245, 250, 242, 0.92));
}

.audience-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(0.98);
}

.audience-photo::before,
.audience-photo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.audience-photo::before {
  left: -18px;
  bottom: -24px;
  width: 148px;
  height: 148px;
  background: linear-gradient(180deg, rgba(47, 177, 93, 0.14), rgba(47, 177, 93, 0.02));
}

.audience-photo::after {
  right: 18px;
  top: 20px;
  width: 84px;
  height: 84px;
  background: linear-gradient(180deg, rgba(133, 120, 247, 0.10), rgba(133, 120, 247, 0.02));
}

.audience-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 228, 213, 0.96);
  color: #28503b;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(22, 38, 28, 0.05);
}

.audience-card-founders .audience-photo {
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(135deg, rgba(216, 248, 225, 0.98), rgba(248, 252, 246, 0.94));
}

.audience-card-founders .audience-photo img {
  object-position: center 28%;
}

.audience-card-business .audience-photo {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.26), transparent 18%),
    linear-gradient(135deg, rgba(255, 236, 197, 0.98), rgba(251, 250, 244, 0.94));
}

.audience-card-business .audience-photo img {
  object-position: center 40%;
}

.audience-card-creators .audience-photo {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(236, 229, 255, 0.98), rgba(250, 250, 246, 0.94));
}

.audience-card-creators .audience-photo img {
  object-position: center 32%;
}

.audience-card-teams .audience-photo {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, rgba(219, 246, 232, 0.98), rgba(247, 251, 244, 0.94));
}

.audience-card-teams .audience-photo img {
  object-position: center 36%;
}

.audience-card-agency .audience-photo {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, rgba(253, 236, 205, 0.98), rgba(250, 250, 246, 0.94));
}

.audience-card-agency .audience-photo img {
  object-position: center 34%;
}

.audience-body {
  padding: 20px 20px 22px;
}

.audience-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 800;
}

.audience-body h3 {
  margin-bottom: 10px;
}

.audience-body p {
  margin-bottom: 0;
}

.audience-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
}

.audience-row .icon {
  margin-bottom: 0;
}

.audience-row h3 {
  margin-bottom: 8px;
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.sample-project,
.sample-result {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sample-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: #4a6357;
}

.sample-list li strong {
  color: var(--ink);
}

.sample-result-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
}

.sample-result-head span {
  color: #61756a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-result-head strong {
  color: #24543c;
  font-size: 18px;
}

.sample-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sample-metrics div {
  min-height: 96px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #f7faf4;
  border: 1px solid rgba(217, 228, 213, 0.9);
}

.sample-metrics label {
  display: block;
  color: #61756a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sample-metrics b {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sample-cost {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, rgba(223, 245, 222, 0.92), rgba(250, 246, 221, 0.9));
}

.sample-note {
  margin-top: 2px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff7e6;
  border: 1px solid rgba(255, 222, 179, 0.95);
  color: #7a5a2b;
  font-size: 14px;
}

.sample-next h4 {
  margin: 0 0 12px;
  font-size: 16px;
}

.sample-next ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #4a6357;
}

.sample-disclaimer {
  margin-bottom: 0;
  font-size: 13px;
  color: #64766c;
}

.compare-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-label {
  display: inline-flex;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: #edf9ed;
  color: #24543c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.compare-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-columns strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #214131;
}

.compare-columns ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #51645c;
}

.feedback-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.feedback-card {
  padding: 26px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.feedback-card h3 {
  margin: 0;
}

.feedback-card > p {
  margin: 0;
  color: #5b6f66;
  line-height: 1.6;
}

.feedback-card-kicker {
  color: #718379;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feedback-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #51645c;
}

.feedback-pills,
.feature-interest,
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feedback-pills {
  margin-top: 0;
  max-width: 540px;
}

.feedback-pills span,
.trust-points span,
.feature-interest span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 228, 213, 0.95);
  color: #27483a;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 38, 28, 0.03);
}

.feedback-link {
  margin-top: 2px;
  min-width: 220px;
  justify-self: start;
}

.feedback-card-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 2px;
  justify-self: start;
}

.feature-interest {
  max-width: 1120px;
  margin: 0 auto 24px;
  justify-content: center;
}

.feature-interest-cta {
  display: flex;
  justify-content: center;
}

.cta-band {
  margin-top: 8px;
  padding: 38px 24px 34px;
  background: linear-gradient(90deg, #e8f9e8 0%, #f8f6df 50%, #fff0d7 100%);
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 12px;
}

.trust-points {
  justify-content: center;
  margin: 18px auto 0;
  max-width: 1080px;
}

.hero-note {
  margin: 16px 0 0;
  font-size: 15px;
  color: #50655a;
}

.center-note {
  text-align: center;
}

.sample-showcase {
  position: relative;
}

.results-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.results-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.results-back,
.results-reset {
  min-width: 58px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(217, 228, 213, 0.95);
  background: rgba(255, 255, 255, 0.95);
  color: #73827a;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(22, 38, 28, 0.04);
}

.results-back:disabled {
  opacity: 0.9;
}

.results-progress {
  flex: 1;
  min-width: 0;
}

.results-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.results-progress-head span {
  color: #23362b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.results-progress-head strong {
  color: #73827a;
  font-size: 14px;
  font-weight: 800;
}

.results-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: #e6efe2;
  overflow: hidden;
}

.results-progress-bar i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #9bb64f);
}

.results-intro {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.results-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.results-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.results-summary-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 18px;
  background: rgba(241, 250, 242, 0.96);
  border: 1px solid rgba(176, 225, 188, 0.95);
  box-shadow: 0 12px 24px rgba(22, 38, 28, 0.04);
}

.results-dot {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(47, 177, 93, 0.12);
}

.results-summary-note p {
  margin: 0;
  color: #41584a;
  font-size: 14px;
  line-height: 1.5;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}

.result-photo-image-only {
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.result-photo-image-only img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 18px 34px rgba(22, 38, 28, 0.08);
}

.results-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.results-summary-card,
.results-actions-card {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(217, 228, 213, 0.95);
  box-shadow: 0 16px 32px rgba(22, 38, 28, 0.06);
}

.results-summary-title {
  margin: 0 0 10px;
  color: #7b8c81;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-summary-list {
  margin: 0;
  display: grid;
  gap: 8px;
}

.results-summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(217, 228, 213, 0.72);
}

.results-summary-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.results-summary-list dt {
  color: #76887e;
  font-size: 13px;
}

.results-summary-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.results-actions-card {
  display: grid;
  gap: 10px;
}

.results-action {
  width: 100%;
  justify-content: center;
}

.trust-section {
  position: relative;
  margin-top: 8px;
  padding: 42px 22px 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 8%, rgba(34, 197, 94, 0.18), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(251, 191, 36, 0.18), transparent 28%),
    linear-gradient(90deg, #f0fdf4 0%, #fffef7 55%, #fffbeb 100%);
  text-align: center;
  border: 1.5px solid rgba(34, 197, 94, 0.14);
  box-shadow: 0 30px 72px rgba(22, 35, 22, 0.11);
  overflow: hidden;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 24px;
}

.trust-card {
  padding: 24px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card.good .trust-icon { background: var(--primary); }
.trust-card.caution .trust-icon { background: var(--amber); }
.trust-card.neutral .trust-icon { background: var(--violet); }

.trust-card p {
  margin-bottom: 0;
}

.trust-actions {
  margin-top: 6px;
}

@keyframes flow-track {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@keyframes flow-pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(0.92);
    box-shadow: 0 0 0 10px rgba(143, 176, 75, 0.08);
  }

  50% {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 0 16px rgba(143, 176, 75, 0.04);
  }
}

@keyframes meter-grow {
  0%,
  100% {
    transform: scaleX(0.96);
    filter: saturate(1);
  }

  50% {
    transform: scaleX(1);
    filter: saturate(1.08);
  }
}

.js-enabled .section,
.js-enabled .signal-strip {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .section.is-visible,
.js-enabled .signal-strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  max-width: 1440px;
  margin: 0 auto 18px;
  padding: 0 22px 22px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto auto;
  gap: 18px 28px;
  align-items: center;
  padding: 24px 26px 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 177, 93, 0.08), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(244, 200, 125, 0.10), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 244, 0.94));
  border: 1px solid rgba(217, 228, 213, 0.94);
  box-shadow: var(--shadow-lg);
}

.footer-brand {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-logo {
  width: 132px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: #5d6f66;
  font-size: 14px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-links a {
  color: #27483a;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer-links a:hover {
  color: var(--primary-deep);
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
}

.footer-start {
  min-width: 190px;
  justify-content: center;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 10px;
  border-top: 1px solid rgba(217, 228, 213, 0.72);
  color: #76887e;
  font-size: 13px;
  text-align: center;
}

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

  .hero-art {
    min-height: 520px;
  }

  .hero-scene {
    width: min(100%, 640px);
    min-height: 500px;
  }

  .hero-chip-cost {
    left: 50%;
    top: 18%;
    transform: translateX(-10%);
  }

  .hero-chip-time {
    right: 18%;
    bottom: 24%;
  }

  .hero-chip-level {
    left: 16%;
    bottom: 8%;
  }

  .section-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

.split-copy {
  text-align: left;
}

  .pain-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .results-main {
    grid-template-columns: 1fr;
  }

  .pain-visual {
    justify-content: stretch;
  }

  .pain-rail {
    width: 100%;
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .page {
    padding: 18px 14px 28px;
  }

  .section {
    margin-bottom: 60px;
  }

  .signal-strip,
  .learn-grid,
  .sample-layout,
  .sample-layout.enhanced,
  .feedback-strip,
  .card-grid.two,
  .trust-card-grid,
  .compare-columns {
    grid-template-columns: 1fr;
  }

  .audience-rail {
    grid-auto-columns: minmax(280px, 78vw);
    scroll-padding-inline: 14px;
  }

  .step-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 14px;
  }

  .step-flow-track {
    left: 22px;
    right: auto;
    top: 22px;
    width: 4px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, rgba(185, 217, 193, 0.18), rgba(47, 177, 93, 0.88), rgba(143, 176, 75, 0.88), rgba(185, 217, 193, 0.18));
    background-size: 100% 220%;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    padding: 18px 18px 18px 16px;
  }

  .flow-count {
    margin-bottom: 0;
    min-width: 42px;
    height: 42px;
  }

  .hero-art {
    min-height: 470px;
  }

  .hero-scene {
    width: min(100%, 560px);
    min-height: 440px;
  }

  .sample-layout.enhanced .sample-project {
    border-right: 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.10);
  }

  .problem-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .showcase-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 228, 213, 0.78);
    padding: 26px 22px 22px;
  }

  .showcase-copy h3 {
    font-size: 26px;
  }

  .showcase-device {
    padding: 22px 18px 18px;
  }

  .showcase-device-shell {
    width: 100%;
    max-width: 720px;
  }

  .showcase-footer {
    padding: 16px 16px 18px;
  }

  .showcase-illustration {
    width: min(28%, 240px);
    right: 14px;
    bottom: 4px;
  }

  .problem-visual {
    justify-content: stretch;
  }

  .problem-summary {
    padding: 22px 18px;
  }

  .problem-summary h3 {
    font-size: 22px;
  }

  .problem-pills span {
    min-height: 44px;
    font-size: 13px;
  }

  .why-rail {
    padding: 22px;
    gap: 16px;
  }

  .why-flow-head strong {
    max-width: none;
    font-size: 21px;
  }

  .why-flow-path {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .why-flow-line {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .why-flow-step {
    width: 100%;
    min-height: 44px;
  }

  .why-flow-grid {
    grid-template-columns: 1fr;
  }

  .why-flow-card {
    min-height: 0;
    padding: 16px;
  }

  .why-flow-card h4 {
    font-size: 17px;
  }

  .why-flow-card p {
    font-size: 13px;
  }

  .sample-browser-top {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
  }

  .browser-progress {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    max-width: none;
    align-items: flex-start;
    gap: 8px 10px;
    padding: 10px 14px 8px;
    box-shadow: 0 12px 28px rgba(22, 38, 28, 0.08);
  }

  .brand-logo {
    width: 128px;
    height: 40px;
  }

  .header-link {
    min-height: 40px;
    margin-left: auto;
    padding: 0 13px;
    font-size: 13px;
    white-space: nowrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 8px;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 12px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(247, 250, 243, 0.86);
    border: 1px solid rgba(217, 228, 213, 0.8);
  }

  .page {
    padding-top: 104px;
    overflow: hidden;
  }

  .section,
  .page {
    scroll-margin-top: 112px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px 18px;
    border-radius: 30px;
  }

  .hero-copy {
    display: contents;
    text-align: center;
  }

  .hero .eyebrow {
    order: 1;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    order: 2;
  }

  .hero .lead {
    order: 3;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-art {
    order: 4;
    width: 100%;
    max-width: 380px;
    min-height: 398px;
    margin: 4px auto 10px;
    transform: none;
  }

  .hero-actions {
    order: 5;
  }

  .hero-pills {
    order: 6;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .hero-pills {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills span {
    min-height: 48px;
  }

  h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 10ch;
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .lead,
  .section-head p {
    font-size: 15px;
  }

  #what-it-is {
    padding-top: 0;
    overflow: hidden;
  }

  #what-it-is::before {
    inset: 0 0 auto;
    height: 100%;
    border-radius: 30px;
  }

  #what-it-is .section-head.narrow {
    max-width: 100%;
    margin-bottom: 18px;
    padding: 24px 18px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(217, 228, 213, 0.82);
    box-shadow: 0 16px 36px rgba(22, 38, 28, 0.045);
  }

  #what-it-is .section-head .eyebrow.small {
    margin-bottom: 12px;
    font-size: 13px;
  }

  #what-it-is .section-head h2 {
    max-width: 15ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 26px;
    line-height: 1.06;
  }

  #what-it-is .section-head p:not(.eyebrow) {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.58;
  }

  .showcase-section,
  .trust-section {
    overflow: hidden;
  }

  .showcase-section::before {
    left: 0;
    right: 0;
    border-radius: 28px;
  }

  .showcase-shell-minimal {
    padding: 14px;
  }

  .showcase-device-minimal {
    max-width: 100%;
  }

  .showcase-device-screen-full img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(22, 38, 28, 0.08);
  }

  .learn-section {
    overflow: hidden;
  }

  .learn-grid {
    display: flex;
    gap: 14px;
    max-width: none;
    margin: 0 -16px;
    padding: 2px 16px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .learn-grid::-webkit-scrollbar {
    display: none;
  }

  .learn-grid .info-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 244px;
    scroll-snap-align: center;
  }

  .btn {
    min-height: 50px;
    min-width: 0;
    font-size: 14px;
    text-align: center;
  }

  .signal-card,
  .info-card,
  .step-card,
  .compare-card,
  .feedback-card,
  .sample-project,
  .sample-result,
  .audience-row,
  .audience-card,
  .cta-band,
  .why-rail,
  .why-panel,
  .sample-browser,
  .trust-section,
  .trust-card {
    border-radius: 22px;
  }

  .signal-strip {
    margin-top: 10px;
    gap: 12px;
  }

  .signal-card {
    min-height: 0;
    padding: 18px 18px 16px;
  }

  .signal-card strong {
    font-size: 18px;
  }

  .hero-scene {
    width: min(100%, 360px);
    min-height: 368px;
    margin-inline: auto;
  }

  .hero-chip {
    min-width: 0;
    max-width: 176px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .hero-chip b {
    font-size: 18px;
  }

  .hero-chip-cost {
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
  }

  .hero-chip-time {
    right: 0;
    bottom: 20%;
  }

  .hero-chip-level {
    left: 0;
    bottom: 6%;
  }

  .audience-carousel {
    display: block;
  }

  .audience-nav {
    display: none;
  }

  .audience-rail {
    display: flex;
    gap: 12px;
    padding: 8px 0 12px;
    scroll-padding-inline: 0;
  }

  .audience-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .why-rail {
    padding: 22px;
    gap: 16px;
  }

  .why-flow-head strong {
    max-width: none;
    font-size: 21px;
  }

  .why-flow-path {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .why-flow-line {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .why-flow-step {
    width: 100%;
    min-height: 44px;
  }

  .why-flow-grid {
    grid-template-columns: 1fr;
  }

  .why-flow-card {
    min-height: 0;
    padding: 16px;
  }

  .why-flow-card h4 {
    font-size: 17px;
  }

  .why-flow-card p {
    font-size: 13px;
  }

  .showcase-shell {
    border-radius: 24px;
  }

  .showcase-bar {
    padding: 0 14px;
  }

  .showcase-copy {
    padding: 22px 18px 20px;
  }

  .showcase-copy h3 {
    font-size: 24px;
  }

  .showcase-device {
    padding: 18px 14px 16px;
  }

  .showcase-device-shell {
    border-radius: 22px;
  }

  .showcase-device-top {
    min-height: 44px;
    padding: 10px 12px;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .device-step {
    margin-left: 0;
  }

  .showcase-device-screen {
    padding: 10px;
  }

  .showcase-footer {
    gap: 10px;
  }

  .showcase-pills span,
  .showcase-footer span {
    min-height: 40px;
    font-size: 13px;
  }

  .problem-pills {
    grid-template-columns: 1fr;
  }

  .results-shell {
    padding: 18px 14px 14px;
    border-radius: 24px;
  }

  .results-top {
    gap: 10px;
  }

  .results-back,
  .results-reset {
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .results-progress-head span {
    font-size: 12px;
  }

  .results-intro {
    margin-top: 18px;
  }

  .results-intro h3 {
    font-size: 30px;
  }

  .results-summary-note {
    max-width: none;
  }

  .results-grid {
    gap: 14px;
    margin-top: 16px;
  }

  .results-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .result-photo-image-only {
    border-radius: 22px;
  }

  .result-photo-image-only img {
    border-radius: 22px;
  }

  .step-flow {
    grid-template-columns: 1fr;
    padding-top: 10px;
    gap: 12px;
  }

  .step-flow-track {
    left: 22px;
    right: auto;
    top: 22px;
    width: 4px;
    height: calc(100% - 10px);
  }

  .flow-step {
    padding: 16px 16px 16px 14px;
  }

  .flow-step h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .flow-step p {
    max-width: none;
  }

  .audience-card {
    border-radius: 26px;
  }

  .audience-photo {
    min-height: 158px;
  }

  .audience-body {
    padding: 18px 18px 20px;
  }

  .audience-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 17px;
  }

  .sample-metrics,
  .compare-columns {
    grid-template-columns: 1fr;
  }

  .sample-cost {
    grid-column: auto;
  }

  .sample-metrics div {
    min-height: 84px;
    padding: 14px 15px;
  }

  .sample-metrics b,
  .sample-result-head strong,
  .results-summary-list dd {
    font-size: 16px;
    letter-spacing: 0;
  }

  .feature-interest,
  .trust-points,
  .feedback-pills {
    gap: 10px;
  }

  .feature-interest span,
  .trust-points span,
  .feedback-pills span {
    width: 100%;
    justify-content: center;
  }

  .cta-band {
    padding: 28px 16px 26px;
  }

  .sample-layout.enhanced .sample-project,
  .sample-layout.enhanced .sample-result,
  .trust-card {
    padding: 22px 18px;
  }

  .browser-url {
    max-width: 48vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-footer {
    padding: 0 16px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .footer-brand,
  .footer-links,
  .footer-cta {
    justify-items: start;
    justify-content: flex-start;
  }

  .footer-start {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .eyebrow {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand-logo {
    width: 122px;
  }

  .header-link {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .page {
    padding-inline: 12px;
  }

  .hero {
    padding: 20px 12px 16px;
  }

  .hero-art {
    max-width: 340px;
    min-height: 382px;
  }

  .hero-scene {
    width: min(100%, 330px);
    min-height: 354px;
  }

  .hero-chip {
    max-width: 158px;
    padding: 9px 10px;
  }

  .hero-chip b {
    font-size: 16px;
  }

  .hero-chip-time {
    right: 2px;
  }

  .hero-chip-level {
    left: 2px;
  }

  .learn-grid {
    margin-inline: -12px;
    padding-inline: 12px;
    scroll-padding-inline: 12px;
  }

  .learn-grid .info-card {
    flex-basis: min(84vw, 300px);
    min-height: 236px;
  }

  #what-it-is .section-head.narrow {
    padding: 22px 14px 20px;
    border-radius: 24px;
  }

  #what-it-is .section-head h2 {
    max-width: 14ch;
    font-size: 24px;
  }

  #what-it-is .section-head p:not(.eyebrow) {
    max-width: 30ch;
    font-size: 14px;
    line-height: 1.55;
  }

  .info-card,
  .step-card,
  .compare-card,
  .feedback-card,
  .sample-project,
  .sample-result,
  .trust-card {
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 720px) {
  .feedback-card-footer {
    width: 100%;
    justify-content: center;
    justify-self: center;
  }

  .feedback-link {
    width: min(100%, 260px);
    min-width: 0;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 720px) {
  .trust-card-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 4px 16px 14px;
    margin-left: -16px;
    margin-right: -16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .trust-card-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: center;
  }
}
@media (max-width: 720px) {
  .trust-section .trust-points,
  .cta-band .trust-points {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}
/* Only feedback list card padding fix */
.feedback-strip .feedback-card {
  padding: 34px 32px;
}

.feedback-strip .feedback-card h3 {
  margin-bottom: 18px;
}

.feedback-strip .feedback-card ul {
  padding-left: 22px;
  gap: 12px;
}

.feedback-strip .feedback-card li {
  padding-left: 4px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .feedback-strip .feedback-card {
    padding: 30px 26px;
  }
}

@media (max-width: 720px) {
  .feedback-strip .feedback-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .feedback-strip .feedback-card h3 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.2;
  }

  .feedback-strip .feedback-card ul {
    padding-left: 20px;
    gap: 11px;
  }

  .feedback-strip .feedback-card li {
    padding-left: 2px;
    font-size: 15px;
    line-height: 1.42;
  }
}

@media (max-width: 420px) {
  .feedback-strip .feedback-card {
    padding: 24px 18px;
  }

  .feedback-strip .feedback-card ul {
    padding-left: 18px;
  }
}
@media (max-width: 720px) {
  #what-it-is .section-head p:not(.eyebrow) {
    max-width: 35ch !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }
}