:root {
  --ink: #052b5a;
  --ink-deep: #061827;
  --teal: #009e8e;
  --teal-dark: #007f76;
  --orange: #ff6d00;
  --paper: #f7fbfa;
  --surface: #ffffff;
  --line: #d9e5e3;
  --muted: #61707d;
  --shadow: 0 24px 70px rgba(5, 43, 90, 0.13);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
}

section {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  gap: 1.4rem;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(217, 229, 227, 0.78);
  background: rgba(247, 251, 250, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 1.55rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 820;
  text-decoration: none;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 32px rgba(255, 109, 0, 0.2);
  white-space: nowrap;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta svg,
.button svg {
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.mobile-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 19;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 251, 250, 0.98);
  box-shadow: var(--shadow);
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--ink-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 38, 0.9) 0%, rgba(5, 22, 38, 0.66) 36%, rgba(5, 22, 38, 0.08) 74%),
    linear-gradient(180deg, rgba(5, 22, 38, 0.16), rgba(5, 22, 38, 0.5));
}

.hero-content {
  position: relative;
  width: min(760px, 92vw);
  padding: 5.8rem clamp(1rem, 4vw, 4rem);
  color: white;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 860;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #87fff0;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: 7.2rem;
  line-height: 0.9;
  font-weight: 920;
}

.hero-brand-title {
  max-width: min(560px, 88vw);
  width: fit-content;
  font-size: 1rem;
  line-height: 1;
}

.hero-logo-plate {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-logo {
  width: min(520px, 82vw);
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.28))
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.56));
}

h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 3.08rem;
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-line {
  max-width: 22ch;
  margin: 1rem 0 0;
  color: #ffb36f;
  font-size: 2.05rem;
  line-height: 1.08;
  font-weight: 860;
}

.hero-copy {
  max-width: 39rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.button.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 16px 38px rgba(255, 109, 0, 0.25);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
  color: white;
}

.button.outline {
  border-color: color-mix(in srgb, var(--teal) 54%, var(--line));
  background: white;
  color: var(--teal-dark);
}

.signal-strip {
  width: min(1180px, calc(100vw - 2rem));
  margin: 1.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  min-height: 7.4rem;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.signal-strip span {
  color: var(--muted);
  font-weight: 680;
}

.section,
.showcase {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.intro-grid,
.feature-section,
.pricing-section,
.demos-section,
.trust-section,
.faq-section,
.problem-section {
  display: grid;
  gap: 3rem;
}

.section-kicker {
  max-width: 760px;
}

.section-kicker > p:last-child,
.about-copy p:last-child,
.showcase-copy p {
  color: var(--muted);
}

.section-kicker > p:last-child {
  max-width: 46rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
}

.problem-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.problem-card,
.trust-card {
  min-height: 200px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(5, 43, 90, 0.05);
}

.problem-card span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-card p,
.trust-card p,
.feature p,
.step p,
.demo-card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.step {
  position: relative;
  min-height: 245px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step-number {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.8rem;
}

.step svg {
  width: 2.15rem;
  height: 2.15rem;
  margin: 1.75rem 0 1rem;
  color: var(--teal);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.demo-card {
  min-width: 0;
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: white;
  box-shadow: 0 16px 45px rgba(5, 43, 90, 0.06);
}

.demo-card span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.demo-card a {
  color: var(--orange);
  font-weight: 850;
  text-decoration: none;
}

.demo-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.42;
  border-radius: 8px;
  background: #eef7f5;
  border: 1px solid var(--line);
}

.demo-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}

.section-note,
.micro-note {
  max-width: 58rem;
  margin: 0;
  color: var(--muted);
  font-weight: 680;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  min-height: 174px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.feature svg {
  width: 2rem;
  height: 2rem;
  color: var(--teal);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 5rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-copy p {
  max-width: 34rem;
  font-size: 1.08rem;
}

.browser-preview {
  overflow: hidden;
  border: 1px solid rgba(5, 43, 90, 0.14);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: #f7faf9;
}

.browser-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--line);
}

.browser-bar span:first-child { background: var(--orange); }
.browser-bar span:nth-child(2) { background: #ffd36f; }
.browser-bar span:nth-child(3) { background: var(--teal); }

.preview-hero {
  min-height: 330px;
  display: grid;
  align-items: end;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(0, 158, 142, 0.42), rgba(5, 43, 90, 0.9)),
    url("assets/demo-kuafor-preview.png") center top / cover;
  color: white;
}

.preview-hero span {
  display: block;
  margin-bottom: 0.35rem;
  color: #95fff4;
  font-weight: 820;
}

.preview-hero strong {
  display: block;
  max-width: 15ch;
  font-size: 2.7rem;
  line-height: 1;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  padding: 1rem;
}

.preview-grid span {
  --preview-image: url("assets/demo-kuafor-preview.png");
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  min-height: 6.2rem;
  display: grid;
  place-items: end start;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  outline: 1px solid rgba(5, 43, 90, 0.1);
  padding: 0.85rem;
  background: var(--ink);
  color: white;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 1px 12px rgba(0, 20, 40, 0.5);
}

.preview-grid .wash {
  --preview-image: url("assets/demo-oto-yikama-preview.png");
}

.preview-grid .cafe {
  --preview-image: url("assets/demo-kafe-preview.png");
}

.preview-grid span::before,
.preview-grid span::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.preview-grid span::before {
  background: var(--preview-image) center top / cover;
  transform: scale(1.02);
}

.preview-grid span::after {
  background: linear-gradient(180deg, rgba(5, 43, 90, 0.06), rgba(5, 43, 90, 0.86));
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-card {
  min-height: 190px;
  background: linear-gradient(180deg, #ffffff, #f9fcfb);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 5rem;
  align-items: end;
}

.about-copy p:last-child {
  max-width: 47rem;
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  border-top: 1px solid var(--line);
}

.about-point {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5.5rem;
  border-bottom: 1px solid var(--line);
}

.about-point strong {
  color: var(--teal-dark);
  font-size: 1.3rem;
  line-height: 1.05;
}

.about-point span {
  color: var(--muted);
  font-weight: 680;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 1.15rem;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  box-shadow: 0 18px 48px rgba(5, 43, 90, 0.07);
}

.plan.featured {
  border-color: rgba(255, 109, 0, 0.55);
  box-shadow: 0 28px 80px rgba(255, 109, 0, 0.16), 0 16px 48px rgba(5, 43, 90, 0.08);
  transform: translateY(-0.35rem);
}

.plan p {
  margin: 0;
}

.plan-top {
  display: grid;
  gap: 0.55rem;
  min-height: 6.2rem;
}

.plan-name {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.plan-desc {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.price-block {
  display: grid;
  gap: 0.28rem;
  padding-top: 0.35rem;
}

.price-label {
  width: fit-content;
  border: 1px solid rgba(0, 158, 142, 0.2);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: #f0fbf8;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 880;
  text-transform: uppercase;
}

.setup-price {
  display: block;
  color: var(--ink-deep);
  font-size: 3.35rem;
  line-height: 0.98;
  font-weight: 920;
}

.monthly-line {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 800;
}

.badge {
  position: absolute;
  top: -0.86rem;
  left: 50%;
  transform: translateX(-50%);
  min-height: 1.72rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 0.78rem;
  background: var(--orange);
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
}

.payment-divider {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.payment-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}

.payment-divider span {
  position: relative;
  padding: 0 0.7rem;
  background: #fbfdfc;
}

.annual-box {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(0, 158, 142, 0.22);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  background: #f3fbf9;
}

.featured .annual-box {
  border-color: rgba(255, 109, 0, 0.28);
  border-left-color: var(--orange);
  background: #fff8f2;
}

.annual-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: space-between;
}

.annual-heading span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.annual-heading small {
  display: inline-flex;
  min-height: 1.5rem;
  align-items: center;
  border-radius: 999px;
  padding: 0 0.55rem;
  background: rgba(0, 158, 142, 0.12);
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 870;
}

.featured .annual-heading small {
  background: rgba(255, 109, 0, 0.12);
  color: #bf4d00;
}

.annual-box strong {
  color: var(--ink-deep);
  font-size: 2rem;
  line-height: 1;
  font-weight: 910;
}

.annual-box p {
  position: relative;
  padding-left: 1rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
}

.annual-box p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal);
}

.featured .annual-box p::before {
  background: var(--orange);
}

.plan ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan li {
  display: flex;
  gap: 0.55rem;
  color: var(--ink-deep);
  font-size: 0.95rem;
  font-weight: 640;
}

.plan li::before {
  content: "";
  flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--teal);
}

.plan .button {
  align-self: end;
  margin-top: auto;
  min-height: 3rem;
}

.pricing-notes {
  display: grid;
  gap: 0.75rem;
}

.pricing-note {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 0.6rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 720;
}

.pricing-note-small {
  background: rgba(0, 158, 142, 0.06);
}

.pricing-note svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
}

.faq-list p {
  max-width: 58rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: 5rem;
  align-items: start;
  padding-bottom: 7rem;
}

.contact-copy p:not(.eyebrow) {
  max-width: 33rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-methods a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 790;
  text-decoration: none;
}

.contact-methods svg {
  color: var(--teal);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfefd;
  color: var(--ink-deep);
  font: inherit;
  padding: 0.82rem 0.9rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 158, 142, 0.16);
  border-color: var(--teal);
}

.checkbox-row {
  grid-template-columns: auto 1fr !important;
  gap: 0.7rem !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 650 !important;
}

.checkbox-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.16rem;
}

.form-status {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 780;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) repeat(4, minmax(150px, 1fr));
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
}

.site-footer nav,
.footer-brand,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-dark);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .signal-strip,
  .steps,
  .feature-list,
  .pricing-grid,
  .demo-grid,
  .trust-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list {
    border-left: 0;
  }

  .feature {
    border-left: 1px solid var(--line);
  }

  .plan.featured {
    transform: none;
  }

  .showcase,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .browser-preview,
  .contact-section {
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-padding-top: 82px;
  }

  section {
    scroll-margin-top: 82px;
  }

  .site-header {
    padding: 0 1rem;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: 100%;
    padding: 2.6rem 1rem;
  }

  h1 {
    max-width: 100%;
    font-size: 3.45rem;
    line-height: 0.94;
  }

  .hero-brand-title {
    max-width: 100%;
  }

  .hero-logo-plate {
    padding: 0;
  }

  .hero-logo {
    width: min(330px, 82vw);
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .hero-line {
    max-width: 12ch;
    font-size: 1.55rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-strip,
  .steps,
  .feature-list,
  .pricing-grid,
  .preview-grid,
  .contact-form,
  .demo-grid,
  .trust-grid,
  .problem-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section,
  .showcase {
    width: min(100% - 2rem, 1180px);
    padding: 4rem 0;
  }

  .signal-strip div,
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child,
  .step:last-child {
    border-bottom: 0;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .preview-hero {
    min-height: 260px;
  }

  .preview-hero strong {
    font-size: 2rem;
  }

  .about-point {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem 0;
  }

  .pricing-note {
    width: 100%;
  }

  .plan {
    padding: 1.15rem;
  }

  .plan-top {
    min-height: 0;
  }

  .setup-price {
    font-size: 2.75rem;
  }

  .annual-box {
    padding: 0.95rem;
  }

  .contact-form {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
