:root {
  --bg: #eff3f6;
  --bg-soft: #f7f9fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-solid: #ffffff;
  --panel-dark: #223248;
  --ink: #1f2e3d;
  --muted: #66788c;
  --line: rgba(31, 46, 61, 0.1);
  --primary: #6bd0b0;
  --primary-strong: #349d82;
  --navy: #31465d;
  --navy-deep: #1f2e3d;
  --accent-soft: rgba(107, 208, 176, 0.14);
  --shadow: 0 22px 60px rgba(23, 37, 53, 0.1);
  --shadow-soft: 0 14px 36px rgba(23, 37, 53, 0.07);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(107, 208, 176, 0.16), transparent 18%),
    radial-gradient(circle at 86% 16%, rgba(49, 70, 93, 0.1), transparent 20%),
    linear-gradient(180deg, #f8fbfc 0%, #eef3f6 52%, #f7f9fb 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-space {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.72));
}

.section-dark {
  background: linear-gradient(180deg, rgba(36, 54, 79, 0.98), rgba(28, 44, 64, 0.98));
  color: #ffffff;
}

.support-assistant-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(107, 208, 176, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.support-assistant-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.support-assistant-form {
  display: grid;
  gap: 10px;
}

.support-assistant-form label {
  font-weight: 800;
  color: var(--navy);
}

.support-assistant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.support-assistant-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font: inherit;
  outline: none;
}

.support-assistant-row input:focus {
  border-color: rgba(52, 157, 130, 0.54);
  box-shadow: 0 0 0 4px rgba(84, 195, 161, 0.14);
}

.support-assistant-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-assistant-tools button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(31, 46, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.support-assistant-output {
  grid-column: 2;
  padding: 18px;
  border: 1px solid rgba(84, 195, 161, 0.24);
  border-radius: 22px;
  background: rgba(232, 249, 243, 0.72);
  color: #27445c;
  line-height: 1.7;
  font-weight: 700;
}

.assistant-thread {
  display: grid;
  gap: 12px;
}

.assistant-empty {
  color: var(--muted);
  font-weight: 700;
}

.assistant-turn {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 46, 61, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.assistant-turn-user {
  background: rgba(255, 255, 255, 0.9);
}

.assistant-turn-assistant {
  background: rgba(232, 249, 243, 0.78);
}

.assistant-turn-local {
  background: rgba(255, 247, 224, 0.82);
}

.assistant-turn strong {
  color: var(--navy-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.assistant-turn p {
  margin: 0;
  color: #27445c;
  line-height: 1.65;
  white-space: pre-wrap;
}

.assistant-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.ad-rail {
  position: fixed;
  top: 52%;
  z-index: 18;
  transform: translateY(-50%);
  pointer-events: none;
}

.ad-rail-left {
  left: max(12px, calc((100vw - var(--container)) / 2 - 116px));
}

.ad-rail-right {
  right: max(12px, calc((100vw - var(--container)) / 2 - 116px));
}

.ad-rail-card {
  pointer-events: auto;
  display: grid;
  align-content: center;
  gap: 8px;
  width: 84px;
  min-height: 360px;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #ffffff;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background:
    linear-gradient(180deg, rgba(31, 46, 61, 0.94), rgba(48, 128, 118, 0.9)),
    radial-gradient(circle at 50% 8%, rgba(107, 208, 176, 0.32), transparent 34%);
  box-shadow: 0 24px 50px rgba(23, 37, 53, 0.16);
}

.ad-rail-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-rail-card strong {
  font-size: 1rem;
}

.ad-rail-card small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.quick-assistant {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 35;
}

.quick-assistant-toggle {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #24bf66, #1d9f59);
  box-shadow: 0 18px 38px rgba(22, 141, 83, 0.28);
  cursor: pointer;
}

.quick-assistant-toggle span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-weight: 900;
}

.quick-assistant-panel {
  position: absolute;
  left: 0;
  bottom: 72px;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100vw - 40px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-assistant-panel strong {
  color: var(--navy);
}

.quick-assistant-panel a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: rgba(245, 249, 252, 0.9);
  font-weight: 800;
}

.top-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(12px);
}

.top-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.top-strip-badges,
.countdown-inline {
  display: flex;
  align-items: center;
}

.top-strip-badges {
  flex-wrap: wrap;
  gap: 10px 24px;
}

.top-strip-campaign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid rgba(52, 157, 130, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.top-strip-campaign strong,
.price-campaign-tag {
  display: block;
}

.top-strip-campaign p,
.price-countdown p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.countdown-inline {
  gap: 8px;
}

.countdown-inline span {
  display: grid;
  place-items: center;
  min-width: 58px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(48, 72, 98, 0.08);
  text-align: center;
}

.countdown-inline b {
  font-size: 1rem;
  color: var(--navy-deep);
  line-height: 1;
}

.countdown-inline small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
}

.header-inner,
.header-social-row,
.hero-v2-inner,
.hero-actions,
.hero-facts,
.trust-bar-inner,
.auth-teaser,
.pricing-layout,
.payment-architecture,
.dashboard-shell,
.dashboard-top,
.dashboard-cards,
.footer-inner,
.header-actions,
.site-nav {
  display: flex;
}

.header-inner {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.header-social-row {
  justify-content: flex-end;
  margin-top: 10px;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav,
.header-actions,
.hero-actions {
  align-items: center;
  gap: 12px;
}

.header-actions .button {
  min-width: 166px;
  white-space: nowrap;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(31, 46, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(23, 37, 53, 0.1);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 46, 61, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(23, 37, 53, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease, background-color 220ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  color: var(--navy-deep);
  background: linear-gradient(135deg, rgba(122, 218, 189, 0.28), rgba(255, 255, 255, 0.96));
  box-shadow: 0 14px 28px rgba(23, 37, 53, 0.12);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link-github svg {
  fill: currentColor;
  stroke: none;
}

.social-link-x svg {
  stroke-width: 2.2;
}

.site-nav {
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a,
.nav-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.site-nav a::after,
.nav-link-inline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-link-inline:hover::after,
.nav-link-inline:focus-visible::after {
  transform: scaleX(1);
}

.site-nav svg,
.nav-link-inline svg,
.button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button,
.preview-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #7adabd, #4bb293);
  color: #183246;
  box-shadow: 0 16px 30px rgba(52, 157, 130, 0.2);
}

.button-google {
  border-color: rgba(48, 72, 98, 0.12);
  background: #ffffff;
  color: #1d2d40;
  box-shadow: 0 14px 28px rgba(29, 45, 64, 0.08);
}

.button-google::before {
  content: "G";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853 42%, #fbbc05 68%, #ea4335);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.button-ghost,
.preview-pill {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.88;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.54), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(102, 212, 178, 0.08), transparent 26%);
}

.hero-particle-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(102, 212, 178, 0.16), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(48, 72, 98, 0.14), transparent 24%);
  pointer-events: none;
}

.hero-v2-inner {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 52px;
  min-height: auto;
}

.hero-copy,
.hero-scene,
.auth-teaser-copy,
.auth-teaser-visual,
.dashboard-preview-copy,
.dashboard-preview-visual {
  flex: 1 1 0;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-copy h2,
.dashboard-preview-copy h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 5.4vw, 5.3rem);
}

.section-copy h2,
.dashboard-preview-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.15rem, 3.5vw, 3.5rem);
}

.hero-text,
.section-copy p,
.feature-card-v2 p,
.auth-teaser-copy p,
.payment-steps p,
.dashboard-preview-copy p,
.footer-inner p,
.scene-update-card small,
.scene-summary-card small,
.scene-auth-card label,
.auth-preview-side small {
  color: var(--muted);
  line-height: 1.75;
}

.section-dark .section-copy p,
.section-dark .section-copy h2,
.section-dark .payment-steps strong,
.section-dark .payment-steps p {
  color: #ffffff;
}

.hero-text {
  max-width: 57ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.story-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 45, 64, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.story-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ffffff;
}

.story-image-card figcaption {
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(29, 45, 64, 0.08);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.hero-visual-card {
  background: #ffffff;
}

.process-visual-card {
  box-shadow: var(--shadow-soft);
}

.hero-difference-list,
.roadmap-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-difference-list {
  margin-top: 22px;
}

.hero-difference-list span,
.roadmap-status-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(84, 195, 161, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.roadmap-status-strip {
  margin: 24px 0 28px;
}

.roadmap-status-strip span {
  border-color: rgba(48, 72, 98, 0.12);
  background: rgba(239, 249, 245, 0.9);
  color: #17624f;
}

.hero-facts {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-facts article,
.scene-browser,
.feature-card-v2,
.auth-preview,
.price-panel,
.payment-steps article,
.dashboard-shell,
.sql-callout {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-facts article {
  flex: 1 1 180px;
  padding: 18px 18px 16px;
  border-radius: 20px;
}

.hero-facts strong,
.feature-card-v2 strong,
.payment-steps strong,
.dashboard-cards strong,
.scene-summary-card strong,
.scene-update-card strong,
.auth-preview-side strong {
  display: block;
  margin-bottom: 6px;
}

.inline-icon,
.feature-card-head,
.price-panel-head {
  display: inline-flex;
  align-items: center;
}

.inline-icon {
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  border-radius: 999px;
  background: rgba(84, 195, 161, 0.14);
  color: #1d6b58;
}

.inline-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-icon-inverted {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.scene-shell {
  position: relative;
  padding: 58px 0 38px 26px;
}

.scene-shell::before {
  content: "";
  position: absolute;
  inset: 4% 2% auto auto;
  width: 190px;
  height: 190px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(102, 212, 178, 0.2), rgba(102, 212, 178, 0));
  transform: rotate(14deg);
}

.scene-shell::after {
  content: "";
  position: absolute;
  inset: auto auto 0 -6%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(48, 72, 98, 0.12);
}

.scene-browser {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.scene-browser-top,
.scene-browser-body,
.auth-preview-header,
.auth-preview-body,
.dashboard-table .table-row,
.dashboard-cards {
  display: flex;
}

.scene-browser-top {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 248, 252, 0.94);
}

.window-dots {
  display: inline-flex;
  gap: 6px;
}

.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(48, 72, 98, 0.28);
}

.scene-badge,
.price-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-browser-body {
  gap: 16px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(235, 241, 246, 0.92));
}

.scene-auth-card,
.scene-summary-card,
.scene-update-card,
.auth-preview-form,
.auth-preview-side,
.dashboard-cards article {
  flex: 1 1 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.scene-auth-card {
  max-width: 250px;
}

.mini-tab {
  display: inline-flex;
  margin-right: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(48, 72, 98, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.mini-tab.active {
  background: rgba(102, 212, 178, 0.22);
  color: var(--navy-deep);
}

.mini-form {
  display: grid;
  gap: 10px;
}

.mini-input,
.preview-action {
  min-height: 44px;
  border-radius: 14px;
}

.mini-input {
  background: linear-gradient(180deg, rgba(233, 239, 244, 0.9), rgba(245, 248, 251, 0.95));
  border: 1px solid rgba(48, 72, 98, 0.08);
}

.preview-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  background: linear-gradient(135deg, #77e7c4, #54c3a1);
  color: #173246;
  font-weight: 800;
}

.summary-lines {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.summary-lines div {
  height: 10px;
  border-radius: 999px;
  background: rgba(48, 72, 98, 0.08);
}

.summary-lines div:nth-child(1) {
  width: 92%;
}

.summary-lines div:nth-child(2) {
  width: 74%;
}

.summary-lines div:nth-child(3) {
  width: 56%;
}

.trust-bar {
  padding-bottom: 18px;
}

.trust-bar-inner,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-bar-inner span,
.check-list li,
.auth-preview-side li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

.section-copy {
  max-width: 60ch;
  margin-bottom: 34px;
}

.section-copy p {
  margin: 18px 0 0;
}

.feature-grid-v2,
.payment-steps,
.dashboard-preview {
  display: grid;
  gap: 18px;
}

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

.feature-card-v2 {
  padding: 24px;
  border-radius: 26px;
}

.feature-card-head {
  gap: 12px;
  margin-bottom: 10px;
}

.feature-card-head strong {
  margin-bottom: 0;
}

.visual-key-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.visual-key-list li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(84, 195, 161, 0.18);
  border-radius: 14px;
  background: rgba(102, 212, 178, 0.1);
  color: #1f5e56;
  font-size: 0.88rem;
  font-weight: 800;
}

.auth-teaser {
  align-items: center;
  gap: 36px;
}

.check-list,
.auth-preview-side ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.simple-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.auth-preview {
  overflow: hidden;
  border-radius: 34px;
}

.auth-preview-header {
  gap: 10px;
  padding: 18px 18px 0;
}

.preview-pill.active {
  background: linear-gradient(135deg, #77e7c4, #54c3a1);
  color: #173246;
}

.auth-preview-body {
  gap: 16px;
  padding: 18px;
}

.auth-preview-form {
  display: grid;
  gap: 10px;
}

.auth-preview-form span {
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-preview-form div {
  min-height: 46px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(234, 239, 244, 0.92), rgba(246, 249, 252, 0.94));
  border: 1px solid rgba(48, 72, 98, 0.08);
}

.auth-preview-side {
  background: linear-gradient(180deg, rgba(39, 58, 82, 0.96), rgba(29, 45, 64, 0.96));
}

.auth-preview-side strong,
.auth-preview-side small,
.auth-preview-side li {
  color: #ffffff;
}

.auth-preview-side li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
}

.pricing-layout {
  align-items: stretch;
  gap: 22px;
}

.pricing-layout-v2 {
  justify-content: stretch;
}

.price-panel {
  flex: 1 1 0;
  padding: 28px;
  border-radius: 30px;
}

.price-campaign-tag {
  width: fit-content;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(102, 212, 178, 0.14);
  color: #1d6b58;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-campaign-tag-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.price-panel-head {
  gap: 12px;
}

.price-panel h3 {
  margin: 18px 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.price-panel h3 span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.price-countdown {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 46, 61, 0.08);
  border-radius: 20px;
  background: rgba(245, 249, 252, 0.88);
}

.price-countdown-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.price-countdown-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.price-countdown-dark .countdown-inline span {
  background: rgba(255, 255, 255, 0.08);
}

.price-countdown-dark .countdown-inline b,
.price-countdown-dark .countdown-inline small {
  color: #ffffff;
}

.price-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-panel li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.7;
}

.price-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.55em;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #77e7c4, #54c3a1);
}

.price-panel-featured {
  background: linear-gradient(180deg, rgba(36, 54, 79, 0.98), rgba(28, 44, 64, 0.98));
  color: #ffffff;
}

.price-panel-featured p,
.price-panel-featured li,
.price-panel-featured h3 span {
  color: rgba(255, 255, 255, 0.82);
}

.price-panel-featured .price-label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.payment-architecture {
  flex-direction: column;
  gap: 28px;
}

.payment-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.payment-steps article {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.payment-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #77e7c4, #54c3a1);
  color: #173246;
  font-weight: 900;
}

.dashboard-preview {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
}

.dashboard-shell {
  overflow: hidden;
  border-radius: 34px;
}

.dashboard-shell aside {
  width: 180px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(36, 54, 79, 0.96), rgba(28, 44, 64, 0.98));
}

.dashboard-shell aside strong,
.dashboard-shell aside span {
  display: block;
  color: #ffffff;
}

.dashboard-shell aside strong {
  margin-bottom: 18px;
}

.dashboard-shell aside span {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-main {
  flex: 1 1 auto;
  padding: 20px;
}

.dashboard-top {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(102, 212, 178, 0.3), rgba(48, 72, 98, 0.18));
}

.profile-chip small,
.profile-wallet {
  color: var(--muted);
}

.profile-wallet {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(48, 72, 98, 0.06);
  font-weight: 700;
}

.dashboard-cards {
  gap: 14px;
  margin: 18px 0;
}

.dashboard-cards article {
  flex: 1 1 0;
}

.dashboard-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.dashboard-table .table-row {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.7fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.dashboard-table .table-row:last-child {
  border-bottom: none;
}

.dashboard-table .table-head {
  background: rgba(48, 72, 98, 0.08);
  font-weight: 800;
}

.sql-callout {
  padding: 34px;
  border-radius: 36px;
}

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

.mobile-copy h2 {
  max-width: 22ch;
}

.mobile-visual {
  display: flex;
  justify-content: center;
}

.mobile-device {
  width: min(100%, 390px);
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(36, 54, 79, 0.97), rgba(28, 44, 64, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.mobile-device header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mobile-device header img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.mobile-device header strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.mobile-device header small {
  color: rgba(255, 255, 255, 0.78);
}

.mobile-device-screen {
  border-radius: 24px;
  padding: 14px;
  background: rgba(10, 22, 44, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

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

.mobile-stat-grid div {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-stat-grid b {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.mobile-stat-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.mobile-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.mobile-list article {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-list article span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.mobile-list article b {
  font-size: 0.82rem;
}

.mobile-store-section {
  overflow: hidden;
}

.mobile-store-shell {
  display: grid;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(29, 45, 64, 0.1);
  border-radius: 40px;
  background:
    radial-gradient(circle at 90% 5%, rgba(107, 208, 176, 0.16), transparent 28%),
    radial-gradient(circle at 5% 100%, rgba(78, 104, 132, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.mobile-store-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.mobile-store-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}

.mobile-store-brand-mark {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(160deg, #243650, #1b2c42 58%, #4dc1a7);
  box-shadow: 0 22px 44px rgba(25, 41, 61, 0.18);
}

.mobile-store-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-store-brand-copy h2 {
  max-width: 14ch;
}

.mobile-store-brand-copy p:last-child {
  margin: 16px 0 0;
  max-width: 60ch;
}

.mobile-store-support {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 247, 251, 0.94));
  border: 1px solid rgba(29, 45, 64, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-store-support strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--navy);
}

.compact-check-list {
  gap: 10px;
  margin-top: 0;
}

.compact-check-list li {
  justify-content: flex-start;
  min-height: 0;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(48, 72, 98, 0.05);
}

.mobile-store-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(252px, 290px);
  gap: 20px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  scroll-snap-type: x proximity;
}

.mobile-store-gallery::-webkit-scrollbar {
  height: 10px;
}

.mobile-store-gallery::-webkit-scrollbar-track {
  background: rgba(48, 72, 98, 0.08);
  border-radius: 999px;
}

.mobile-store-gallery::-webkit-scrollbar-thumb {
  background: rgba(36, 54, 79, 0.24);
  border-radius: 999px;
}

.mobile-gallery-shot {
  display: grid;
  gap: 14px;
  min-width: 0;
  scroll-snap-align: start;
}

.mobile-gallery-frame {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 8%, rgba(107, 208, 176, 0.18), transparent 24%),
    linear-gradient(180deg, #edf3f8, #dee8f0);
  box-shadow: var(--shadow);
}

.mobile-gallery-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 92px;
  height: 16px;
  border-radius: 999px;
  background: rgba(19, 33, 48, 0.88);
  transform: translateX(-50%);
  z-index: 2;
}

.mobile-gallery-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  border: 4px solid rgba(19, 33, 48, 0.92);
  background: #ffffff;
  box-shadow: 0 28px 46px rgba(23, 40, 60, 0.18);
}

.mobile-gallery-copy {
  display: grid;
  gap: 6px;
}

.mobile-gallery-copy strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.mobile-gallery-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mobile-store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sponsorship-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 30px;
  align-items: stretch;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 40px;
  background:
    radial-gradient(circle at 90% 12%, rgba(107, 208, 176, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.sponsorship-copy h2,
.sponsorship-form-copy h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.sponsorship-copy p,
.sponsorship-form-copy p {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

.sponsorship-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sponsorship-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 68% 18%, rgba(107, 208, 176, 0.32), transparent 26%),
    linear-gradient(145deg, #223248, #1f2e3d 55%, #4fb99d);
}

.sponsor-phone-card,
.sponsor-rail-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 40px rgba(12, 24, 38, 0.18);
  backdrop-filter: blur(14px);
}

.sponsor-phone-card {
  width: min(82%, 340px);
  padding: 28px;
  border-radius: 30px;
}

.sponsor-rail-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  width: 86px;
  min-height: 210px;
  padding: 18px 10px;
  border-radius: 999px;
  text-align: center;
  writing-mode: vertical-rl;
}

.sponsor-phone-card span,
.sponsor-rail-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-phone-card strong,
.sponsor-rail-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.7rem;
}

.sponsor-phone-card small {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.sponsorship-page-main {
  padding: 42px 0 70px;
}

.sponsorship-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 30px;
  align-items: start;
}

.sponsorship-form-copy,
.sponsorship-form {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.sponsorship-form-copy {
  padding: clamp(26px, 4vw, 42px);
}

.sponsorship-info-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.sponsorship-info-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(247, 249, 251, 0.86);
}

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

.sponsorship-info-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.sponsorship-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

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

.sponsorship-form label {
  color: var(--navy);
  font-weight: 800;
}

.sponsorship-form input,
.sponsorship-form select,
.sponsorship-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.sponsorship-form input,
.sponsorship-form select {
  min-height: 52px;
  padding: 0 16px;
}

.sponsorship-form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.sponsorship-form input:focus,
.sponsorship-form select:focus,
.sponsorship-form textarea:focus {
  border-color: rgba(52, 157, 130, 0.54);
  box-shadow: 0 0 0 4px rgba(84, 195, 161, 0.14);
}

.sponsorship-consent {
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.6;
}

.form-security-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 18px 28px;
}

.footer-links-group {
  display: grid;
  gap: 10px;
}

.footer-links-title {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner strong {
  display: block;
  margin-bottom: 6px;
}

.footer-inner > div:first-child p {
  max-width: 34rem;
}

.footer-note {
  max-width: 44rem;
  color: var(--muted);
}

.footer-copyright {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.reveal-delay {
  transition-delay: 130ms;
}

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

.info-shell {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  padding: 42px 0 72px;
}

.info-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.info-topbar-nav,
.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-hero,
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.info-hero {
  padding: 34px;
}

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

.info-card {
  padding: 24px;
}

.contact-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.detail-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.detail-card {
  flex: 1 1 calc(50% - 18px);
  min-width: 280px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(29, 45, 64, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.detail-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.detail-card > .detail-label {
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(102, 212, 178, 0.14);
}

.detail-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: rgba(84, 195, 161, 0.14);
  color: #1d6b58;
}

.detail-icon-chip svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-icon-chip-soft {
  background: rgba(48, 72, 98, 0.08);
  color: #304862;
}

.detail-label-text {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.detail-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--navy);
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(29, 45, 64, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--navy);
  font-size: 1.3rem;
}

.contact-card small {
  color: var(--muted);
  line-height: 1.7;
}

.info-card h2,
.info-card h3 {
  color: var(--navy);
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.info-card h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
}

.info-card p,
.info-card li,
.info-card dd,
.info-card dt {
  color: var(--muted);
  line-height: 1.75;
}

.info-card ul,
.info-card ol {
  margin: 0;
  padding-left: 18px;
}

.info-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.info-card dt {
  font-weight: 800;
  color: var(--navy);
}

.info-card dd {
  margin: 0;
}

.info-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(102, 212, 178, 0.14);
  color: #1f5e56;
  font-size: 0.86rem;
  font-weight: 700;
}

.info-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(48, 72, 98, 0.06);
  color: var(--muted);
  line-height: 1.7;
}

.seo-page .info-hero h1 {
  max-width: 15ch;
}

.seo-page .info-card-full {
  grid-column: 1 / -1;
}

.seo-list-check {
  list-style: none;
  padding: 0;
}

.seo-list-check li {
  position: relative;
  padding-left: 28px;
}

.seo-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-strong);
  box-shadow: 0 0 0 5px rgba(107, 208, 176, 0.14);
}

.seo-comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.seo-comparison-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.seo-comparison-table th,
.seo-comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.seo-comparison-table th {
  color: var(--navy-deep);
  background: rgba(107, 208, 176, 0.12);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.seo-comparison-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1500px) {
  .ad-rail {
    display: none;
  }
}

@media (max-width: 1120px) {
  .top-strip-inner,
  .hero-v2-inner,
  .auth-teaser,
  .mobile-store-header,
  .mobile-showcase,
  .dashboard-preview,
  .footer-inner,
  .sponsorship-showcase,
  .sponsorship-form-shell {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-v2-inner {
    min-height: auto;
  }

  .top-strip-campaign {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

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

  .sponsorship-copy h2,
  .sponsorship-form-copy h1 {
    max-width: 18ch;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    padding-top: 12px;
  }

  .header-inner,
  .header-social-row,
  .top-strip-campaign,
  .site-nav,
  .header-actions,
  .hero-actions,
  .hero-facts,
  .hero-difference-list,
  .roadmap-status-strip,
  .pricing-layout,
  .scene-browser-body,
  .auth-preview-body,
  .dashboard-shell,
  .dashboard-cards,
  .dashboard-top {
    flex-direction: column;
  }

  .header-inner {
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    border-radius: 30px;
    overflow: hidden;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .site-nav a {
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(31, 46, 61, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    flex-direction: row;
    width: 100%;
  }

  .header-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .site-nav,
  .header-actions {
    align-items: stretch;
  }

  .social-links {
    justify-content: center;
  }

  .dashboard-shell aside {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .mobile-store-brand {
    grid-template-columns: 1fr;
  }

  .scene-auth-card {
    max-width: none;
  }

  .info-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-grid,
  .footer-link-groups {
    grid-template-columns: 1fr;
  }

  .contact-callout {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-particles {
    display: none;
  }

  .header-social-row {
    display: none;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section-space {
    padding: 70px 0;
  }

  .hero-v2 {
    padding-top: 26px;
  }

  .hero-scene,
  .hero-facts {
    display: none;
  }

  .button,
  .preview-pill {
    width: 100%;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand {
    justify-content: center;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
  }

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

  .header-actions .button {
    width: 100%;
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .hero-copy h1 {
    max-width: 10.8em;
    overflow-wrap: normal;
    font-size: clamp(1.7rem, 7.4vw, 2.2rem);
    letter-spacing: 0;
    text-wrap: balance;
  }

  .section-copy h2,
  .dashboard-preview-copy h2,
  .mobile-store-brand-copy h2 {
    max-width: none;
  }

  .scene-shell {
    padding: 18px 0 0;
  }

  .feature-grid-v2,
  .payment-steps,
  .simple-check-list,
  .support-assistant-card,
  .form-grid-two {
    grid-template-columns: 1fr;
  }

  .story-image-card {
    border-radius: 24px;
  }

  .story-image-card figcaption {
    padding-inline: 14px;
    text-align: left;
  }

  .support-assistant-output {
    grid-column: auto;
  }

  .support-assistant-row {
    grid-template-columns: 1fr;
  }

  .quick-assistant {
    left: 14px;
    bottom: 14px;
  }

  .quick-assistant-toggle {
    width: 54px;
    height: 54px;
  }

  .sponsorship-showcase,
  .sponsorship-form-copy,
  .sponsorship-form {
    border-radius: 26px;
  }

  .sponsor-rail-card {
    display: none;
  }

  .dashboard-table .table-row {
    grid-template-columns: 1fr;
  }

  .mobile-device {
    width: 100%;
    padding: 14px;
    border-radius: 24px;
  }

  .mobile-store-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .mobile-stat-grid {
    grid-template-columns: 1fr;
  }

  .mobile-store-gallery {
    grid-auto-columns: minmax(236px, 82vw);
  }

  .mobile-store-actions {
    flex-direction: column;
  }

  .top-strip-badges,
  .countdown-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .countdown-inline {
    width: 100%;
  }

  .countdown-inline span {
    min-width: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-particles {
    display: none;
  }
}
