:root {
  --ink: #13201b;
  --muted: #5c6f66;
  --line: #dbe5df;
  --paper: #f7faf7;
  --white: #ffffff;
  --green: #1e6b4b;
  --green-dark: #0f3f31;
  --mint: #cbe9dc;
  --amber: #d79a2b;
  --clay: #b95f43;
  --shadow: 0 24px 60px rgba(19, 32, 27, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(13, 29, 22, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 124px clamp(20px, 6vw, 76px) 74px;
  overflow: hidden;
  color: var(--white);
  background: #071610;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 44%, rgba(203, 233, 220, 0.2), transparent 28%),
    radial-gradient(circle at 14% 24%, rgba(30, 107, 75, 0.56), transparent 30%),
    linear-gradient(90deg, rgba(5, 16, 12, 0.96) 0%, rgba(8, 25, 18, 0.88) 48%, rgba(5, 16, 12, 0.7) 100%),
    linear-gradient(0deg, rgba(5, 16, 12, 0.94), rgba(5, 16, 12, 0.28) 46%);
  backdrop-filter: saturate(1.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-top: 34px;
}

.hero-content .eyebrow {
  color: #7ee2ae;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 0.74fr;
  grid-template-rows: auto auto;
  gap: clamp(12px, 2vw, 18px);
  justify-items: center;
  align-items: center;
  width: min(620px, 100%);
  justify-self: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -6% 4% 16%;
  z-index: -1;
  border: 1px solid rgba(126, 226, 174, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(126, 226, 174, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.34);
}

.hero-poster {
  width: 100%;
  aspect-ratio: 642 / 1389;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34);
}

.hero-poster-main {
  grid-row: 1 / span 2;
  transform: translateY(8px);
}

.hero-poster-secondary,
.hero-poster-tertiary {
  width: min(100%, 230px);
}

.hero-poster-secondary {
  transform: translateY(22px);
}

.hero-poster-tertiary {
  transform: translateY(-10px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-subheadline {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.28rem, 2.3vw, 1.8rem);
  font-weight: 780;
  line-height: 1.25;
}

.hero-support {
  max-width: 660px;
  margin: 16px 0 0;
  color: #cbe9dc;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  font-weight: 720;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(203, 233, 220, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(203, 233, 220, 0.1);
  font-size: 0.86rem;
  font-weight: 840;
}

.hero-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #0f241c;
  background: var(--mint);
}

.button-secondary {
  color: inherit;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 600px;
  margin: 54px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  padding: 18px;
  background: rgba(10, 33, 24, 0.46);
}

.hero-stats dt {
  font-size: 1.6rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 76px);
}

.intro,
.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-copy p,
.download-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-copy {
  display: grid;
  gap: 22px;
}

.setup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.setup-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-dark);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.problem {
  background: #eef5ef;
}

.problem .section-copy,
.data-section .section-copy {
  margin-bottom: 34px;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.lead {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 760;
  line-height: 1.25;
}

.insight-grid {
  display: grid;
  gap: 14px;
}

.insight-grid article {
  padding: 22px;
  border: 1px solid rgba(219, 229, 223, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.insight-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.insight-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.feature-band {
  background: var(--white);
}

.feature-band .section-copy,
.pricing .section-copy,
.videos .section-copy,
.screenshots .section-copy {
  margin-bottom: 34px;
}

.feature-grid,
.pricing-grid,
.video-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 240px;
  padding: 24px;
}

.feature-card p,
.price-card p,
.price-card li,
.steps li {
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--clay);
  font-weight: 850;
}

.data-section {
  background: var(--paper);
}

.metric-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--clay);
  font-weight: 850;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
}

.transparency-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(30, 107, 75, 0.24);
  border-radius: var(--radius);
  background: #eef5ef;
}

.transparency-note strong {
  color: var(--green-dark);
  font-size: 1.18rem;
}

.transparency-note p {
  margin: 0;
  color: var(--muted);
}

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

.poster-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.poster-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(19, 32, 27, 0.12);
  scroll-snap-align: start;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 642 / 1389;
  object-fit: cover;
}

.app-preview,
.proof {
  background: #eef5ef;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 42px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.72);
}

.steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.1rem;
}

.proof {
  padding-top: clamp(56px, 7vw, 96px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.proof-grid article,
.safety-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.proof-grid article {
  padding: 24px;
}

.proof-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.18rem;
}

.proof-grid p,
.safety-copy p,
.safety-copy li {
  color: var(--muted);
}

.pricing {
  background:
    radial-gradient(circle at 12% 20%, rgba(203, 233, 220, 0.64), transparent 34%),
    linear-gradient(180deg, #f7faf7, #eef5ef);
}

.paywall-phone {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(10px, 1.8vw, 16px);
  border-radius: 32px;
  background: #111916;
  box-shadow: var(--shadow);
}

.paywall-screen {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(18px, 3vw, 30px);
  min-height: 520px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 28, 22, 0.94), rgba(25, 86, 61, 0.9)),
    url("assets/background-greenmat.jpg") center / cover;
}

.paywall-copy,
.paywall-plans {
  min-width: 0;
}

.paywall-kicker {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paywall-copy h2,
.paywall-copy h3 {
  max-width: 540px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.paywall-page {
  min-height: 100vh;
  background: var(--paper);
}

.paywall-page-main {
  padding-top: 72px;
}

.paywall-page-section {
  min-height: calc(100vh - 72px);
}

.paywall-features {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.paywall-features li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 720;
}

.paywall-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 0.75rem;
  font-weight: 900;
}

.paywall-free {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.paywall-plans {
  display: grid;
  gap: 14px;
  align-content: center;
}

.paywall-plan {
  position: relative;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.paywall-plan.best {
  border: 2px solid var(--amber);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #3a2500;
  background: #f5c85e;
  font-size: 0.78rem;
  font-weight: 900;
}

.paywall-plan h4 {
  margin: 0 0 8px;
  padding-right: 110px;
  color: var(--green-dark);
  font-size: 1.24rem;
}

.plan-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 1rem;
}

.old-price {
  margin: 8px 0 0;
  color: var(--muted);
  text-decoration: line-through;
}

.paywall-plan p:not(.plan-price):not(.old-price) {
  margin: 7px 0 0;
  color: var(--muted);
}

.paywall-plan .button {
  width: 100%;
  margin-top: 18px;
}

.paywall-plan .button-secondary {
  color: var(--green-dark);
  border-color: var(--green);
}

.paywall-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.paywall-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.video-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 240px;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(14, 33, 25, 0.1), rgba(14, 33, 25, 0.88)),
    linear-gradient(135deg, #1e6b4b, #20342c 52%, #b95f43);
}

.video-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(14, 33, 25, 0.08), rgba(14, 33, 25, 0.9)),
    linear-gradient(135deg, #49695c, #101f19 52%, #d79a2b);
}

.video-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(14, 33, 25, 0.08), rgba(14, 33, 25, 0.9)),
    linear-gradient(135deg, #2c735d, #12352a 50%, #9b523d);
}

.play-button {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--white);
  font-size: 1.05rem;
}

.video-card p {
  margin: 0;
  max-width: 220px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.15;
}

.safety {
  background: var(--paper);
}

.safety .section-copy {
  margin-bottom: 34px;
}

.safety-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
}

.safety-copy p,
.safety-copy ul {
  margin: 0;
}

.safety-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

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

.faq .section-copy {
  margin-bottom: 34px;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-grid h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: 0 clamp(20px, 6vw, 76px) clamp(48px, 7vw, 84px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green) 68%, #8a5a2d);
}

.download-section .eyebrow {
  color: var(--mint);
}

.download-section h2 {
  max-width: 760px;
}

.download-section p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.store-buttons {
  margin: 0;
}

.store-button {
  min-width: 168px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.store-button span,
.store-button strong {
  display: block;
}

.store-button span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.store-button strong {
  font-size: 1.2rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 76px) 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(9, 24, 19, 0.9), rgba(12, 33, 25, 0.7) 360px, rgba(247, 250, 247, 0) 520px),
    var(--paper);
}

.legal-main {
  padding: 112px clamp(20px, 6vw, 76px) clamp(56px, 8vw, 96px);
}

.legal-hero {
  max-width: 900px;
  margin: 0 auto clamp(26px, 4vw, 42px);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.96;
}

.legal-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.legal-hero .button {
  margin-top: 26px;
}

.legal-content {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(219, 229, 223, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.legal-content section {
  margin-top: 34px;
}

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.upload-panel {
  max-width: 760px;
}

.upload-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.file-field {
  display: grid;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 800;
}

.file-field input {
  width: 100%;
  min-height: 52px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.upload-message {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
}

.upload-message span {
  color: inherit;
}

.upload-message-success {
  border: 1px solid rgba(30, 107, 75, 0.28);
  color: var(--green-dark);
  background: rgba(203, 233, 220, 0.56);
}

.upload-message-error {
  border: 1px solid rgba(185, 95, 67, 0.35);
  color: #7b2d1f;
  background: rgba(185, 95, 67, 0.12);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(13, 29, 22, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .intro,
  .section-copy,
  .workflow,
  .download-section,
  .hero,
  .problem-layout,
  .transparency-note,
  .safety-copy,
  .paywall-screen {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .video-grid,
  .proof-grid,
  .faq-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .poster-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 42vw);
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .paywall-phone {
    border-radius: 24px;
  }

  .paywall-screen {
    min-height: 0;
  }

  .hero-visual {
    justify-self: start;
    width: min(620px, 100%);
  }

  .download-section {
    margin-inline: 20px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
  }

  .hero {
    min-height: 94svh;
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
    line-height: 0.94;
  }

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

  .hero-visual {
    grid-template-columns: 1fr;
    width: min(280px, 100%);
    justify-self: start;
  }

  .hero-visual::before {
    inset: 4% -10% 2% 10%;
  }

  .hero-poster-main,
  .hero-poster-secondary,
  .hero-poster-tertiary {
    width: 100%;
    transform: none;
  }

  .poster-strip {
    grid-auto-columns: minmax(210px, 72vw);
  }

  .paywall-phone {
    padding: 8px;
    border-radius: 20px;
  }

  .paywall-screen {
    padding: 18px;
    border-radius: 15px;
  }

  .paywall-copy h2,
  .paywall-copy h3 {
    font-size: 2rem;
  }

  .paywall-plan h4 {
    padding-right: 0;
  }

  .plan-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
  }

  .store-buttons,
  .store-button,
  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding-top: 94px;
  }

  .legal-content {
    padding-inline: 20px;
  }
}
