:root {
  color-scheme: light;
  --bg: #f5f3ef;
  --bg-deep: #ebe5dc;
  --surface: #fffdf9;
  --surface-soft: #f8f4ed;
  --ink: #211814;
  --ink-soft: #3d312b;
  --muted: #746960;
  --line: rgba(33, 24, 20, 0.12);
  --line-strong: rgba(33, 24, 20, 0.2);
  --copper: #b65f37;
  --copper-dark: #7d3f27;
  --felt: #183d34;
  --felt-soft: #d8e6df;
  --blue: #315e70;
  --blue-soft: #dbe8eb;
  --cream: #fff8ef;
  --white: #fffefa;
  --shadow-soft: 0 28px 80px rgba(48, 37, 28, 0.12);
  --shadow-tight: 0 16px 36px rgba(48, 37, 28, 0.11);
  --curve: cubic-bezier(0.32, 0.72, 0, 1);
  --font-sans: "Plus Jakarta Sans", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(128deg, rgba(49, 94, 112, 0.1) 0%, rgba(49, 94, 112, 0) 30%),
    linear-gradient(24deg, rgba(24, 61, 52, 0.09) 0%, rgba(24, 61, 52, 0) 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(33, 24, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 24, 20, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(33, 24, 20, 0.8), transparent 72%);
}

a {
  color: var(--copper-dark);
  text-decoration-color: rgba(125, 63, 39, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 420ms var(--curve), text-decoration-color 420ms var(--curve), transform 420ms var(--curve);
}

a:hover {
  color: var(--felt);
  text-decoration-color: rgba(24, 61, 52, 0.46);
}

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

button {
  font: inherit;
}

.landing-page,
.page {
  position: relative;
  z-index: 1;
}

.landing-page {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 36px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 44px rgba(48, 37, 28, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.landing-topbar {
  position: sticky;
  top: 18px;
  z-index: 3;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand-mark span {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--ink), 0 0 0 1px rgba(255, 248, 239, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  background: rgba(33, 24, 20, 0.06);
  color: var(--ink);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding: clamp(34px, 5vw, 72px) 0 clamp(62px, 7vw, 104px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 18px;
  padding: 6px 11px;
  border: 1px solid rgba(33, 24, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.62);
  color: var(--copper-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

p,
li {
  color: var(--ink-soft);
  font-size: 16px;
}

p {
  margin-bottom: 14px;
}

ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 34px 0 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 520ms var(--curve), background 520ms var(--curve), color 520ms var(--curve), box-shadow 520ms var(--curve);
}

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

.button:active {
  transform: translateY(1px) scale(0.985);
}

.primary-button {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 18px 34px rgba(33, 24, 20, 0.18);
}

.primary-button:hover {
  color: var(--cream);
  background: var(--felt);
}

.secondary-button {
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(33, 24, 20, 0.1);
}

.button-orb {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: inherit;
  font-size: 11px;
  transition: transform 520ms var(--curve), background 520ms var(--curve);
}

.secondary-button .button-orb {
  background: rgba(33, 24, 20, 0.06);
}

.button:hover .button-orb {
  transform: translateX(3px) translateY(-1px) scale(1.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0;
}

.hero-stats div {
  padding-top: 16px;
  border-top: 1px solid rgba(33, 24, 20, 0.14);
}

.hero-stats dt {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.device-shell {
  width: min(100%, 340px);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 44px;
  background: rgba(255, 253, 249, 0.38);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-device {
  width: min(100%, 378px);
  transform: rotate(1.2deg);
}

.device-screen {
  overflow: hidden;
  min-height: 640px;
  border: 1px solid rgba(33, 24, 20, 0.13);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(246, 239, 229, 0.98)),
    var(--surface);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 10px;
  color: rgba(33, 24, 20, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.app-home,
.lesson-preview,
.review-preview,
.table-view {
  padding: 18px 22px 24px;
}

.screen-kicker,
.micro-label {
  display: block;
  margin: 0 0 8px;
  color: var(--copper-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.app-home h2,
.lesson-preview h2,
.review-preview h2 {
  font-size: 38px;
  line-height: 0.98;
}

.today-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 18px;
  padding: 18px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.today-panel strong,
.lesson-strip strong,
.lesson-card strong,
.quiz-card strong,
.feedback-tile strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.18;
}

.progress-ring {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(var(--copper) 0 72%, rgba(33, 24, 20, 0.1) 72% 100%);
}

.progress-ring span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin: 18px 0;
}

.week-row span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(33, 24, 20, 0.06);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.week-row .done {
  background: var(--felt-soft);
  color: var(--felt);
}

.week-row .today {
  background: var(--ink);
  color: var(--cream);
}

.lesson-strip,
.lesson-card,
.quiz-card,
.feedback-tile,
.action-panel {
  padding: 17px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(33, 24, 20, 0.08);
}

.lesson-strip span,
.lesson-card span,
.quiz-card span,
.feedback-tile span,
.skill-meter span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-strip small,
.lesson-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.floating-note {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow-tight), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  animation: float-note 6800ms var(--curve) infinite;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 16px;
}

.note-one {
  right: 2%;
  top: 110px;
}

.note-two {
  left: 1%;
  bottom: 118px;
  animation-delay: 1200ms;
}

.section {
  padding: clamp(86px, 10vw, 150px) 0;
}

.section-heading {
  max-width: 850px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  border-top: 1px solid rgba(33, 24, 20, 0.12);
}

.intro-copy {
  max-width: 610px;
  padding-bottom: 10px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.preview-section {
  border-top: 1px solid rgba(33, 24, 20, 0.12);
}

.screen-gallery {
  display: grid;
  grid-template-columns: 1.02fr 0.9fr 1.02fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-top: clamp(34px, 5vw, 72px);
}

.screen-card {
  display: grid;
  gap: 22px;
}

.screen-card-offset {
  margin-top: 72px;
}

.screen-card .device-shell {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.screen-card:nth-child(1) .device-shell {
  transform: rotate(-1.4deg);
}

.screen-card:nth-child(2) .device-shell {
  transform: rotate(1deg);
}

.screen-card:nth-child(3) .device-shell {
  transform: rotate(-0.7deg);
}

.screen-caption {
  max-width: 350px;
  margin: 0 auto;
}

.screen-caption p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.swipe-screen .device-screen,
.lesson-screen .device-screen,
.progress-screen .device-screen {
  min-height: 620px;
}

.dealer-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.dealer-line strong {
  color: var(--muted);
}

.table-felt {
  position: relative;
  height: 238px;
  margin: 20px 0;
  border: 10px solid rgba(33, 24, 20, 0.08);
  border-radius: 44%;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--felt);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), inset 0 -28px 70px rgba(12, 28, 24, 0.34);
}

.seat {
  position: absolute;
  display: grid;
  min-width: 48px;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--felt);
  font-size: 10px;
  font-weight: 900;
}

.seat.active {
  background: var(--copper);
  color: var(--cream);
}

.seat-utg {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.seat-co {
  left: 18px;
  top: 100px;
}

.seat-btn {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.seat-bb {
  right: 18px;
  top: 100px;
}

.pot {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 82px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.16);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.hand-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hand-row span {
  display: grid;
  width: 58px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(33, 24, 20, 0.12);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(33, 24, 20, 0.09);
}

.action-panel small {
  display: block;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.4;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.choice-row span {
  display: grid;
  min-height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 24, 20, 0.07);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.choice-row .selected {
  background: var(--felt);
  color: var(--cream);
}

.lesson-card {
  min-height: 168px;
  margin-top: 22px;
}

.lesson-card.warm {
  background:
    linear-gradient(138deg, rgba(182, 95, 55, 0.16), rgba(49, 94, 112, 0.08)),
    var(--white);
}

.quiz-card {
  margin-top: 14px;
  background: var(--blue-soft);
}

.quiz-card p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.skill-meter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  margin-top: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(33, 24, 20, 0.1);
}

.skill-meter strong {
  color: var(--ink);
  font-size: 13px;
}

.skill-meter i {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(33, 24, 20, 0.08);
}

.skill-meter i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--meter);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--felt), var(--blue));
  content: "";
}

.feedback-tile {
  margin-top: 20px;
  background: var(--felt);
}

.feedback-tile span,
.feedback-tile strong {
  color: var(--cream);
}

.how-section {
  border-top: 1px solid rgba(33, 24, 20, 0.12);
}

.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  margin-top: 44px;
}

.process-step {
  min-height: 274px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 520ms var(--curve), background 520ms var(--curve), box-shadow 520ms var(--curve);
}

.process-step:hover {
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow-tight), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateY(-4px);
}

.process-step span {
  display: block;
  margin-bottom: 64px;
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.trust-section {
  padding-top: 40px;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(24, 61, 52, 0.12), rgba(49, 94, 112, 0.08)),
    rgba(255, 253, 249, 0.7);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-panel h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 58px);
}

.trust-list p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.landing-footer,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(33, 24, 20, 0.14);
  color: var(--muted);
}

.footer p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

.landing-footer strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.landing-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 800;
}

.hero,
.card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero {
  padding: clamp(30px, 5vw, 54px);
}

.hero .lead {
  max-width: 720px;
  margin-bottom: 0;
}

.meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
}

.card {
  padding: clamp(22px, 3vw, 32px);
  margin-top: 16px;
}

.card h2 {
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

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

.reveal {
  animation: rise-in 900ms var(--curve) both;
}

.reveal:nth-child(2) {
  animation-delay: 80ms;
}

.reveal:nth-child(3) {
  animation-delay: 160ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-note {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1120px) {
  .landing-hero,
  .intro-section,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-device {
    transform: none;
  }

  .floating-note {
    display: none;
  }

  .screen-gallery {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .screen-card-offset {
    margin-top: 0;
  }

  .screen-card .device-shell {
    max-width: 370px;
  }

  .screen-caption {
    max-width: 520px;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .landing-page,
  .page {
    width: min(100% - 28px, 720px);
    padding-top: 14px;
  }

  .topbar {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 36px;
    border-radius: 28px;
  }

  .landing-topbar {
    position: relative;
    top: auto;
    backdrop-filter: none;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    justify-content: center;
  }

  .nav a {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .landing-hero {
    padding-top: 12px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 76px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .hero-actions {
    margin-bottom: 30px;
  }

  .process-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .process-step span {
    margin-bottom: 36px;
  }

  .section {
    padding: 74px 0;
  }

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

  .landing-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .landing-page,
  .page {
    width: min(100% - 24px, 420px);
  }

  .hero-actions {
    gap: 8px;
    margin: 26px 0 24px;
  }

  .button {
    min-height: 50px;
    padding: 6px 6px 6px 16px;
    gap: 10px;
    font-size: 13px;
  }

  .button-orb {
    min-width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-stats div {
    padding-top: 10px;
  }

  .hero-stats dt {
    font-size: 18px;
    line-height: 1.05;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .hero-visual {
    max-height: 380px;
    overflow: hidden;
    align-items: start;
    margin-top: 26px;
  }

  .device-shell {
    border-radius: 36px;
    padding: 7px;
  }

  .device-screen {
    min-height: 590px;
    border-radius: 30px;
  }

  .app-home,
  .lesson-preview,
  .review-preview,
  .table-view {
    padding: 16px 18px 22px;
  }

  .app-home h2,
  .lesson-preview h2,
  .review-preview h2 {
    font-size: 34px;
  }

  .table-felt {
    height: 210px;
  }

  .choice-row {
    gap: 6px;
  }

  .choice-row span {
    font-size: 11px;
  }

  .trust-panel,
  .hero,
  .card {
    border-radius: 26px;
  }
}
