:root {
  --bg: #f6efe4;
  --ink: #151312;
  --ink-soft: #35312d;
  --line: #1f1a17;
  --accent: #ff4d1f;
  --accent-dark: #9e2b0e;
  --accent-alt: #0f5d6c;
  --card: rgba(255, 252, 246, 0.82);
  --focus: #005fcc;
  --radius: 20px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 10% 0%, #ffefc7 0%, transparent 38%),
    radial-gradient(circle at 85% 30%, #ffd4bb 0%, transparent 34%),
    linear-gradient(170deg, #fefbf4 0%, var(--bg) 48%, #f5eee2 100%);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

#scene-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(rgba(0, 0, 0, 0.07) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #fff;
  border: 2px solid var(--focus);
  padding: 0.5rem 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 238, 0.75);
  border-bottom: 1px solid rgba(31, 26, 23, 0.2);
}

.nav-shell,
.section-shell,
.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo .logo-mark {
  display: block;
  height: 30px;
  width: auto;
}

.logo .logo-wordmark {
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid rgba(21, 19, 18, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0.35rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.lang-btn.is-active {
  background: var(--ink);
  color: #fff;
}

.lang-btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}


.section-shell {
  padding: clamp(3rem, 7vw, 6.4rem) 0;
}

.hero {
  padding-top: clamp(2.2rem, 6.5vw, 4.8rem);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  width: 100% !important;
  margin-inline: 0 !important;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.hero-content {
  min-width: 0;
}

.hero-demo {
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 0;
  border: 1.5px solid rgba(158, 43, 14, 0.25);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 22px 40px rgba(121, 48, 24, 0.16);
  padding: 0.55rem;
  overflow: hidden;
  max-width: 100%;
}

.hero-demo img,
.hero-demo video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 2px);
}

.hero-demo .demo-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transform-origin: center;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid rgba(15, 93, 108, 0.45);
  color: var(--accent-alt);
  background: rgba(214, 245, 250, 0.45);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--accent-dark);
}

.hero-title,
.section-title {
  font-family: "Archivo Black", sans-serif;
  line-height: 1.14;
  margin: 0.2rem 0 1rem;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.2rem);
  max-width: 16ch;
  text-wrap: balance;
}

.hero-copy {
  max-width: 60ch;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
}

.price-note {
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.7rem 1.1rem;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.25s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 77, 31, 0.35);
}

.btn-solid:hover {
  background: var(--accent-dark);
}

.btn-solid::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -140%;
  width: 90%;
  height: 220%;
  pointer-events: none;
  opacity: 0;
  transform: skewX(-22deg) translateX(0);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 48%,
    rgba(255, 255, 255, 0) 100%
  );
}

.btn-solid:hover::after {
  opacity: 1;
  animation: sheen 0.8s ease;
}

.btn-ghost {
  border-color: rgba(21, 19, 18, 0.9);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(31, 26, 23, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.88);
}

.btn-ghost::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -145%;
  width: 95%;
  height: 230%;
  pointer-events: none;
  opacity: 0;
  transform: skewX(-22deg) translateX(0);
  background: linear-gradient(
    120deg,
    rgba(15, 93, 108, 0) 0%,
    rgba(15, 93, 108, 0.28) 48%,
    rgba(15, 93, 108, 0) 100%
  );
}

.btn-ghost:hover::after {
  opacity: 1;
  animation: sheen-ghost 0.86s ease;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  position: relative;
}

.card,
.feature-card,
.price-card,
.faq-item,
.consent-banner {
  border: 1.5px solid rgba(21, 19, 18, 0.35);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 38px rgba(16, 12, 10, 0.1);
}

.card {
  padding: 1.3rem;
  position: relative;
}

.split .card:first-child {
  transform: rotate(-1deg);
}

.split .card:last-child {
  transform: rotate(1deg) translateY(1.1rem);
}

.split .qa-card {
  border-color: rgba(111, 54, 29, 0.28);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 16px 30px rgba(111, 54, 29, 0.12);
  padding: 1.1rem 1.25rem 1.2rem;
}

.qa-badge {
  margin: 0 0 0.45rem;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 54, 29, 0.34);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.question-card .qa-badge {
  background: rgba(255, 235, 211, 0.78);
  color: #7f3b1f;
}

.answer-card .qa-badge {
  background: rgba(219, 242, 247, 0.8);
  border-color: rgba(34, 92, 104, 0.35);
  color: #245b67;
}

.question-card h2::before,
.answer-card h2::before {
  margin-right: 0.35rem;
  font-size: 1.05em;
}

.question-card h2::before {
  content: "Q:";
  color: #9e2b0e;
}

.answer-card h2::before {
  content: "A:";
  color: #2d5f68;
}

.split::after {
  content: "→";
  position: absolute;
  left: calc(50% - 0.55rem);
  top: 45%;
  width: 1.1rem;
  height: 1.1rem;
  display: grid;
  place-items: center;
  color: #9e2b0e;
  font-weight: 900;
  font-size: 1rem;
  opacity: 0.65;
}

.workflow .steps {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
}

.workflow li {
  border: 1px solid rgba(21, 19, 18, 0.22);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workflow span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.feature-grid,
.price-grid {
  display: grid;
  gap: 1rem;
}

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

.features {
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.features-wrap {
  position: relative;
  border: 1.5px solid rgba(158, 43, 14, 0.34);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 235, 211, 0.58) 0%, transparent 40%),
    radial-gradient(circle at 12% 85%, rgba(255, 208, 160, 0.45) 0%, transparent 42%),
    linear-gradient(165deg, rgba(255, 248, 235, 0.95), rgba(255, 239, 220, 0.92));
  box-shadow: 0 24px 44px rgba(121, 48, 24, 0.14);
  overflow: hidden;
}

.features-wrap::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 55%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 227, 189, 0.58) 50%,
    rgba(255, 239, 220, 0.35) 100%
  );
  transform: rotate(-4deg);
  pointer-events: none;
}

.features-wrap::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 132, 71, 0.26), rgba(255, 132, 71, 0));
  pointer-events: none;
}

.features-kicker {
  display: inline-block;
  margin: 0;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(158, 43, 14, 0.32);
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.features .section-title {
  font-size: clamp(2.1rem, 5.7vw, 3.8rem);
  margin: 0.6rem 0 0.5rem;
}

.features.story-active .features-kicker,
.features.story-active .section-title,
.features.story-active .features-lead {
  will-change: transform, opacity;
}

.features-lead {
  margin: 0 0 1.1rem;
  max-width: 58ch;
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: #4b3122;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.price-card {
  padding: 1.1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card {
  min-height: 180px;
  border-color: rgba(158, 43, 14, 0.28);
  background: rgba(255, 255, 255, 0.86);
  padding-top: 1.2rem;
  box-shadow: 0 12px 24px rgba(111, 54, 29, 0.09);
  transform-style: preserve-3d;
  will-change: transform;
}

.features.story-active .feature-card {
  opacity: 0.7;
  filter: saturate(0.88);
}

.features.story-active .feature-card.is-focus {
  opacity: 1;
  filter: saturate(1.08);
  border-color: rgba(158, 43, 14, 0.62);
  box-shadow: 0 26px 40px rgba(114, 53, 26, 0.23);
}

.feature-card h3 {
  font-size: 1.24rem;
  margin: 0 0 0.45rem;
}

.feature-tag {
  margin: 0 0 0.55rem;
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(158, 43, 14, 0.28);
  background: rgba(255, 238, 216, 0.78);
  color: #7f3b1f;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-grid .feature-card:nth-child(1) { transform: rotate(-0.5deg); }
.feature-grid .feature-card:nth-child(2) { transform: rotate(0.4deg) translateY(0.5rem); }
.feature-grid .feature-card:nth-child(3) { transform: rotate(0.35deg) translateY(-0.2rem); }
.feature-grid .feature-card:nth-child(4) { transform: rotate(-0.45deg) translateY(0.35rem); }

.feature-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 19, 18, 0.7);
}

.feature-card:hover {
  box-shadow: 0 20px 34px rgba(114, 53, 26, 0.18);
  border-color: rgba(158, 43, 14, 0.52);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(255, 255, 255, 0) 75%
  );
  transform: translateX(-130%);
}

.price-card:hover::before {
  opacity: 1;
  animation: sweep 0.95s ease;
}

.price-card .value {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.3rem;
}

.price-card .value span {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.price-card.accent {
  border-color: var(--accent-dark);
  background: linear-gradient(160deg, rgba(255, 77, 31, 0.08), rgba(255, 255, 255, 0.75));
}

.pricing.is-visible .price-card {
  animation: pricePulse 1s ease both;
}

.pricing.is-visible .price-card:nth-child(1) { animation-delay: 0.04s; }
.pricing.is-visible .price-card:nth-child(2) { animation-delay: 0.09s; }
.pricing.is-visible .price-card:nth-child(3) { animation-delay: 0.14s; }
.pricing.is-visible .price-card:nth-child(4) { animation-delay: 0.19s; }
.pricing.is-visible .price-card:nth-child(5) { animation-delay: 0.24s; }
.pricing.is-visible .price-card:nth-child(6) { animation-delay: 0.29s; }

.pricing-punch {
  max-width: 74ch;
  font-weight: 800;
  font-size: clamp(1.03rem, 1.9vw, 1.18rem);
  line-height: 1.6;
  margin: 0 0 1.45rem;
  padding: 0.95rem 1.05rem 1.02rem;
  border: 1.5px solid rgba(158, 43, 14, 0.34);
  border-left: 6px solid var(--accent);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 248, 234, 0.95), rgba(255, 239, 220, 0.9));
  box-shadow: 0 10px 24px rgba(121, 48, 24, 0.12);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
  margin-bottom: 0.28rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.28);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  vertical-align: middle;
}

.impact {
  position: relative;
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.impact-wrap {
  position: relative;
  border: 1.5px solid rgba(158, 43, 14, 0.34);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.6rem, 4.2vw, 3rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 191, 152, 0.48) 0%, transparent 42%),
    radial-gradient(circle at 86% 18%, rgba(255, 225, 164, 0.42) 0%, transparent 38%),
    linear-gradient(165deg, rgba(255, 248, 235, 0.95), rgba(255, 242, 224, 0.92));
  box-shadow: 0 24px 42px rgba(121, 48, 24, 0.15);
  overflow: hidden;
}

.impact.is-visible .impact-wrap {
  animation: impactGlow 1.15s ease;
}

.impact-wrap::before {
  content: "";
  position: absolute;
  right: -3.2rem;
  top: -3.2rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: rgba(255, 77, 31, 0.11);
}

.impact-wrap::after {
  content: "";
  position: absolute;
  left: -2.4rem;
  bottom: -2.6rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(15, 93, 108, 0.12);
}

.impact .section-title {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 5.2vw, 3.7rem);
}

.impact-badge {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 26, 23, 0.22);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.impact-lead {
  max-width: 52ch;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 700;
  color: #3f2920;
  margin-bottom: 1rem;
}

.impact-points {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.impact-points p {
  margin: 0;
  padding: 1rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 26, 23, 0.2);
  display: grid;
  gap: 0.2rem;
}

.impact-points strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
}

.impact-points span {
  font-size: 1rem;
  color: #5a4f48;
}

.faq-item p,
.card p,
.feature-card p,
.price-card p,
.impact-wrap p,
.legal-card p,
.legal-card li,
.feedback-form label {
  font-size: 1rem;
}

.ticker {
  border-top: 1px solid rgba(21, 19, 18, 0.3);
  border-bottom: 1px solid rgba(21, 19, 18, 0.3);
  overflow: hidden;
  background: rgba(246, 236, 220, 0.55);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  padding: 0.75rem 0;
  animation: slide 26s linear infinite;
}

.ticker-track p {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.04em;
  color: #20201f;
}

.faq-item {
  padding: 0.8rem 1rem;
  margin-bottom: 0.7rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
}

.final-cta {
  text-align: center;
  padding-top: clamp(4.2rem, 10vw, 8rem);
  padding-bottom: clamp(4.2rem, 10vw, 8rem);
}

.final-cta-wrap {
  position: relative;
  border: 1.5px solid rgba(255, 77, 31, 0.45);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 217, 180, 0.55) 0%, transparent 40%),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.7) 0%, transparent 34%),
    linear-gradient(165deg, rgba(255, 247, 233, 0.98), rgba(255, 235, 211, 0.93));
  box-shadow: 0 30px 58px rgba(135, 52, 22, 0.18);
  overflow: hidden;
}

.final-cta-wrap::before {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  top: -7rem;
  right: -5rem;
  border-radius: 50%;
  background: rgba(255, 77, 31, 0.16);
}

.final-cta-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
}

.final-cta .section-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 0.6rem;
}

.final-cta-copy {
  max-width: 40ch;
  margin: 0 auto 1.2rem;
  font-size: clamp(1.1rem, 2.6vw, 1.42rem);
  font-weight: 700;
  color: #3f2d22;
}

.cta-hero {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  padding: 0.9rem 1.6rem;
  box-shadow: 0 16px 30px rgba(255, 77, 31, 0.38);
}

.cta-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 34px rgba(255, 77, 31, 0.43);
}

.final-cta-note {
  margin-top: 0.9rem;
  font-size: 1rem;
  color: #5c4a3f;
}

.site-footer {
  border-top: 1px solid rgba(21, 19, 18, 0.25);
  padding: 1rem 0 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

.site-footer a {
  color: var(--ink);
  margin-right: 0.8rem;
}

.content-page .section-shell {
  padding-top: clamp(2.4rem, 6vw, 5rem);
}

.legal-page,
.feedback-page {
  max-width: 980px;
}

.under-construction {
  min-height: calc(100vh - 180px);
  display: grid;
  align-content: center;
  padding-top: clamp(4rem, 12vw, 8rem);
  padding-bottom: clamp(4rem, 12vw, 8rem);
}

.under-construction .hero-title {
  max-width: 13ch;
}

.under-construction .hero-copy {
  max-width: 62ch;
}

.legal-page .hero-title,
.feedback-page .hero-title {
  max-width: 14ch;
}

.legal-card {
  border: 1.5px solid rgba(21, 19, 18, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 18px 38px rgba(16, 12, 10, 0.1);
  padding: clamp(1rem, 2.5vw, 1.4rem);
  margin: 1rem 0;
}

.legal-card h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.legal-card a {
  color: var(--accent-dark);
  font-weight: 800;
}

.legal-list {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0;
}

.legal-list li + li {
  margin-top: 0.35rem;
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(21, 19, 18, 0.22);
  padding: 0.72rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(255, 235, 211, 0.86);
  font-weight: 900;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.feedback-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1.5px solid rgba(21, 19, 18, 0.38);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.82rem;
}

.feedback-form textarea {
  resize: vertical;
}

.feedback-wide {
  grid-column: 1 / -1;
}

.feedback-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.feedback-side {
  position: sticky;
  top: 92px;
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 380px;
  z-index: 20;
  padding: 0.9rem;
}

.consent-actions {
  display: flex;
  gap: 0.5rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }
  .nav-shell {
    flex-wrap: wrap;
    padding: 0.6rem 0;
  }
  .nav-controls {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-demo {
    margin-top: 0;
    order: 2;
  }
  .split,
  .feature-grid,
  .price-grid,
  .impact-points,
  .feedback-layout,
  .feedback-form {
    grid-template-columns: 1fr;
  }
  .feedback-side {
    position: static;
  }
  .split .card:first-child,
  .split .card:last-child {
    transform: none;
  }
  .split::after {
    content: "↓";
    left: calc(50% - 0.55rem);
    top: calc(50% - 0.65rem);
  }
  .features-wrap {
    padding: 1.2rem;
  }
  .feature-card {
    min-height: auto;
    padding-top: 1rem;
    transform: none !important;
  }
  .features-wrap::after {
    display: none;
  }
  .ticker-track {
    animation-duration: 18s;
  }
  .btn {
    transition: transform 0.18s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }
  .btn:active {
    transform: scale(0.985);
  }
  .feature-card:hover,
  .price-card:hover,
  .btn:hover {
    transform: none;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-top: clamp(1.8rem, 4vw, 3.4rem);
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .feature-card {
    transform: none !important;
  }
  .features-wrap::after {
    display: none;
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes sheen {
  from {
    transform: skewX(-22deg) translateX(0);
  }
  to {
    transform: skewX(-22deg) translateX(360%);
  }
}

@keyframes sweep {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

@keyframes sheen-ghost {
  from {
    transform: skewX(-22deg) translateX(0);
  }
  to {
    transform: skewX(-22deg) translateX(360%);
  }
}

@keyframes pricePulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 77, 31, 0);
    border-color: rgba(21, 19, 18, 0.35);
  }
  40% {
    box-shadow: 0 0 0 4px rgba(255, 77, 31, 0.14), 0 20px 36px rgba(16, 12, 10, 0.16);
    border-color: rgba(255, 77, 31, 0.65);
  }
  100% {
    box-shadow: 0 18px 38px rgba(16, 12, 10, 0.1);
    border-color: rgba(21, 19, 18, 0.35);
  }
}

@keyframes impactGlow {
  0% {
    box-shadow: 0 0 0 rgba(121, 48, 24, 0), 0 20px 30px rgba(121, 48, 24, 0.08);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(255, 126, 75, 0.16), 0 28px 44px rgba(121, 48, 24, 0.2);
  }
  100% {
    box-shadow: 0 24px 42px rgba(121, 48, 24, 0.15);
  }
}
