:root {
  --ink: #211e23;
  --ink-soft: #302a31;
  --wine: #60263a;
  --wine-dark: #401b2a;
  --teal: #0f6b6b;
  --teal-soft: #dff4ef;
  --panel: rgba(255, 255, 255, 0.09);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --text-dark: #172026;
  --paper: #f8f0df;
  --amber: #f2c16b;
  --green: #0f6b6b;
  --cyan: #dff4ef;
  --red: #e86c68;
  --blue: #315f9f;
  --shadow: 0 24px 70px rgba(16, 14, 18, 0.32);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

body::selection {
  color: var(--ink);
  background: var(--amber);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(72px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px 34px;
  background: linear-gradient(180deg, rgba(33, 30, 35, 0.88), rgba(33, 30, 35, 0.28));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: var(--ink);
  background: var(--amber);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
}

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

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.top-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--ink);
  background: var(--paper);
}

.slide-meter {
  justify-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-variant-numeric: tabular-nums;
}

.slide-meter span:first-child {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 820;
}

.presentation-language {
  position: fixed;
  top: 18px;
  right: 104px;
  z-index: 25;
  max-width: 150px;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--amber);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(16, 14, 18, 0.18);
}

.section-band {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  padding: 118px 34px 72px;
  isolation: isolate;
  scroll-margin-top: 96px;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 92svh;
  background:
    linear-gradient(90deg, rgba(33, 30, 35, 0.92) 0%, rgba(33, 30, 35, 0.68) 48%, rgba(33, 30, 35, 0.22) 100%),
    url("./assets/hero-stage.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 180px;
  background: linear-gradient(180deg, rgba(33, 30, 35, 0), var(--wine-dark));
}

.hero-grid,
.split-layout,
.showcase-layout,
.final-layout {
  display: grid;
  align-items: center;
  gap: 48px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
}

.split-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.7fr);
}

.showcase-layout {
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 0.78fr);
}

.showcase-layout.reverse {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.72fr);
}

.final-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.1vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.1vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.28rem;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.16rem;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.slogan-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.slogan-strip span,
.section-slogan {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: var(--ink) !important;
  background: rgba(248, 240, 223, 0.94);
  border: 1px solid rgba(242, 193, 107, 0.55);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 14, 18, 0.16);
}

.slogan-strip span {
  padding: 10px 14px;
  font-weight: 850;
}

.section-slogan {
  margin: 22px 0 0;
  padding: 13px 16px;
  font-weight: 850;
  font-size: 1rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section-cta {
  display: flex;
  margin-top: 24px;
}

.inline-signup {
  margin: 0 0 34px;
  padding: 24px;
  scroll-margin-top: 176px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(242, 193, 107, 0.5);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.inline-signup .eyebrow {
  margin-bottom: 6px;
}

.inline-signup h3 {
  margin-bottom: 18px;
  color: var(--white);
  text-align: center;
  font-size: 1.48rem;
}

.inline-signup-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.inline-signup-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(242, 193, 107, 0.72);
  border-radius: 8px;
  font: inherit;
}

.inline-signup-form .primary-action {
  grid-column: 1 / -1;
  min-height: 50px;
  font-size: 1rem;
}

.inline-signup-result {
  margin: 14px 0 0 !important;
  padding: 12px;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.inline-signup-result.success {
  background: rgba(15, 107, 107, 0.78);
}

.inline-signup-result.error {
  background: rgba(232, 108, 104, 0.74);
}

.app-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.app-download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  text-align: center;
}

.app-download-card.pending {
  opacity: 0.82;
}

.app-download-card h3,
.app-download-card p {
  margin-bottom: 8px;
  color: var(--ink) !important;
}

.app-download-card h3 {
  font-size: 1.06rem;
}

.app-download-card p {
  font-size: 0.88rem !important;
  line-height: 1.35;
}

.download-qr {
  width: 132px;
  height: 132px;
  padding: 4px;
  background: #fff;
  border-radius: 6px;
}

.app-download-card .secondary-action {
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: var(--wine);
  font-size: 0.86rem;
}

.secondary-action.disabled {
  cursor: default;
  opacity: 0.72;
}

.primary-action,
.secondary-action,
.icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-action {
  gap: 10px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--amber);
}

.secondary-action {
  gap: 10px;
  padding: 0 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.icon-action {
  width: 48px;
  color: var(--amber);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--amber);
}

.primary-action:hover,
.secondary-action:hover,
.icon-action:hover {
  transform: translateY(-2px);
}

.primary-action svg,
.secondary-action svg,
.icon-action svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.command-center,
.server-panel,
.phone-shot,
.timeline-step,
.launch-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.command-center {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.center-topline,
.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.center-topline span {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
}

.center-topline span:nth-child(2) {
  background: var(--amber);
}

.center-topline span:nth-child(3) {
  background: var(--green);
}

.center-body {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.brand-showcase .center-body {
  gap: 20px;
}

.brand-lockup {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  color: var(--ink);
  background: rgba(248, 240, 223, 0.94);
  border-radius: 8px;
}

.brand-lockup img,
.launch-logo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 14, 18, 0.24);
}

.brand-lockup strong,
.brand-lockup span {
  display: block;
}

.brand-lockup strong {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
}

.brand-lockup span {
  margin-top: 8px;
  color: rgba(33, 30, 35, 0.68);
  font-weight: 750;
}

.promise-card {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.promise-card h3 {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 1.55rem;
}

.promise-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

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

.center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.center-node {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.center-node svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--amber);
}

.center-node strong,
.center-node span {
  display: block;
}

.center-node strong {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.center-node span {
  color: rgba(255, 255, 255, 0.66);
}

.main-node {
  min-height: 180px;
  color: var(--ink);
  background: rgba(248, 240, 223, 0.92);
}

.main-node span {
  color: rgba(33, 30, 35, 0.68);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.status-strip span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 820;
}

.server-band {
  background:
    linear-gradient(135deg, rgba(96, 38, 58, 0.94), rgba(33, 30, 35, 0.96)),
    var(--wine);
}

.client-band {
  color: var(--ink);
  background:
    linear-gradient(145deg, #f8f0df 0%, #e2f3ee 48%, #f6d48d 100%);
}

.employee-band {
  background:
    linear-gradient(140deg, rgba(15, 107, 107, 0.88), rgba(33, 30, 35, 0.98) 58%),
    var(--teal);
}

.flow-band {
  background:
    linear-gradient(145deg, #f8f0df 0%, #e2f3ee 50%, #f6d48d 100%);
  color: var(--ink);
}

.launch-band {
  background:
    linear-gradient(135deg, rgba(33, 30, 35, 0.98), rgba(29, 50, 50, 0.94)),
    var(--ink-soft);
}

.client-band .section-copy p:not(.eyebrow),
.flow-band .section-heading p:not(.eyebrow),
.client-band .clean-list li,
.flow-band .timeline-step p {
  color: rgba(33, 30, 35, 0.72);
}

.client-band .eyebrow,
.flow-band .eyebrow {
  color: var(--teal);
}

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

.bullet-grid div {
  min-height: 122px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bullet-grid strong,
.bullet-grid span {
  display: block;
}

.bullet-grid strong {
  margin-bottom: 8px;
  color: var(--amber);
}

.bullet-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.server-panel {
  overflow: hidden;
  padding-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-header {
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.panel-header svg {
  color: var(--green);
}

.server-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px 14px;
  margin: 16px 18px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.server-row strong {
  font-size: 1.05rem;
}

.server-row small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62);
}

.status {
  align-self: start;
  padding: 6px 9px;
  text-align: center;
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.status.new {
  background: var(--cyan);
}

.status.active {
  background: var(--amber);
}

.status.done {
  background: var(--green);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px;
}

.metrics div {
  padding: 16px;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 1.6rem;
}

.metrics span {
  color: rgba(20, 23, 28, 0.64);
  font-size: 0.82rem;
}

.phone-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.phone-stage.single {
  grid-template-columns: minmax(280px, 360px);
  justify-content: center;
}

.phone-shot {
  position: relative;
  min-height: 620px;
  padding: 22px;
  color: var(--text-dark);
  background: #e8ebdc;
  border: 10px solid #101419;
  border-radius: 30px;
}

.secondary-shot {
  margin-top: 42px;
}

.phone-shot::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 86px;
  height: 5px;
  transform: translateX(-50%);
  background: #303744;
  border-radius: 999px;
}

.phone-status {
  height: 14px;
}

.app-top,
.amount-row,
.choice-row,
.actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-top {
  justify-content: space-between;
  margin-bottom: 22px;
}

.app-top span {
  font-weight: 900;
}

.app-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.app-title img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 8px 16px rgba(23, 32, 38, 0.16);
}

.app-top button,
.actions button,
.app-button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.app-top button,
.actions button {
  padding: 8px 10px;
  color: var(--white);
  background: #0f766e;
}

.phone-shot h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.phone-shot label {
  display: block;
  margin: 12px 0 6px;
  color: #5b695c;
  font-size: 0.82rem;
  font-weight: 800;
}

.input-line,
.input-area {
  padding: 13px 14px;
  background: #f8f7ee;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
}

.input-line.small {
  margin-top: 10px;
  color: #6a746a;
}

.input-area {
  min-height: 86px;
  color: #3c4742;
}

.choice-row {
  margin: 14px 0;
}

.choice-row span {
  flex: 1;
  padding: 10px;
  text-align: center;
  background: #f8f7ee;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.choice-row .selected {
  color: var(--white);
  background: #0f766e;
}

.app-button {
  width: 100%;
  min-height: 46px;
  color: var(--white);
  background: #0f766e;
}

.amount-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}

.amount-row div {
  padding: 14px;
  background: #f8f7ee;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
}

.amount-row small,
.amount-row strong {
  display: block;
}

.amount-row small {
  color: #5b695c;
  font-weight: 800;
}

.amount-row strong {
  margin-top: 4px;
  font-size: 1.18rem;
}

.task-card-mini {
  margin-top: 12px;
  padding: 16px;
  background: #eef1e6;
  border-left: 5px solid #0f766e;
  border-radius: 8px;
}

.task-card-mini strong,
.task-card-mini span,
.task-card-mini em {
  display: block;
}

.task-card-mini span,
.task-card-mini em {
  margin-top: 6px;
  color: #5b695c;
  font-style: normal;
}

.task-card-mini.done {
  border-left-color: var(--amber);
}

.task-card-mini.active-task {
  border-left-color: var(--blue);
}

.actions {
  margin-top: 12px;
}

.actions button {
  flex: 1;
}

.clean-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.pros-cons div,
.launch-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pros-cons h3 {
  color: var(--amber);
}

.pros-cons p,
.launch-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  margin-bottom: 34px;
}

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

.timeline-step {
  min-height: 280px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(33, 30, 35, 0.12);
}

.flow-band .timeline-step h3 {
  color: var(--ink);
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 8px;
  font-weight: 900;
}

.timeline-step p {
  color: rgba(255, 255, 255, 0.68);
}

.launch-card {
  color: var(--white);
}

.launch-card h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.launch-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
}

.launch-logo img {
  width: 64px;
}

.launch-card .final-actions {
  margin-top: 26px;
}

.deck-controls {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.progress-track {
  position: fixed;
  z-index: 22;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  transition: width 220ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-grid,
  .split-layout,
  .showcase-layout,
  .showcase-layout.reverse,
  .final-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .presentation-language {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-height: 40px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .section-band {
    min-height: auto;
    padding: 220px 18px 64px;
    scroll-margin-top: 250px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 28px;
  }

  .center-body {
    gap: 12px;
    padding: 14px;
  }

  .brand-showcase .center-body {
    gap: 12px;
  }

  .brand-lockup {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .brand-lockup strong {
    font-size: 1.45rem;
    overflow-wrap: anywhere;
  }

  .brand-lockup span {
    margin-top: 4px;
    font-size: 0.84rem;
  }

  .promise-card {
    padding: 16px;
  }

  .promise-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .promise-card p {
    margin-bottom: 10px;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead,
  .section-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .center-grid,
  .status-strip,
  .bullet-grid,
  .phone-stage,
  .pros-cons,
  .timeline,
  .metrics {
    grid-template-columns: 1fr;
  }

  .phone-shot {
    min-height: auto;
    border-width: 8px;
    border-radius: 24px;
  }

  .secondary-shot {
    margin-top: 0;
  }

  .deck-controls {
    right: 14px;
    bottom: 14px;
  }

  .icon-action {
    width: 44px;
    min-height: 44px;
  }

  .final-actions {
    align-items: stretch;
  }

  .final-actions a {
    width: 100%;
  }

  .inline-signup {
    padding: 16px;
    scroll-margin-top: 250px;
  }

  .inline-signup-form {
    grid-template-columns: 1fr;
  }

  .app-downloads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .app-download-card {
    padding: 10px 8px;
  }

  .download-qr {
    width: min(100%, 112px);
    height: auto;
  }

  .app-download-card .secondary-action {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.76rem;
  }
}
