:root {
  --ink: #141a31;
  --muted: #63708a;
  --line: #d8dfec;
  --paper: #f6f8fc;
  --surface: #ffffff;
  --mist: #eaf1fb;
  --brand: #3f67ab;
  --brand-dark: #26314f;
  --brand-soft: #68a4e5;
  --gold: #d8a84b;
  --shadow-soft: 0 18px 48px rgba(38, 49, 79, 0.12);
  --shadow-panel: 0 18px 36px rgba(38, 49, 79, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-family:
    "Ubuntu", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 6%, rgba(104, 164, 229, 0.24), transparent 28rem),
    linear-gradient(180deg, rgba(234, 241, 251, 0.82), rgba(246, 248, 252, 0) 36rem),
    var(--paper);
  overflow-x: hidden;
}

body,
button,
input {
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(38, 49, 79, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header--static {
  position: sticky;
  left: auto;
  top: 18px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 18px;
  transform: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 246px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 238px;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.main-nav a:hover {
  background: rgba(63, 103, 171, 0.1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta {
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 0.9rem;
}

.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(63, 103, 171, 0.25);
}

.button.secondary {
  border-color: rgba(63, 103, 171, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
}

.button.light {
  border-color: rgba(38, 49, 79, 0.1);
  background: #ffffff;
  color: var(--brand-dark);
}

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

.button:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.site-footer a:focus-visible,
.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  outline: 3px solid rgba(63, 103, 171, 0.34);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: 36px;
  align-items: center;
  min-height: 650px;
  padding: 122px max(24px, calc((100vw - 1180px) / 2)) 38px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(104, 164, 229, 0.22), transparent 24rem),
    radial-gradient(circle at 22% 22%, rgba(63, 103, 171, 0.13), transparent 28rem);
  pointer-events: none;
}

.hero-content,
.hero-preview {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: clamp(3.2rem, 6.8vw, 5.7rem);
  font-weight: 700;
  line-height: 0.95;
}

h2 {
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.75vw, 1.34rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-preview {
  display: grid;
  gap: 18px;
}

.preview-card {
  border: 1px solid rgba(63, 103, 171, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.preview-card:hover,
.feature-card:hover,
.steps-grid article:hover,
.device-preview:hover {
  border-color: rgba(63, 103, 171, 0.22);
  box-shadow: 0 22px 56px rgba(38, 49, 79, 0.14);
}

.public-card {
  padding: 20px;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.preview-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

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

.preview-brand strong,
.preview-product strong,
.preview-product span {
  color: var(--brand-dark);
}

.preview-brand span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.preview-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.preview-tabs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.preview-tabs .active {
  background: var(--brand-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.preview-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 86px;
  gap: 14px;
  align-items: start;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(63, 103, 171, 0.1);
  border-radius: 20px;
  background: #ffffff;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.preview-product.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.preview-photo {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
  justify-self: end;
}

.preview-product strong,
.preview-product span {
  font-weight: 700;
}

.preview-product p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.preview-product small {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading.split {
  align-items: center;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.section-heading p:not(.eyebrow),
.showcase-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.problem-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

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

.problem-grid article,
.faq-list details,
.proof-panel {
  border: 1px solid rgba(216, 223, 236, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-panel);
}

.problem-grid article {
  padding: 22px;
}

.problem-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(63, 103, 171, 0.1);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.problem-grid h3,
.faq-list summary {
  color: var(--brand-dark);
}

.problem-grid p,
.faq-list p,
.proof-panel p {
  color: var(--muted);
}

.resources-section {
  padding-top: 18px;
}

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

.resource-grid a {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(63, 103, 171, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.82)),
    var(--white);
  box-shadow: 0 18px 42px rgba(34, 45, 78, 0.08);
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.resource-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 103, 171, 0.3);
  box-shadow: 0 24px 52px rgba(34, 45, 78, 0.12);
}

.resource-grid span {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(17, 142, 126, 0.1);
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-grid h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.resource-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
  line-height: 1.6;
}

.feature-card,
.steps-grid article,
.device-preview,
.contact-panel {
  border: 1px solid rgba(38, 49, 79, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-panel);
}

.feature-card,
.steps-grid article,
.device-preview {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.soon {
  padding-top: 18px;
}

.soon-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 0.82fr);
  gap: 30px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(63, 103, 171, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 14%, rgba(216, 168, 75, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 241, 251, 0.82));
  box-shadow: var(--shadow-panel);
}

.soon-panel h2 {
  margin-bottom: 0;
}

.soon-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.soon-visual {
  min-width: 0;
}

.order-card {
  width: min(420px, 100%);
  padding: 18px;
  border: 1px solid rgba(63, 103, 171, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(38, 49, 79, 0.12);
}

.order-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(216, 168, 75, 0.16);
  color: #9a6a1f;
  font-size: 0.78rem;
  font-weight: 700;
}

.order-card > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 1.16rem;
}

.order-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(63, 103, 171, 0.1);
}

.order-row img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.order-row b,
.order-row small,
.order-row span {
  display: block;
}

.order-row b {
  color: var(--brand-dark);
  font-size: 0.9rem;
}

.order-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.order-row span {
  color: var(--brand-dark);
  font-weight: 700;
}

.order-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(63, 103, 171, 0.14);
  color: var(--brand-dark);
}

.order-total span,
.order-total strong {
  font-weight: 700;
}

.feature-card {
  padding: 20px;
}

.feature-card p,
.steps-grid p,
.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
}

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

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-weight: 700;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(63, 103, 171, 0.12);
}

.device-preview {
  padding: 24px;
  background:
    radial-gradient(circle at 78% 8%, rgba(104, 164, 229, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #eaf1fb);
}

.phone-shell {
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 16px;
  border: 10px solid var(--brand-dark);
  border-radius: 34px;
  background: #f7faff;
  box-shadow: 0 24px 54px rgba(38, 49, 79, 0.22);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.phone-top span {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: #d8dfec;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.menu-tabs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #eaf1fb;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.menu-tabs .active {
  background: var(--brand);
  color: #ffffff;
}

.menu-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(38, 49, 79, 0.08);
  border-radius: 18px;
  background: #ffffff;
}

.menu-thumb {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  object-fit: cover;
}

.menu-item.featured {
  border-color: rgba(63, 103, 171, 0.22);
  box-shadow: 0 12px 24px rgba(63, 103, 171, 0.12);
}

.menu-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.menu-item span {
  color: var(--brand-dark);
  font-weight: 700;
}

.menu-item small {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
}

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

.steps-grid article {
  padding: 22px;
}

.audience {
  padding-top: 42px;
}

.audience .section-heading {
  display: block;
  max-width: 760px;
  margin-bottom: 24px;
}

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

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #ffffff;
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.audience-grid div {
  min-height: 64px;
  padding: 16px;
  border: 1px solid rgba(38, 49, 79, 0.08);
  border-radius: 20px;
  background: #ffffff;
  color: #344054;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(38, 49, 79, 0.06);
}

.contact {
  padding-bottom: 40px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 90% 12%, rgba(104, 164, 229, 0.16), transparent 34%),
    #ffffff;
}

.contact-panel h2 {
  margin-bottom: 12px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(63, 103, 171, 0.12);
  border-radius: 22px;
  background: rgba(246, 248, 252, 0.76);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.lead-form .legal-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.lead-form .legal-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.05rem;
}

.legal-note {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.legal-note a {
  color: var(--brand);
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(63, 103, 171, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: none;
}

.lead-form textarea {
  min-height: 86px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(63, 103, 171, 0.46);
  box-shadow: 0 0 0 4px rgba(63, 103, 171, 0.1);
}

.lead-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.seo-page {
  padding-top: 32px;
}

.seo-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 110px) 0 36px;
}

.seo-hero h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.seo-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  line-height: 1.58;
}

.contact--standalone {
  padding-top: 78px;
}

.contact-copy h1 {
  max-width: 760px;
  color: var(--brand-dark);
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  line-height: 1.02;
}

.site-footer span:first-child {
  color: var(--brand-dark);
  font-weight: 700;
}

.site-footer a {
  color: var(--brand);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--brand-dark);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js-ready .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 28px;
  }

  .site-header--static {
    margin-top: 10px;
  }

  .brand {
    min-width: 238px;
  }

  .brand-logo {
    max-width: 232px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 108px;
  }

  .hero-preview {
    max-width: 560px;
  }

  .section-heading,
  .product-showcase,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .problem-grid,
  .resource-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 84% 0%, rgba(104, 164, 229, 0.22), transparent 18rem),
      linear-gradient(180deg, rgba(234, 241, 251, 0.88), rgba(246, 248, 252, 0) 28rem),
      var(--paper);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 18px);
    min-height: 62px;
    padding: 8px 9px 8px 11px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    max-width: min(44vw, 172px);
    max-height: 46px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 11px;
    font-size: 0.76rem;
  }

  .hero {
    padding: 92px 14px 26px;
    gap: 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.55rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.42rem);
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 1.02rem;
  }

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

  .hero-preview {
    gap: 12px;
  }

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

  .button {
    width: 100%;
  }

  .public-card,
  .device-preview,
  .contact-panel {
    padding: 13px;
  }

  .preview-card {
    border-radius: 22px;
  }

  .preview-brand {
    margin-bottom: 14px;
  }

  .preview-brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .preview-tabs {
    margin-bottom: 10px;
  }

  .preview-product {
    grid-template-columns: minmax(0, 1fr) auto 78px;
    padding: 13px;
  }

  .preview-photo {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }

  .preview-product p {
    margin-top: 4px;
    line-height: 1.35;
  }

  .preview-product small {
    margin-top: 7px;
  }

  .preview-product + .preview-product {
    display: none;
  }

  .preview-product span {
    justify-self: start;
  }

  .section {
    width: calc(100% - 24px);
    padding: 40px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 20px;
  }

  .soon {
    padding-top: 10px;
  }

  .soon-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 22px;
  }

  .order-card {
    padding: 14px;
    border-radius: 20px;
  }

  .feature-card,
  .problem-grid article,
  .resource-grid a,
  .faq-list details,
  .steps-grid article,
  .device-preview,
  .contact-panel {
    border-radius: 22px;
  }

  .proof-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .phone-shell {
    border-width: 8px;
    border-radius: 30px;
  }

  .menu-item {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }

  .menu-thumb {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .audience-grid div {
    min-height: 54px;
    padding: 12px;
  }

  .contact {
    padding-bottom: 30px;
  }

  .contact-shortcuts {
    gap: 10px;
  }

  .contact-shortcuts .button {
    flex: 1 1 128px;
  }

  .lead-form {
    padding: 13px;
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    width: calc(100% - 24px);
  }

  .seo-page {
    padding-top: 12px;
  }

  .seo-hero {
    width: calc(100% - 24px);
    padding: 44px 0 18px;
  }

  .contact--standalone {
    padding-top: 38px;
  }
}
