:root {
  color-scheme: light;
  --text: #111827;
  --muted: #657185;
  --soft: #f6f8fc;
  --paper: #ffffff;
  --line: #e3e8f1;
  --blue: #315cf6;
  --blue-2: #6080ff;
  --cyan: #13b8d3;
  --green: #14b87a;
  --orange: #ff9f2f;
  --purple: #7b61ff;
  --shadow: 0 28px 90px rgba(31, 45, 70, 0.13);
  --soft-shadow: 0 16px 50px rgba(31, 45, 70, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(96, 128, 255, 0.12), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(19, 184, 211, 0.12), transparent 26%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 34%, #f7f9fd 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(227, 232, 241, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.topbar.is-scrolled { box-shadow: var(--soft-shadow); border-color: rgba(196, 207, 225, 0.96); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 12px;
  background: linear-gradient(145deg, #17233a, #34446b);
  box-shadow: inset 0 -8px 16px rgba(255,255,255,0.08);
}
.brand-icon span { border-radius: 5px; background: #8bb8ff; }
.brand-icon span:nth-child(2) { background: #36d6c7; transform: translateY(7px); }
.brand-icon span:nth-child(3) { grid-column: 1 / -1; background: #ffb86b; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 28px; color: #4b5567; font-size: 14px; font-weight: 700; }
.desktop-nav a:hover, .login-link:hover { color: var(--blue); }
.top-actions { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 800; }
.login-link { color: #4b5567; }
.start-link { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 17px; border-radius: 999px; color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(49, 92, 246, 0.24); }
.menu-button { display: none; width: 42px; height: 38px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: #111827; }

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 72px;
  text-align: center;
}
.hero-inner { max-width: 920px; margin: 0 auto; }
.hero-kicker, .eyebrow {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 960px;
  margin: 16px auto 20px;
  font-size: clamp(44px, 6.9vw, 84px);
  line-height: 1.03;
  letter-spacing: 0;
}
.hero-text {
  max-width: 780px;
  margin: 0 auto;
  color: #5b6678;
  font-size: 20px;
}
.hero-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 30px 0 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 900; }
.button.primary { color: #fff; background: var(--blue); box-shadow: 0 14px 34px rgba(49, 92, 246, 0.26); }
.button.secondary { color: #1e293b; background: #fff; border: 1px solid var(--line); }
.hero-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.hero-tags span { display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.78); color: #516075; font-size: 14px; font-weight: 750; }

.hero-product { position: relative; margin: 54px auto 0; max-width: 1080px; text-align: left; }
.product-window { overflow: hidden; border: 1px solid #d8e0ec; border-radius: 30px; background: white; box-shadow: var(--shadow); }
.window-bar { display: flex; align-items: center; gap: 9px; height: 48px; padding: 0 22px; border-bottom: 1px solid var(--line); background: #fbfcff; color: #69778b; font-size: 13px; font-weight: 800; }
.window-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d8dee8; }
.window-bar i:first-child { background: #ff6d6d; }
.window-bar i:nth-child(2) { background: #ffbd4a; }
.window-bar i:nth-child(3) { background: #32d190; }
.window-bar span { margin-left: 8px; }
.app-shell { display: grid; grid-template-columns: 170px 1fr; min-height: 470px; }
.app-sidebar { display: flex; flex-direction: column; gap: 8px; padding: 24px 16px; background: #101b2e; color: #afbdd0; }
.app-sidebar b { margin-bottom: 16px; color: white; font-size: 20px; }
.app-sidebar a { padding: 11px 13px; border-radius: 14px; font-size: 14px; font-weight: 800; }
.app-sidebar .active { color: white; background: rgba(255,255,255,0.12); }
.app-main { padding: 24px; background: #f8faff; }
.app-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 18px; }
.app-toolbar small { display: block; color: var(--muted); font-weight: 750; }
.app-toolbar strong { display: block; font-size: 24px; line-height: 1.25; }
.toolbar-actions { display: flex; align-items: center; gap: 10px; }
.toolbar-actions span, .toolbar-actions button { height: 38px; border-radius: 999px; border: 1px solid var(--line); background: white; padding: 0 14px; color: #5d6878; font-weight: 800; }
.toolbar-actions button:last-child { border: 0; color: white; background: var(--blue); }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.status-grid div { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.status-grid b { display: block; font-size: 28px; line-height: 1; }
.status-grid span { color: var(--muted); font-size: 13px; font-weight: 760; }
.table-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; }
.table-row { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr 0.62fr; gap: 14px; align-items: center; padding: 17px 18px; border-top: 1px solid var(--line); color: #39475a; font-size: 14px; }
.table-row:first-child { border-top: 0; }
.table-row.head { color: #718096; background: #f1f5fb; font-size: 12px; font-weight: 900; }
.table-row b { color: var(--green); }
.mark { display: inline-block; width: 10px; height: 10px; margin-right: 9px; border-radius: 50%; }
.mark.blue { background: var(--blue); }
.mark.teal { background: var(--cyan); }
.mark.orange { background: var(--orange); }
.floating-card { position: absolute; width: 230px; padding: 18px; border: 1px solid rgba(216,224,236,0.9); border-radius: 20px; background: rgba(255,255,255,0.92); box-shadow: var(--soft-shadow); }
.floating-card span { color: var(--blue); font-size: 12px; font-weight: 900; }
.floating-card b { display: block; margin: 3px 0; }
.floating-card small { color: var(--muted); }
.floating-card.left { left: 36px; bottom: -28px; }
.floating-card.right { right: 44px; top: 84px; }

.split-section, .automation-band, .cases-section, .download-section, .trial-section, .faq-section, .footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.split-section { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; padding: 110px 0; }
.split-section.reversed { grid-template-columns: 1.05fr 0.95fr; }
.section-copy h2, .center-heading h2, .download-copy h2, .trial-section h2 { margin-bottom: 18px; font-size: clamp(32px, 4.6vw, 58px); line-height: 1.1; letter-spacing: 0; }
.section-copy p, .center-heading p, .download-copy p, .trial-section p { color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: #334155; font-weight: 760; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 20px; height: 20px; border-radius: 50%; background: var(--green); }
.text-link { color: var(--blue); font-weight: 900; }
.visual-panel { min-height: 460px; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(145deg, #ffffff, #eef4ff); box-shadow: var(--soft-shadow); position: relative; overflow: hidden; }
.environment-panel::before, .team-panel::before { content: ""; position: absolute; inset: 44px; border-radius: 28px; background: rgba(255,255,255,0.68); border: 1px solid rgba(227,232,241,0.9); }
.mini-browser { position: absolute; width: 230px; min-height: 128px; padding: 22px; border-radius: 22px; background: white; box-shadow: var(--soft-shadow); }
.mini-browser::before { content: ""; display: block; width: 76px; height: 8px; margin-bottom: 30px; border-radius: 999px; background: #dbe5f3; box-shadow: 94px 0 #edf2f8; }
.mini-browser b, .mini-browser span { display: block; }
.mini-browser span { color: var(--muted); }
.mini-browser.one { left: 48px; top: 62px; border-top: 5px solid var(--blue); }
.mini-browser.two { right: 54px; top: 156px; border-top: 5px solid var(--cyan); }
.mini-browser.three { left: 126px; bottom: 58px; border-top: 5px solid var(--orange); }

.automation-band { padding: 96px 0; }
.center-heading { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.center-heading.small { max-width: 560px; }
.automation-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 16px; }
.automation-card { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--soft-shadow); }
.automation-card.large { grid-row: span 2; min-height: 456px; background: linear-gradient(145deg, #17233a, #243b65); color: white; }
.automation-card p { color: #6a7688; }
.automation-card.large p { color: #c7d2e6; }
.automation-card span { color: var(--blue); font-weight: 950; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 54px; }
.tabs span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.1); color: #cbd6e8; font-size: 13px; }
.tabs .active { background: white; color: #17233a; }
.sync-lines { display: grid; gap: 18px; margin-bottom: 44px; }
.sync-lines i { display: block; height: 54px; border-radius: 18px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.sync-lines i::after { content: ""; position: absolute; left: 18px; top: 20px; width: 68%; height: 12px; border-radius: 999px; background: rgba(255,255,255,0.58); }

.permission-card { position: relative; z-index: 1; width: 72%; margin: 34px auto 0; padding: 24px; border-radius: 24px; background: white; box-shadow: var(--soft-shadow); }
.permission-card:nth-child(2) { margin-left: 54px; }
.permission-card:nth-child(3) { margin-right: 54px; }
.permission-card span { color: var(--blue); font-size: 13px; font-weight: 900; }
.permission-card b { display: block; font-size: 22px; }
.permission-card small { color: var(--muted); }
.security-list { display: grid; gap: 12px; margin-top: 26px; }
.security-list article { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.security-list b, .security-list span { display: block; }
.security-list span { color: var(--muted); }

.cases-section { padding: 96px 0; }
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.case-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--soft-shadow); }
.case-grid article div { height: 148px; background: linear-gradient(135deg, #dce8ff, #ffffff 52%, #dff8f4); }
.case-grid article:nth-child(2) div { background: linear-gradient(135deg, #ffe5da, #ffffff 52%, #e6edff); }
.case-grid article:nth-child(3) div { background: linear-gradient(135deg, #e8e3ff, #ffffff 52%, #dff8f4); }
.case-grid article:nth-child(4) div { background: linear-gradient(135deg, #fff0d5, #ffffff 52%, #e6edff); }
.case-grid h3, .case-grid p { padding: 0 22px; }
.case-grid h3 { margin-top: 20px; }
.case-grid p { color: var(--muted); margin-bottom: 24px; }

.download-section { display: grid; grid-template-columns: 1fr 420px; gap: 44px; align-items: center; padding: 100px 0; }
.download-card { padding: 30px; border: 1px solid var(--line); border-radius: 30px; background: #111c31; color: white; box-shadow: var(--shadow); }
.download-card span { color: #9ec6ff; font-weight: 900; }
.download-card strong { display: block; margin: 8px 0; font-size: 28px; }
.download-card p { color: #c4cfdf; }
.download-card .button { width: 100%; margin-top: 14px; }

.trial-section { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin-top: 40px; margin-bottom: 88px; padding: 46px; border-radius: 34px; background: linear-gradient(135deg, #315cf6, #13b8d3); color: white; box-shadow: var(--shadow); }
.trial-section p, .trial-section .eyebrow { color: rgba(255,255,255,0.86); }
.trial-section h2 { max-width: 760px; margin-bottom: 10px; }
.trial-section .button.primary { background: white; color: var(--blue); box-shadow: none; white-space: nowrap; }

.faq-section { padding: 84px 0; }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 22px; background: white; padding: 20px 24px; box-shadow: 0 8px 28px rgba(31,45,70,0.05); }
.faq-list summary { cursor: pointer; font-weight: 900; font-size: 18px; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }

.footer { padding: 54px 0 38px; border-top: 1px solid var(--line); }
.footer { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.footer-brand p { max-width: 360px; color: var(--muted); }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-columns nav { display: grid; gap: 8px; align-content: start; }
.footer-columns b { margin-bottom: 8px; }
.footer-columns a { color: #5d6878; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 24px; color: #748196; font-size: 14px; }

@media (max-width: 980px) {
  .topbar { grid-template-columns: auto 1fr auto; border-radius: 24px; }
  .menu-button { display: block; justify-self: end; }
  .desktop-nav, .top-actions { display: none; }
  body.menu-open .desktop-nav, body.menu-open .top-actions { display: flex; grid-column: 1 / -1; justify-self: start; flex-wrap: wrap; padding: 8px 4px; }
  .hero { padding-top: 64px; }
  .app-shell, .split-section, .split-section.reversed, .download-section, .footer { grid-template-columns: 1fr; }
  .app-sidebar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .app-sidebar b { grid-column: 1 / -1; margin-bottom: 4px; }
  .automation-grid { grid-template-columns: 1fr 1fr; }
  .automation-card.large { grid-column: 1 / -1; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar, .hero, .split-section, .automation-band, .cases-section, .download-section, .trial-section, .faq-section, .footer { width: min(100% - 22px, 1180px); }
  .hero h1 { font-size: 42px; }
  .hero-text, .section-copy p, .center-heading p, .download-copy p, .trial-section p { font-size: 16px; }
  .hero-product { margin-top: 36px; }
  .product-window { border-radius: 22px; }
  .app-main { padding: 14px; }
  .app-toolbar { align-items: flex-start; flex-direction: column; }
  .toolbar-actions { flex-wrap: wrap; }
  .status-grid, .table-row, .automation-grid, .case-grid, .footer-columns { grid-template-columns: 1fr; }
  .table-row { gap: 4px; }
  .floating-card { position: static; width: auto; margin: 12px 0 0; }
  .mini-browser { width: 72%; }
  .mini-browser.two { right: 18px; }
  .mini-browser.three { left: 34px; }
  .permission-card, .permission-card:nth-child(2), .permission-card:nth-child(3) { width: calc(100% - 36px); margin-left: auto; margin-right: auto; }
  .trial-section { align-items: flex-start; flex-direction: column; padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

.language-menu { position: relative; display: inline-flex; align-items: center; }
.lang-current {
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #344154;
  padding: 0 10px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.lang-options {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 224px;
  padding: 14px;
  border: 1px solid #e3e8f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(31, 45, 70, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.language-menu:hover .lang-options,
.language-menu:focus-within .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-options a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  color: #344154;
  font-weight: 760;
  white-space: nowrap;
}
.lang-options a:hover { background: #f1f5ff; color: #315cf6; }

.legal-topbar { margin-top: 18px; }
.legal-page { width: min(980px, calc(100% - 32px)); margin: 0 auto; padding: 76px 0 110px; }
.legal-hero { text-align: center; margin-bottom: 42px; }
.legal-hero h1 { margin: 12px 0 12px; font-size: clamp(40px, 5.5vw, 72px); line-height: 1.08; }
.legal-hero p { color: #657185; margin-bottom: 6px; }
.legal-hero a, .legal-content a { color: #315cf6; font-weight: 800; }
.legal-content { padding: 38px; border: 1px solid #e3e8f1; border-radius: 28px; background: #fff; box-shadow: 0 16px 50px rgba(31, 45, 70, 0.08); }
.legal-content h2 { margin: 30px 0 10px; font-size: 24px; line-height: 1.25; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #4b586b; }
.legal-content ul { padding-left: 22px; }
.localized-hero { padding-bottom: 36px; }

@media (max-width: 980px) {
  body.menu-open .language-menu { width: 100%; }
  body.menu-open .lang-options { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; margin-top: 8px; }
}

@media (max-width: 640px) {
  .legal-page { width: min(100% - 22px, 980px); padding-top: 46px; }
  .legal-content { padding: 24px; border-radius: 22px; }
}

/* 2026-08-28 homepage direction: MoreLogin-inspired split hero, StoneLogin-owned assets. */
:root {
  --text: #061225;
  --muted: #435b76;
  --soft: #f4f9ff;
  --paper: #ffffff;
  --line: #e7edf6;
  --blue: #2e7cdc;
  --blue-2: #4776fe;
  --cyan: #4fc4fc;
  --shadow: 0 18px 48px rgba(31, 67, 114, 0.12);
  --soft-shadow: 0 10px 28px rgba(31, 67, 114, 0.08);
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 900px at -120px 470px, rgba(104, 196, 255, 0.34), transparent 63%),
    radial-gradient(760px 760px at 28% 54%, rgba(255, 255, 255, 0.72), transparent 64%),
    linear-gradient(100deg, #d9f1ff 0%, #edf8ff 47%, #ffffff 100%);
  line-height: 1.5;
}

body::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 132px;
  width: 760px;
  height: 760px;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 86px;
  margin: 0;
  padding: 0 max(40px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 34px;
  border: 0;
  border-bottom: 1px solid rgba(231, 237, 246, 0.78);
  border-radius: 0;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 30px rgba(47, 70, 112, 0.06);
  backdrop-filter: blur(14px);
}
.topbar.is-scrolled { box-shadow: 0 12px 34px rgba(47, 70, 112, 0.1); }
.brand { gap: 9px; font-size: 22px; line-height: 1; font-weight: 800; color: #20335e; }
.brand-logo { display: block; width: 33px; height: 33px; border-radius: 8px; }
.brand-icon { display: none; }
.desktop-nav { gap: 28px; color: #26364f; font-size: 16px; line-height: 86px; font-weight: 650; }
.desktop-nav a { white-space: nowrap; }
.top-actions { gap: 18px; color: #26364f; font-size: 16px; font-weight: 650; }
.login-link { display: inline-flex; align-items: center; justify-content: center; min-width: 110px; height: 52px; padding: 0 30px; border-radius: 999px; background: #fff; box-shadow: 0 10px 28px rgba(32, 51, 94, 0.11); color: #1d2a3f; font-weight: 700; }
.start-link { min-width: 112px; min-height: 52px; padding: 0 30px; border-radius: 999px; background: #2e7cdc; box-shadow: 0 12px 28px rgba(46, 124, 220, 0.24); font-size: 16px; font-weight: 800; }
.language-menu { border-right: 1px solid #ced3d9; padding-right: 17px; }
.lang-current { min-width: 76px; height: 52px; padding: 0; gap: 8px; color: #26364f; font-size: 16px; font-weight: 650; }
.flag { display: inline-flex; width: 24px; height: 18px; align-items: center; justify-content: center; font-size: 20px; line-height: 1; border-radius: 2px; overflow: hidden; }
.lang-options { top: calc(100% - 10px); left: 0; right: auto; min-width: 190px; padding: 12px; gap: 2px; border: 0; border-radius: 4px; box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.lang-options a { gap: 10px; min-height: 44px; padding: 0 8px; border-radius: 4px; color: #222; font-size: 16px; font-weight: 500; }
.lang-options a:hover { background: #f4f7ff; color: #2e7cdc; }

.hero.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  gap: 72px;
  width: min(1200px, calc(100% - 40px));
  min-height: 655px;
  margin: 0 auto;
  padding: 86px 0 54px;
  text-align: left;
}
.hero-copy { max-width: 664px; justify-self: start; padding-top: 8px; }
.hero-kicker { margin: 0 0 27px; color: #2d74ff; font-size: 16px; line-height: 24px; font-weight: 800; }
.hero h1 {
  max-width: 664px;
  margin: 0 0 20px;
  color: #000;
  font-size: 48px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}
.hero-text { max-width: 640px; margin: 0; color: #435b76; font-size: 18px; line-height: 30px; font-weight: 400; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 14px; max-width: 560px; margin: 42px 0 40px; }
.hero-pills span { min-height: 43px; padding: 0 22px; border: 0; border-radius: 10px; background: rgba(255,255,255,0.58); box-shadow: none; color: #111827; font-size: 16px; font-weight: 700; }
.hero-buttons { justify-content: flex-start; gap: 20px; margin: 0; }
.button { min-height: 62px; padding: 0 42px; border-radius: 999px; font-size: 16px; line-height: 1; font-weight: 800; }
.button.primary { background: #2e67f8; box-shadow: 0 14px 30px rgba(46, 103, 248, 0.22); }
.button.secondary { min-width: 258px; color: #111827; background: rgba(255,255,255,0.86); border: 1px solid rgba(231,237,246,0.9); box-shadow: 0 10px 24px rgba(31,67,114,0.08); }

.hero-illustration {
  justify-self: end;
  width: 520px;
  height: 520px;
  aspect-ratio: auto;
  position: relative;
  border-radius: 34px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: 0 28px 72px rgba(47, 70, 112, 0.12);
  overflow: hidden;
}
.profile-stack { position: absolute; inset: 36px; }
.profile-bg { inset: 0; border-radius: 20px; background: rgba(255,255,255,0.78); border: 1px solid rgba(227,237,250,0.95); }
.ghost-app { grid-template-columns: 1fr 16px 16px; gap: 12px; padding: 25px 26px; color: rgba(32,51,94,0.22); font-size: 12px; font-weight: 800; }
.ghost-app i { width: 14px; height: 14px; background: rgba(32,51,94,0.14); }
.ghost-row { left: 28px; right: 250px; height: 39px; padding: 0 12px; border-radius: 7px; color: rgba(48,64,88,0.34); background: rgba(244,248,255,0.86); font-size: 13px; font-weight: 700; }
.ghost-row button { width: 40px; height: 25px; border-color: rgba(184,203,232,0.62); border-radius: 8px; }
.ghost-row.fb { top: 118px; }
.ghost-row.amz { top: 206px; }
.ghost-row.rd { top: 294px; }
.profile-card { width: 272px; height: 218px; border-radius: 14px; box-shadow: 0 18px 34px rgba(25,37,56,0.2); border: 1px solid rgba(23,31,45,0.2); }
.card-bar { height: 38px; padding: 0 12px; background: #3b414b; color: #cbd5e1; font-size: 11px; }
.card-bar i { width: 10px; height: 10px; }
.profile-card b { height: 48px; padding-top: 8px; font-size: 26px; line-height: 1.15; font-weight: 800; }
.profile-card small { margin: 17px 0 7px; color: #596579; font-size: 12px; font-weight: 700; }
.card-one { right: 18px; top: 58px; }
.card-one b { background: linear-gradient(90deg, #5866c9, #8490e6); }
.card-two { right: 58px; top: 178px; }
.card-two b { background: #111; font-family: Georgia, serif; }
.input-line { width: 118px; height: 16px; margin: 7px auto; border-radius: 4px; background: #edf2f7; }
.input-line.short { width: 92px; background: #ff7f42; }
.phone-card { right: 8px; bottom: 46px; width: 128px; height: 246px; border-width: 7px; border-radius: 25px; box-shadow: 0 18px 34px rgba(25,37,56,0.24); }
.phone-top { width: 92px; height: 20px; margin: 18px auto 18px; }
.app-icons { gap: 7px; padding: 9px; }
.app-icons span { height: 22px; border-radius: 4px; font-size: 9px; }

.workspace-section { width: min(1200px, calc(100% - 40px)); margin: -8px auto 0; padding: 0 0 72px; }
.wide-window { border-radius: 26px 26px 0 0; box-shadow: 0 18px 48px rgba(31, 67, 114, 0.12); }
.wide-window .app-shell { min-height: 500px; }
.wide-window .app-sidebar { padding-top: 38px; }
.wide-window .app-sidebar b { font-size: 28px; }
.wide-window .status-grid b { font-size: 36px; }

.split-section, .automation-band, .cases-section, .download-section, .trial-section, .faq-section, .footer { width: min(1200px, calc(100% - 40px)); }
.section-copy h2, .center-heading h2, .download-copy h2, .trial-section h2 { font-size: 42px; line-height: 1.28; font-weight: 800; }
.section-copy p, .center-heading p, .download-copy p, .trial-section p { color: #435b76; font-size: 18px; line-height: 30px; }
.inline-button { width: auto; }
.account-page .legal-content { text-align: left; }

@media (max-width: 1240px) {
  .topbar { padding-left: 30px; padding-right: 30px; }
  .hero.hero-split { grid-template-columns: 1fr; width: min(840px, calc(100% - 40px)); min-height: auto; gap: 40px; padding-top: 70px; text-align: center; }
  .hero-copy, .hero-illustration { justify-self: center; }
  .hero h1, .hero-text { margin-left: auto; margin-right: auto; }
  .hero-pills, .hero-buttons { justify-content: center; }
}

@media (max-width: 980px) {
  body::before { opacity: 0.45; }
  .topbar { grid-template-columns: auto 1fr auto; min-height: 74px; padding: 0 18px; }
  .brand { font-size: 20px; }
  .brand-logo { width: 34px; height: 34px; }
  .menu-button { display: block; justify-self: end; }
  .desktop-nav, .top-actions { display: none; }
  body.menu-open .desktop-nav, body.menu-open .top-actions { display: flex; grid-column: 1 / -1; justify-self: start; flex-wrap: wrap; padding: 8px 4px; line-height: 1.3; }
  body.menu-open .top-actions { align-items: flex-start; gap: 14px; }
  .language-menu { border-right: 0; padding-right: 0; }
  body.menu-open .language-menu { width: 100%; }
  body.menu-open .lang-options { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; margin-top: 8px; }
  .workspace-section { width: min(100% - 24px, 840px); }
}

@media (max-width: 640px) {
  body { background: linear-gradient(100deg, #dff4ff 0%, #f7fbff 100%); }
  .hero.hero-split { width: min(100% - 24px, 840px); padding-top: 50px; }
  .hero-kicker { font-size: 14px; line-height: 22px; margin-bottom: 18px; }
  .hero h1 { font-size: 36px; line-height: 1.18; }
  .hero-text { font-size: 16px; line-height: 26px; }
  .hero-pills { gap: 10px; margin: 26px 0 30px; }
  .hero-pills span { min-height: 38px; padding: 0 13px; border-radius: 8px; font-size: 13px; }
  .button { min-height: 48px; padding: 0 22px; font-size: 14px; }
  .button.secondary { min-width: 0; }
  .hero-illustration { width: 100%; height: auto; aspect-ratio: 0.92; border-radius: 24px; }
  .profile-stack { inset: 18px; }
  .ghost-row { right: 128px; left: 16px; }
  .profile-card { width: 210px; height: 174px; }
  .profile-card b { height: 40px; font-size: 22px; }
  .card-one { right: 8px; top: 66px; }
  .card-two { right: 46px; top: 162px; }
  .phone-card { width: 106px; height: 204px; right: 5px; bottom: 32px; }
  .workspace-section { margin-top: 0; }
  .section-copy h2, .center-heading h2, .download-copy h2, .trial-section h2 { font-size: 32px; line-height: 1.3; }
}

/* Product-image corrections from user supplied StoneLogin screenshot. */
.hero-pills {
  max-width: 520px;
  gap: 14px 15px;
  margin: 36px 0 40px;
}
.hero-pills span {
  min-height: 44px;
  padding: 0 21px;
  border-radius: 10px;
  background: rgba(255,255,255,0.62);
  color: #061225;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(31,67,114,0.04);
}
.hero-buttons {
  justify-content: flex-start;
  gap: 0;
}
.hero-buttons .button.primary {
  min-width: 142px;
}
.hero-illustration {
  height: 454px;
  border-radius: 36px;
  background: rgba(255,255,255,0.64);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-product-image {
  display: block;
  width: 790px;
  max-width: none;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 22px 46px rgba(22, 37, 63, 0.13);
  transform: translateX(-178px) translateY(-4px);
}
.screenshot-window {
  background: #fff;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
}
.workspace-image {
  display: block;
  width: 100%;
  height: auto;
}
.trial-section { display: none; }

@media (max-width: 1240px) {
  .hero-buttons { justify-content: center; }
  .hero-illustration { width: min(560px, 100%); height: 440px; }
}

@media (max-width: 640px) {
  .hero-pills { justify-content: center; max-width: none; gap: 10px; }
  .hero-pills span { min-height: 38px; padding: 0 13px; font-size: 13px; }
  .hero-illustration { height: 320px; padding: 20px; }
  .hero-product-image { width: 610px; transform: translateX(-146px) translateY(0); border-radius: 14px; }
  .screenshot-window { border-radius: 16px; }
}

/* Pricing and alignment refinements. */
.hero-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-height: 52px;
  padding: 0 28px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.hero-buttons .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  min-height: 70px;
  min-width: 220px;
  padding: 0 42px;
  line-height: 1;
  text-align: center;
}
.pricing-section {
  width: min(1200px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 86px 0 96px;
}
.pricing-heading {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}
.pricing-heading h2 {
  margin: 0 0 18px;
  color: #101a33;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 900;
}
.pricing-heading h2 span {
  color: #2e67f8;
  margin-right: 8px;
}
.pricing-heading p {
  margin: 0 auto;
  max-width: 780px;
  color: #435b76;
  font-size: 18px;
  line-height: 30px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d8e5ff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(47, 103, 248, 0.08);
}
.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 42px 42px 38px;
  border-right: 1px solid #d8e5ff;
}
.pricing-card:last-child { border-right: 0; }
.pricing-card.featured { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.pricing-card h3 {
  margin: 0 0 44px;
  color: #101a33;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  color: #0b376b;
  font-size: 18px;
  line-height: 1.3;
}
.pricing-row b {
  color: #0b376b;
  font-size: 22px;
  font-weight: 800;
  text-align: right;
}
.price {
  margin: 72px 0 8px;
  color: #075cff;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}
.pricing-card strong {
  color: #061225;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}
.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  margin: 42px 0 36px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}
.pricing-button.outline {
  color: #075cff;
  border: 2px solid #075cff;
  background: #fff;
}
.pricing-button.solid {
  color: #fff;
  border: 0;
  background: linear-gradient(100deg, #13c7df 0%, #235bff 100%);
}
.pricing-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #0b376b;
  font-size: 18px;
  line-height: 1.4;
}
.pricing-card li {
  position: relative;
  padding-left: 32px;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #075cff;
  font-weight: 900;
}
.footer-columns nav:first-child a[href="#automation"] { display: none; }

@media (max-width: 760px) {
  .pricing-section { width: min(100% - 24px, 1200px); padding: 54px 0 68px; }
  .pricing-heading h2 { font-size: 38px; }
  .pricing-heading p { font-size: 16px; line-height: 26px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: auto; padding: 30px 24px; border-right: 0; border-bottom: 1px solid #d8e5ff; }
  .pricing-card:last-child { border-bottom: 0; }
  .pricing-card h3 { margin-bottom: 28px; }
  .price { margin-top: 44px; font-size: 48px; }
  .hero-pills span { height: 42px; min-height: 42px; padding: 0 14px; }
  .hero-buttons .button.primary { height: 56px; min-height: 56px; min-width: 160px; }
}
