:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0d1218;
  --bg-band: #0a0e13;
  --ink: #f6f8fb;
  --muted: #9aa6b2;
  --muted-strong: #c8d1dc;
  --surface: rgba(18, 25, 32, 0.88);
  --surface-strong: rgba(24, 33, 43, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --accent: #9bea24;
  --accent-strong: #76c900;
  --accent-soft: rgba(155, 234, 36, 0.14);
  --eyebrow: #b9ff3a;
  --blue: #54a4ff;
  --amber: #f4be54;
  --danger: #ff7d7d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f8f9f5;
  --bg-soft: #eef3e8;
  --bg-band: #ffffff;
  --ink: #171b22;
  --muted: #5f6874;
  --muted-strong: #303844;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: rgba(23, 27, 34, 0.045);
  --accent: #9bea24;
  --accent-strong: #76c900;
  --accent-soft: rgba(118, 201, 0, 0.14);
  --eyebrow: #3f7c00;
  --blue: #2877cf;
  --amber: #b1791e;
  --danger: #c64444;
  --line: rgba(23, 27, 34, 0.12);
  --line-strong: rgba(23, 27, 34, 0.18);
  --shadow: 0 24px 70px rgba(23, 27, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 52%, var(--bg) 100%);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  background:
    linear-gradient(115deg, transparent 0%, transparent 42%, rgba(155, 234, 36, 0.08) 42%, transparent 44%, transparent 100%),
    linear-gradient(135deg, transparent 0%, transparent 58%, rgba(84, 164, 255, 0.07) 58%, transparent 60%, transparent 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header,
.site-footer,
.hero,
.section,
.legal-shell {
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 24px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::before {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

@supports (backdrop-filter: blur(18px)) {
  .site-header::before {
    backdrop-filter: blur(18px);
  }
}

.brand,
.footer-brand,
.top-nav,
.site-footer nav,
.language-switcher,
.theme-switcher,
.header-actions,
.header-login,
.actions a,
.inline-cta {
  align-items: center;
  display: flex;
}

.brand {
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  display: flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 42px;
}

.brand-slogan-lockup .brand-mark {
  flex: 0 0 66px;
  height: 66px;
  width: 66px;
}

.brand-mark img {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-slogan {
  color: var(--ink);
  display: block;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.12;
  max-width: 180px;
  white-space: pre-line;
}

.top-nav {
  gap: 22px;
  justify-content: center;
}

.top-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  transition: color 160ms ease;
}

.top-nav a:hover,
.site-footer a:hover,
.legal-doc a:hover {
  color: var(--accent);
}

.header-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.theme-switcher,
.language-switcher {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 4px;
  padding: 4px;
}

.theme-button,
.lang-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 34px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.theme-button {
  font-size: 1.25rem;
  width: 36px;
}

.lang-button {
  font-size: 0.76rem;
  padding: 0 11px;
}

.theme-button.is-active,
.lang-button.is-active {
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(118, 201, 0, 0.22);
  color: #0d1209;
}

.header-login {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: 1px solid rgba(118, 201, 0, 0.5);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(118, 201, 0, 0.18);
  color: #0d1209;
  font-size: 0.86rem;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  white-space: nowrap;
}

.header-login:hover {
  filter: brightness(1.04);
}

@keyframes landingActiveButtonShimmer {
  0% {
    opacity: 0;
    transform: translate3d(-55%, 0, 0);
  }

  18% {
    opacity: 0;
  }

  38% {
    opacity: 0.72;
  }

  62% {
    opacity: 0.72;
  }

  82% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translate3d(55%, 0, 0);
  }
}

.theme-button,
.lang-button,
.header-login,
.actions a,
.inline-cta,
.final-cta a,
.mini-cta,
.ghost-button,
.dashboard-topline button {
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-button::before,
.lang-button::before,
.header-login::before,
.actions a::before,
.inline-cta::before,
.final-cta a::before,
.mini-cta::before,
.ghost-button::before,
.dashboard-topline button::before {
  background: linear-gradient(115deg, transparent 0%, transparent 41%, rgba(255, 255, 255, 0.03) 46%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.03) 54%, transparent 59%, transparent 100%);
  content: "";
  filter: blur(1px);
  inset: -70% -150%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-55%, 0, 0);
  transition: transform 0.95s ease, opacity 0.36s ease;
  will-change: transform, opacity;
}

.theme-button:hover::before,
.theme-button:focus-visible::before,
.lang-button:hover::before,
.lang-button:focus-visible::before,
.header-login:hover::before,
.header-login:focus-visible::before,
.actions a:hover::before,
.actions a:focus-visible::before,
.inline-cta:hover::before,
.inline-cta:focus-visible::before,
.final-cta a:hover::before,
.final-cta a:focus-visible::before,
.mini-cta:hover::before,
.mini-cta:focus-visible::before,
.ghost-button:hover::before,
.ghost-button:focus-visible::before,
.dashboard-topline button:hover::before,
.dashboard-topline button:focus-visible::before {
  opacity: 1;
  transform: translate3d(55%, 0, 0);
}

.theme-button:hover,
.theme-button:focus-visible,
.lang-button:hover,
.lang-button:focus-visible,
.header-login:hover,
.header-login:focus-visible,
.actions a:hover,
.actions a:focus-visible,
.inline-cta:hover,
.inline-cta:focus-visible,
.final-cta a:hover,
.final-cta a:focus-visible,
.mini-cta:hover,
.mini-cta:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible,
.dashboard-topline button:hover,
.dashboard-topline button:focus-visible {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.14),
    0 0 20px rgba(118, 201, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: translateY(-3px) scale(1.03);
}

.theme-button.is-active::after,
.lang-button.is-active::after {
  animation: landingActiveButtonShimmer 4.2s infinite;
  background: linear-gradient(115deg, transparent 0%, transparent 41%, rgba(255, 255, 255, 0.03) 46%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.03) 54%, transparent 59%, transparent 100%);
  content: "";
  filter: blur(1px);
  inset: -70% -150%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-55%, 0, 0);
  will-change: transform, opacity;
}

.hero,
.section,
.legal-shell {
  padding: 62px 24px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  padding-top: 50px;
  position: relative;
}

.hero-phone-bg {
  filter: blur(7px) saturate(1.08) brightness(0.88);
  min-width: 0;
  opacity: 0.11;
  pointer-events: none;
  position: absolute;
  left: clamp(180px, 10vw, 190px);
  right: auto;
  top: 44px;
  transform: rotate(-7deg);
  width: 500px;
  z-index: 0;
}

:root[data-theme="light"] .hero-phone-bg {
  filter: blur(6px) saturate(1.05);
  opacity: 0.22;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--eyebrow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-eyebrow {
  display: inline-flex;
  width: fit-content;
  text-shadow: 0 1px 16px color-mix(in srgb, var(--bg) 68%, transparent);
}

:root[data-theme="light"] .section-eyebrow {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

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

h1 {
  font-size: 4.7rem;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 650px;
}

h2 {
  font-size: 3.1rem;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 18px;
  max-width: 860px;
}

h3 {
  font-size: 1.22rem;
  letter-spacing: 0;
  line-height: 1.24;
  margin-bottom: 10px;
}

h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted-strong);
  font-size: 1.22rem;
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 660px;
}

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

.actions a,
.inline-cta,
.final-cta a {
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 850;
  gap: 8px;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  text-decoration: none;
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f1608;
}

.primary:hover {
  filter: brightness(1.05);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.secondary:hover,
.ghost-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  max-width: 600px;
}

.hero-points article,
.feature-card,
.workflow-step,
.integration-grid article,
.ui-panel,
.comparison-table,
.dashboard-preview,
.legal-doc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-points article {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  padding: 13px;
}

.hero-points i,
.feature-card > i,
.workflow-step > i,
.integration-grid i {
  align-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(155, 234, 36, 0.22);
  border-radius: 8px;
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.22rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points span,
.audience-strip span,
.feature-card p,
.workflow-step p,
.comparison-copy p,
.comparison-table li,
.glance-copy p,
.check-list,
.integration-grid p,
.final-cta p,
.panel-meta,
.assistant-panel p,
.site-footer span,
.legal-doc p,
.legal-doc li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.workflow-section .section-eyebrow,
.comparison-copy .section-eyebrow,
.glance-copy .section-eyebrow {
  color: var(--eyebrow);
  font-size: 0.82rem;
  line-height: 1.2;
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  max-width: 620px;
}

.audience-strip span {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.1;
  padding: 8px 11px;
}

.audience-strip span:first-child {
  background: var(--accent);
  border-color: transparent;
  color: #0f1608;
}

.hero-visual {
  align-content: center;
  display: grid;
  gap: 14px;
  grid-template-areas:
    "session package"
    "session payment"
    "assistant payment";
  grid-template-columns: minmax(300px, 1fr) minmax(250px, 0.84fr);
  min-height: 620px;
  position: relative;
}

.ui-panel {
  padding: 18px;
  position: relative;
}

.session-panel {
  grid-area: session;
  width: 100%;
}

.package-panel {
  grid-area: package;
  transform: translateY(-18px);
  width: 100%;
}

.payment-panel {
  grid-area: payment;
  transform: translateY(-6px);
  width: 100%;
}

.assistant-panel {
  grid-area: assistant;
  margin-left: 34px;
  max-width: 330px;
  width: calc(100% - 34px);
}

.connection {
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  opacity: 0.78;
  position: absolute;
  display: none;
}

.connection::before,
.connection::after {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  position: absolute;
  width: 10px;
}

.connection-a {
  border-bottom-width: 2px;
  border-right-width: 2px;
  height: 96px;
  left: 274px;
  top: 208px;
  width: 150px;
}

.connection-a::before {
  left: -4px;
  top: 88px;
}

.connection-a::after {
  right: -6px;
  top: -5px;
}

.connection-b {
  border-left-width: 2px;
  border-top-width: 2px;
  height: 106px;
  left: 424px;
  top: 198px;
  width: 92px;
}

.connection-b::before {
  left: -6px;
  top: -6px;
}

.connection-b::after {
  bottom: -4px;
  right: -4px;
}

.panel-heading {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.panel-heading i {
  color: var(--accent);
  font-size: 1.18rem;
}

.panel-heading.success i {
  color: var(--accent);
}

.panel-heading.warning i {
  color: var(--amber);
}

.ui-panel label {
  color: var(--muted);
  display: grid;
  font-size: 0.75rem;
  font-weight: 760;
  gap: 6px;
  margin-top: 11px;
}

.ui-panel input,
.ui-panel select {
  -webkit-appearance: none;
  appearance: none;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  min-height: 38px;
  padding: 0 10px;
  width: 100%;
}

.ui-panel select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5 10 12.5l5-5' stroke='%23626c6a' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-right: 48px;
}

.ui-panel select::-ms-expand {
  display: none;
}

.form-pair {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.mini-cta,
.ghost-button,
.dashboard-topline button {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font-weight: 850;
}

.mini-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f1608;
  margin-top: 14px;
  min-height: 42px;
  width: 100%;
}

.ghost-button {
  min-height: 40px;
  padding: 0 14px;
  width: 100%;
}

.panel-title {
  font-size: 0.98rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.package-count {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 8px 0 12px;
}

.package-count strong {
  color: var(--accent);
  font-size: 2.7rem;
  line-height: 1;
}

.package-count span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
  max-width: 92px;
}

.progress-track {
  background: var(--surface-soft);
  border-radius: 999px;
  height: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.progress-track span {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 62%;
}

.amount {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin: 12px 0 8px;
}

.method {
  display: block;
  font-size: 0.86rem;
  font-weight: 850;
  margin: 0 0 14px;
}

.assistant-panel p {
  margin-bottom: 0;
}

.workflow-section {
  border-top: 1px solid var(--line);
}

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

.workflow-step {
  min-height: 218px;
  padding: 22px;
  position: relative;
}

.step-number {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #0f1608;
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 34px;
}

.comparison-section {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
}

.comparison-table {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.comparison-table > div {
  padding: 26px;
}

.comparison-table > div + div {
  border-left: 1px solid var(--line);
}

.comparison-table ul,
.check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.comparison-table li,
.check-list li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.comparison-table li i,
.check-list i {
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 1.05rem;
  margin-top: 2px;
}

.comparison-table > div:first-child li i {
  color: var(--danger);
}

.glance-section {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.56fr) minmax(620px, 1.44fr);
}

.glance-copy .inline-cta {
  display: inline-flex;
  margin-top: 28px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 430px;
  overflow: hidden;
}

.dashboard-preview aside {
  background: var(--surface-soft);
  border-right: 1px solid var(--line);
  padding: 22px 16px;
}

.mini-brand {
  align-items: center;
  color: var(--accent);
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 22px;
  overflow: hidden;
  text-align: center;
}

.mini-brand img {
  display: block;
  height: 150px;
  max-width: 100%;
  object-fit: contain;
  width: 150px;
}

.mini-brand strong {
  display: none;
}

.dashboard-preview nav {
  display: grid;
  gap: 6px;
}

.dashboard-preview nav span {
  align-items: center;
  border-radius: 7px;
  color: var(--muted);
  display: flex;
  font-size: 0.86rem;
  font-weight: 760;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
}

.dashboard-preview nav .is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.dashboard-main {
  padding: 24px;
}

.dashboard-topline {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-topline h3 {
  margin-bottom: 0;
}

.dashboard-topline button {
  color: var(--muted-strong);
  min-height: 36px;
  padding: 0 12px;
}

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

.metric-grid article,
.dashboard-lists article {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.metric-grid span,
.metric-grid small,
.dashboard-lists span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
}

.metric-grid strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
  margin: 12px 0 8px;
}

.metric-grid small {
  color: var(--accent);
}

.dashboard-lists {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.dashboard-lists p {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 0;
  padding: 11px 0 0;
}

.dashboard-lists p + p {
  margin-top: 11px;
}

.dashboard-lists strong {
  flex: 0 0 auto;
  font-size: 0.82rem;
}

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

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

.feature-card {
  min-height: 234px;
  padding: 22px;
}

.feature-card > i,
.workflow-step > i,
.integration-grid i {
  margin-bottom: 18px;
}

.integrations-section {
  text-align: left;
}

.integrations-section h2 {
  margin-left: 0;
  margin-right: 0;
}

.integration-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  text-align: left;
}

.integration-grid article {
  min-height: 180px;
  padding: 22px;
}

.final-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
  max-width: 1188px;
  overflow: hidden;
  padding: 46px 24px;
  position: relative;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  max-width: 560px;
}

.final-cta a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  line-height: 1;
  margin-top: 10px;
  min-height: 54px;
  padding: 0 30px;
  width: auto;
}

.final-cta a i {
  font-size: 1.15rem;
  line-height: 1;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 24px;
}

.footer-brand {
  gap: 10px;
  min-width: 0;
}

.footer-brand strong {
  color: var(--ink);
  margin-right: 6px;
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.legal-shell {
  max-width: 940px;
}

.legal-doc {
  padding: 46px;
}

.legal-doc h1 {
  font-size: 3.2rem;
  line-height: 1.03;
  margin-bottom: 12px;
}

.legal-doc h2 {
  font-size: 1.45rem;
  line-height: 1.18;
  margin-top: 34px;
}

.legal-updated {
  margin-bottom: 34px;
}

.legal-doc a {
  color: var(--accent);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .theme-button,
  .lang-button,
  .header-login,
  .actions a,
  .inline-cta,
  .final-cta a,
  .mini-cta,
  .ghost-button,
  .dashboard-topline button {
    transition: none;
  }

  .theme-button:hover,
  .theme-button:focus-visible,
  .lang-button:hover,
  .lang-button:focus-visible,
  .header-login:hover,
  .header-login:focus-visible,
  .actions a:hover,
  .actions a:focus-visible,
  .inline-cta:hover,
  .inline-cta:focus-visible,
  .final-cta a:hover,
  .final-cta a:focus-visible,
  .mini-cta:hover,
  .mini-cta:focus-visible,
  .ghost-button:hover,
  .ghost-button:focus-visible,
  .dashboard-topline button:hover,
  .dashboard-topline button:focus-visible {
    transform: none;
  }

  .theme-button::before,
  .lang-button::before,
  .header-login::before,
  .actions a::before,
  .inline-cta::before,
  .final-cta a::before,
  .mini-cta::before,
  .ghost-button::before,
  .dashboard-topline button::before,
  .theme-button.is-active::after,
  .lang-button.is-active::after {
    animation: none;
    transition: none;
    opacity: 0;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 5.55rem;
  }
}

@media (max-width: 1080px) {
  .hero {
    gap: 24px;
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
    min-height: 720px;
  }

  .hero-phone-bg {
    left: clamp(145px, 16vw, 170px);
    min-width: 0;
    opacity: 0.08;
    right: auto;
    top: 58px;
    width: min(46vw, 460px);
  }

  :root[data-theme="light"] .hero-phone-bg {
    opacity: 0.18;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: 4.25rem;
  }

  .hero-visual {
    gap: 10px;
    grid-template-columns: minmax(205px, 1fr) minmax(168px, 0.78fr);
    min-height: 560px;
  }

  .ui-panel {
    padding: 13px;
  }

  .package-panel {
    transform: translateY(-10px);
  }

  .payment-panel {
    transform: translateY(-2px);
  }

  .assistant-panel {
    margin-left: 18px;
    width: calc(100% - 18px);
  }

  .panel-title,
  .method {
    font-size: 0.82rem;
  }

  .package-count strong {
    font-size: 2.25rem;
  }

  .ui-panel label {
    margin-top: 8px;
  }

  .ui-panel input,
  .ui-panel select {
    min-height: 34px;
  }

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

  .comparison-section,
  .glance-section {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    grid-template-columns: 190px 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    display: grid;
  }

  .top-nav {
    justify-content: flex-start;
    order: 3;
  }

  .header-actions {
    justify-self: start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-phone-bg {
    display: none;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero,
  .section,
  .legal-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
    grid-template-areas: none;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .connection {
    display: none;
  }

  .ui-panel {
    padding: 18px;
    position: static;
    width: 100%;
  }

  .package-panel,
  .payment-panel,
  .assistant-panel {
    grid-area: auto;
    margin-left: 0;
    max-width: none;
    transform: none;
    width: 100%;
  }

  .session-panel {
    grid-area: auto;
  }

  .workflow-grid,
  .feature-grid,
  .integration-grid,
  .comparison-table,
  .dashboard-lists,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .dashboard-preview aside {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

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

@media (max-width: 520px) {
  .site-header {
    padding: 14px;
  }

  .brand-slogan-lockup .brand-mark {
    flex-basis: 52px;
    height: 52px;
    width: 52px;
  }

  .brand-slogan {
    font-size: 0.82rem;
  }

  .top-nav {
    gap: 12px;
  }

  .top-nav a,
  .site-footer a {
    font-size: 0.84rem;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .actions {
    flex-direction: column;
  }

  .actions a,
  .inline-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

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

  .dashboard-preview nav {
    grid-template-columns: 1fr;
  }

  .dashboard-topline {
    align-items: flex-start;
    display: grid;
  }

  .dashboard-lists p {
    align-items: flex-start;
    display: grid;
  }

  .site-footer {
    align-items: flex-start;
    display: grid;
  }

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

  .legal-doc {
    padding: 26px 18px;
  }

  .legal-doc h1 {
    font-size: 2.25rem;
  }
}
