:root{
  --site-bg:#f4f0e8;
  --site-bg-deep:#efe7da;
  --site-surface:#fffdf8;
  --site-line:#ddd2c1;
  --site-text:#162538;
  --site-muted:#5f6b78;
  --site-accent:#1e63ff;
  --site-accent-deep:#0b3a85;
  --site-warm:#c86a3b;
  --site-navy:#10253b;
  --site-chip:#eef5ff;
  --site-chip-line:#bdd0ff;
  --site-shadow:0 18px 50px rgba(16,37,59,.09);
  --site-font-ui:"Avenir Next","Segoe UI","Helvetica Neue",sans-serif;
  --site-font-display:"Iowan Old Style","Palatino Linotype","Book Antiqua",Georgia,serif;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:var(--site-font-ui);
  color:var(--site-text);
  background:
    radial-gradient(circle at top left, rgba(200,106,59,.14), transparent 28%),
    radial-gradient(circle at top right, rgba(31,143,119,.12), transparent 26%),
    linear-gradient(180deg,var(--site-bg) 0%, var(--site-bg-deep) 100%);
}

a{color:inherit}

.site-shell{
  max-width:1240px;
  margin:0 auto;
  padding:24px 24px 48px;
}

.site-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,253,248,.72);
  backdrop-filter:blur(16px);
  border-radius:22px;
  box-shadow:var(--site-shadow);
}

.site-brand{
  text-decoration:none;
  font-weight:800;
  font-size:22px;
  letter-spacing:-.03em;
  color:var(--site-navy);
}

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.site-nav a{
  text-decoration:none;
  color:var(--site-muted);
  font-size:14px;
  font-weight:700;
}

.site-nav-item{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.site-nav-toggle{
  display:inline-grid;
  width:22px;
  height:22px;
  place-items:center;
  margin:0;
  padding:0;
  border:0;
  border-radius:999px;
  background:transparent;
  color:inherit;
  cursor:pointer;
}

.site-nav-toggle:hover,
.site-nav-item.is-open .site-nav-toggle{
  background:rgba(20,87,255,.08);
}

.site-nav-menu{
  position:absolute;
  top:calc(100% + 18px);
  left:50%;
  z-index:50;
  display:grid;
  min-width:220px;
  padding:8px;
  border:1px solid rgba(162,181,220,.38);
  border-radius:18px;
  background:rgba(255,255,255,.96);
  box-shadow:0 24px 58px rgba(7,26,68,.14);
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,8px);
  transition:opacity .18s ease-out, transform .18s ease-out;
  backdrop-filter:blur(18px);
}

.site-nav-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-18px;
  height:18px;
}

.site-nav-item:hover .site-nav-menu,
.site-nav-item:focus-within .site-nav-menu,
.site-nav-item.is-open .site-nav-menu{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.site-nav .site-nav-menu-link{
  display:block;
  padding:11px 13px;
  border-radius:13px;
  color:#071a44;
  text-decoration:none;
  transition:background-color .18s ease-out, color .18s ease-out;
}

.site-nav .site-nav-menu-link:hover{
  background:#f3f7ff;
  color:#0d3fae;
}

.site-nav .site-nav-menu-link strong{
  font-size:14px;
  font-weight:600;
  line-height:1.2;
}

.site-topbar-actions,
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.site-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid var(--site-line);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.site-button:hover{transform:translateY(-1px)}

.site-button.primary{
  border-color:var(--site-accent);
  background:linear-gradient(135deg,var(--site-accent) 0%, #2aa586 100%);
  color:#fff;
  box-shadow:0 10px 24px rgba(31,143,119,.24);
}

.site-button.subtle{
  background:rgba(255,253,248,.9);
  color:var(--site-navy);
}

.hero-section{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  margin-top:28px;
  align-items:start;
}

.hero-copy,
.hero-panel,
.site-section,
.cta-band,
.auth-side,
.auth-card{
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,253,248,.78);
  backdrop-filter:blur(14px);
  border-radius:28px;
  box-shadow:var(--site-shadow);
}

.hero-copy{
  padding:38px;
}

.hero-panel{
  padding:22px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--site-chip-line);
  background:var(--site-chip);
  color:var(--site-accent-deep);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.hero-copy h1,
.section-head h2,
.split-section h2,
.cta-band h2,
.auth-side h1{
  margin:18px 0 0;
  font-family:var(--site-font-display);
  letter-spacing:-.03em;
  line-height:.98;
  color:var(--site-navy);
}

.hero-copy h1{
  font-size:68px;
  max-width:760px;
}

.hero-text,
.section-copy,
.auth-copy{
  color:var(--site-muted);
  font-size:18px;
  line-height:1.7;
  margin-top:18px;
}

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.hero-chips span{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--site-line);
  background:#fff;
  font-size:13px;
  font-weight:700;
  color:var(--site-navy);
}

.hero-card{
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%, #f7f8f3 100%);
  border:1px solid var(--site-line);
}

.hero-card-large{
  margin-bottom:14px;
  background:linear-gradient(180deg,#10253b 0%, #1d3854 100%);
  color:#eff6ff;
  border-color:#27435f;
}

.hero-card-large h3{
  margin:10px 0 0;
  font-size:28px;
  line-height:1.1;
}

.hero-card-large p{
  color:#d8e3f4;
  line-height:1.7;
  margin-top:14px;
}

.hero-card-label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--site-warm);
}

.hero-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.hero-mini-grid strong,
.workflow-step h3,
.module-card strong,
.signal-item strong{
  display:block;
  margin-top:10px;
  font-size:18px;
}

.hero-mini-grid p,
.workflow-step p,
.module-card p,
.signal-item span{
  margin:10px 0 0;
  color:var(--site-muted);
  line-height:1.6;
  font-size:14px;
}

.site-section{
  margin-top:24px;
  padding:28px;
}

.section-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:end;
  margin-bottom:18px;
}

.section-head h2,
.split-section h2,
.cta-band h2{
  font-size:44px;
}

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

.workflow-step,
.module-card{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--site-line);
  background:#fff;
}

.workflow-step span{
  font-size:12px;
  font-weight:800;
  color:var(--site-accent-deep);
}

.split-section{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  padding:28px;
}

.signal-list{
  display:grid;
  gap:12px;
}

.signal-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--site-line);
  background:linear-gradient(180deg,#fff 0%, #fbfaf6 100%);
}

.cta-band{
  margin-top:24px;
  padding:26px 28px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

body[data-page="landing"]{
  overflow-x:hidden;
}

.landing-shell{
  max-width:1320px;
  padding-bottom:72px;
}

.landing-topbar{
  position:sticky;
  top:18px;
  z-index:20;
  background:rgba(255,252,247,.62);
  border-color:rgba(255,255,255,.52);
}

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

.site-brand-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--site-accent) 0%, var(--site-warm) 100%);
  box-shadow:0 0 0 6px rgba(31,143,119,.08);
}

.landing-main{
  padding-top:18px;
}

.landing-hero{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:26px;
  align-items:center;
}

.landing-copy{
  padding:26px 6px 12px 4px;
}

.landing-copy h1{
  margin:20px 0 0;
  font-family:var(--site-font-display);
  font-size:92px;
  line-height:.9;
  letter-spacing:-.07em;
  color:var(--site-navy);
}

.landing-subline{
  margin:18px 0 0;
  font-size:22px;
  font-weight:800;
  letter-spacing:-.03em;
  color:#314256;
}

.landing-chip-strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.landing-chip-strip span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(20,38,58,.08);
  box-shadow:0 12px 24px rgba(16,37,59,.04);
  font-size:12px;
  font-weight:800;
  color:var(--site-navy);
}

.landing-visual{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.landing-orbit,
.landing-shape{
  position:absolute;
  max-width:none;
  pointer-events:none;
  user-select:none;
}

.landing-orbit{
  width:420px;
  top:40px;
  right:-16px;
  opacity:.72;
  mix-blend-mode:screen;
}

.landing-shape{
  width:540px;
  left:-44px;
  bottom:0;
  opacity:.26;
}

.landing-dashboard{
  position:relative;
  z-index:2;
  width:min(100%, 720px);
  min-height:540px;
  padding:22px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right, rgba(31,143,119,.16) 0%, rgba(31,143,119,0) 26%),
    radial-gradient(circle at top left, rgba(200,106,59,.18) 0%, rgba(200,106,59,0) 22%),
    linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(254,249,242,.76) 100%);
  border:1px solid rgba(255,255,255,.64);
  backdrop-filter:blur(18px);
  box-shadow:0 34px 80px rgba(16,37,59,.14);
  transition:transform .28s ease;
  transform-style:preserve-3d;
}

.landing-dashboard-bar{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:46px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.66);
  border:1px solid rgba(20,38,58,.06);
  box-shadow:0 10px 24px rgba(16,37,59,.04);
}

.landing-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#d2d6de;
}

.landing-dot:first-child{background:#ff8a7a}
.landing-dot:nth-child(2){background:#f7ba4f}
.landing-dot:nth-child(3){background:#28c08d}

.landing-dashboard-bar strong{
  margin-left:8px;
  font-size:13px;
  font-weight:900;
  color:var(--site-navy);
  letter-spacing:.02em;
}

.landing-dashboard-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:16px;
  margin-top:18px;
}

.dashboard-glass{
  border-radius:26px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.78);
  box-shadow:0 16px 34px rgba(16,37,59,.06);
}

.dashboard-feature{
  padding:18px;
  min-height:168px;
}

.dashboard-feature.tall{
  grid-row:span 2;
  min-height:352px;
  background:linear-gradient(180deg,#10253b 0%, #183753 100%);
  color:#eff6ff;
  border-color:#234766;
}

.dashboard-feature.wide{
  grid-column:1 / -1;
  min-height:124px;
}

.dashboard-kicker{
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-warm);
}

.dashboard-feature.tall .dashboard-kicker{
  color:#9ad7c8;
}

.dashboard-feature h3{
  margin:14px 0 0;
  font-size:34px;
  line-height:1.03;
  letter-spacing:-.05em;
}

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

.dashboard-mini-stat-grid div{
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}

.dashboard-mini-stat-grid span,
.dashboard-list li span{
  display:block;
  font-size:12px;
  color:#b7cadf;
}

.dashboard-mini-stat-grid strong{
  display:block;
  margin-top:8px;
  font-size:26px;
  line-height:1;
}

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

.dashboard-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(20,38,58,.08);
}

.dashboard-list li strong{
  font-size:13px;
  color:var(--site-muted);
}

.dashboard-list li span{
  color:var(--site-navy);
  font-size:14px;
  font-weight:800;
  text-align:right;
}

.dashboard-score-row{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:16px;
}

.dashboard-score{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:82px;
  height:82px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--site-accent) 0%, #2aa586 100%);
  color:#fff;
  font-size:28px;
  font-weight:900;
  box-shadow:0 16px 30px rgba(31,143,119,.22);
}

.dashboard-score-row strong{
  display:block;
  font-size:18px;
  line-height:1.1;
}

.dashboard-score-row p{
  margin:8px 0 0;
  color:var(--site-muted);
  font-size:14px;
  line-height:1.55;
}

.dashboard-rail{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.dashboard-rail span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(20,38,58,.08);
  font-size:13px;
  font-weight:800;
}

.floating-insight{
  position:absolute;
  z-index:3;
  max-width:240px;
  padding:16px 18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.7);
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(18px);
  box-shadow:0 22px 44px rgba(16,37,59,.12);
}

.floating-insight span{
  display:block;
  font-size:11px;
  font-weight:900;
  color:var(--site-accent-deep);
  letter-spacing:.1em;
  text-transform:uppercase;
}

.floating-insight strong{
  display:block;
  margin-top:10px;
  font-size:17px;
  line-height:1.15;
}

.insight-left{
  left:-10px;
  bottom:88px;
}

.insight-right{
  right:-8px;
  top:132px;
}

.solutions-stage,
.landing-ribbon,
.product-stage{
  margin-top:24px;
}

.section-head-tight{
  margin-bottom:16px;
}

.solutions-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:16px;
}

.solution-card,
.product-proof{
  padding:24px;
  border-radius:28px;
  background:rgba(255,253,248,.78);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:var(--site-shadow);
}

.solution-card-large{
  grid-row:span 2;
}

.solution-card span,
.product-proof span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.solution-card strong,
.product-proof strong{
  display:block;
  margin-top:16px;
  font-size:34px;
  line-height:1.02;
  letter-spacing:-.05em;
  color:var(--site-navy);
}

.solution-card p,
.product-proof p{
  margin:14px 0 0;
  font-size:14px;
  line-height:1.65;
  color:var(--site-muted);
}

.solution-card-accent,
.product-proof.accent{
  background:linear-gradient(180deg,#0d45c7 0%, #061b4f 100%);
  border-color:#1e63ff;
}

.solution-card-accent span,
.product-proof.accent span{
  color:#d8fff5;
}

.solution-card-accent strong,
.product-proof.accent strong{
  color:#f7fffd;
}

.solution-card-accent p,
.product-proof.accent p{
  color:#e7fffa;
}

.ribbon-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.workflow-ribbon .ribbon-card{
  min-height:166px;
}

.ribbon-card{
  min-height:190px;
  padding:22px;
  border-radius:28px;
  background:rgba(255,253,248,.76);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:var(--site-shadow);
}

.ribbon-card span{
  display:block;
  font-size:12px;
  font-weight:900;
  color:var(--site-warm);
}

.ribbon-card strong{
  display:block;
  margin-top:18px;
  font-size:32px;
  line-height:.98;
  letter-spacing:-.05em;
}

.ribbon-card p{
  margin:14px 0 0;
  font-size:14px;
  line-height:1.6;
  color:var(--site-muted);
}

.product-stage{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:16px;
}

.product-stage-copy{
  padding:30px 6px 0 0;
}

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

.product-proof.dark{
  background:linear-gradient(180deg,#10253b 0%, #183753 100%);
  border-color:#234766;
}

.product-proof.dark span{
  color:#9ad7c8;
}

.product-proof.dark strong{
  color:#eff6ff;
}

.landing-cta{
  margin-top:24px;
}

body[data-page="landing"] [data-reveal]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

body[data-page="landing"] [data-reveal].is-visible{
  opacity:1;
  transform:none;
}

.auth-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  max-width:1180px;
  margin:0 auto;
  padding:28px 24px;
  align-items:stretch;
}

.auth-side,
.auth-card{
  padding:30px;
}

.auth-benefits{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.auth-benefits div{
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--site-line);
}

.auth-benefits strong{
  display:block;
  margin-bottom:6px;
}

.auth-benefits span,
.auth-meta{
  color:var(--site-muted);
  line-height:1.6;
  font-size:14px;
}

.auth-tabs{
  display:flex;
  gap:10px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.auth-tab{
  border:1px solid var(--site-line);
  background:#fff;
  color:var(--site-text);
  border-radius:999px;
  min-height:42px;
  padding:0 16px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}

.auth-tab.active{
  background:var(--site-navy);
  border-color:var(--site-navy);
  color:#fff;
}

.auth-banner{
  margin:14px 0;
  padding:12px 14px;
  border-radius:16px;
  background:#eef8f5;
  border:1px solid #bedfd6;
  color:var(--site-accent-deep);
  font-size:14px;
  line-height:1.6;
}

.auth-form{
  display:grid;
  gap:12px;
  margin-top:18px;
}

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

.auth-form label{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  font-weight:700;
  color:var(--site-muted);
}

.auth-form input{
  width:100%;
  min-height:48px;
  border-radius:16px;
  border:1px solid var(--site-line);
  background:#fff;
  color:var(--site-text);
  font:inherit;
  padding:0 14px;
}

.auth-submit{
  width:100%;
  margin-top:6px;
}

body[data-page="auth"]{
  min-height:100vh;
  overflow-x:hidden;
}

.auth-shell{
  max-width:1320px;
  gap:28px;
  padding:28px 24px 40px;
}

.auth-side-v2,
.auth-card-v2{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.58);
  background:rgba(255,253,248,.78);
  backdrop-filter:blur(18px);
  border-radius:34px;
  box-shadow:0 24px 64px rgba(16,37,59,.10);
}

.auth-side-v2{
  display:flex;
  flex-direction:column;
  min-height:680px;
  background:
    radial-gradient(circle at top left, rgba(31,143,119,.16) 0%, rgba(31,143,119,0) 30%),
    radial-gradient(circle at top right, rgba(200,106,59,.16) 0%, rgba(200,106,59,0) 26%),
    linear-gradient(180deg, rgba(255,253,248,.84) 0%, rgba(248,241,231,.78) 100%);
}

.auth-card-v2{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:680px;
  background:
    radial-gradient(circle at top right, rgba(31,143,119,.14) 0%, rgba(31,143,119,0) 24%),
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(250,245,237,.88) 100%);
}

.auth-subline{
  margin:14px 0 0;
  font-size:18px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-.03em;
  color:#314256;
}

.auth-proof-strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.auth-proof-strip span,
.auth-preview-inline span,
.auth-inline-tags span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.76);
  font-size:12px;
  font-weight:800;
  color:#173047;
}

.auth-side-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:22px;
}

.auth-side-links a{
  color:#425468;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}

.auth-visual-stage{
  position:relative;
  flex:1;
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:22px;
}

.auth-orbit,
.auth-shape{
  position:absolute;
  max-width:none;
  pointer-events:none;
  user-select:none;
}

.auth-orbit{
  width:360px;
  right:10px;
  top:24px;
  opacity:.72;
}

.auth-shape{
  width:460px;
  left:-24px;
  bottom:-18px;
  opacity:.22;
}

.auth-preview-shell{
  position:relative;
  z-index:2;
  width:min(100%, 500px);
  padding:18px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.62);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(18px);
  box-shadow:0 28px 60px rgba(16,37,59,.10);
  transition:transform .24s ease;
  transform-style:preserve-3d;
}

.auth-preview-bar{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(20,38,58,.08);
}

.auth-preview-bar strong{
  margin-left:8px;
  font-size:13px;
  font-weight:900;
  color:var(--site-navy);
}

.auth-preview-grid{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.auth-preview-card{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.82);
  box-shadow:0 14px 28px rgba(16,37,59,.05);
}

.auth-preview-card span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.auth-preview-card strong{
  display:block;
  margin-top:14px;
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.05em;
}

.auth-preview-inline{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.auth-preview-card-dark{
  background:linear-gradient(180deg,#10253b 0%, #183753 100%);
  border-color:#234766;
  color:#eff6ff;
}

.auth-preview-card-dark span{
  color:#9ad7c8;
}

.auth-floating-note{
  position:absolute;
  z-index:3;
  max-width:220px;
  padding:16px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.72);
  background:rgba(255,255,255,.84);
  box-shadow:0 20px 40px rgba(16,37,59,.10);
  backdrop-filter:blur(16px);
}

.auth-floating-note span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.auth-floating-note strong{
  display:block;
  margin-top:10px;
  font-size:16px;
  line-height:1.18;
}

.auth-floating-left{
  left:0;
  bottom:32px;
}

.auth-floating-right{
  right:0;
  top:46px;
}

.auth-card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}

.auth-card-head h2{
  margin:14px 0 0;
  font-family:var(--site-font-display);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.06em;
  color:var(--site-navy);
}

.auth-tabs{
  padding:6px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(20,38,58,.08);
  box-shadow:0 10px 22px rgba(16,37,59,.04);
}

.auth-tab{
  border:1px solid transparent;
  background:transparent;
  min-height:44px;
  padding:0 18px;
}

.auth-tab.active{
  background:linear-gradient(135deg,#10253b 0%, #183753 100%);
  border-color:#183753;
  box-shadow:0 12px 24px rgba(16,37,59,.18);
}

.auth-banner{
  margin:18px 0 0;
  border-radius:20px;
}

.auth-meta{
  margin-top:16px;
  max-width:520px;
}

.auth-form{
  gap:14px;
  margin-top:22px;
}

.auth-form label{
  margin-bottom:8px;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:900;
}

.auth-form input{
  min-height:56px;
  border-radius:18px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.82);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
}

.auth-submit{
  min-height:54px;
  margin-top:8px;
}

.auth-mini-row,
.auth-inline-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}

.auth-mini-row span,
.auth-inline-tags span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(20,38,58,.08);
  font-size:12px;
  font-weight:800;
  color:var(--site-navy);
}

@media (max-width: 1080px){
  .landing-hero,
  .hero-section,
  .split-section,
  .auth-shell,
  .product-stage{
    grid-template-columns:1fr;
  }

  .solutions-grid,
  .ribbon-grid,
  .product-proof-grid,
  .workflow-grid,
  .module-grid,
  .hero-mini-grid{
    grid-template-columns:1fr;
  }

  .auth-side-v2,
  .auth-card-v2{
    min-height:auto;
  }

  .auth-visual-stage{
    min-height:360px;
  }

  .auth-card-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .landing-copy h1{
    font-size:68px;
  }

  .landing-visual{
    min-height:640px;
  }

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

  .dashboard-feature.tall,
  .dashboard-feature.wide,
  .solution-card-large{
    grid-row:auto;
    grid-column:auto;
  }

  .hero-copy h1{
    font-size:48px;
  }

  .section-head h2,
  .split-section h2,
  .cta-band h2{
    font-size:34px;
  }

  .cta-band,
  .site-topbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-nav{
    flex-wrap:wrap;
  }
}

@media (max-width: 720px){
  .site-shell,
  .auth-shell{
    padding:16px;
  }

  .landing-topbar{
    top:10px;
  }

  .auth-shell{
    gap:18px;
  }

  .landing-copy h1{
    font-size:52px;
  }

  .landing-subline{
    font-size:18px;
  }

  .landing-visual{
    min-height:560px;
  }

  .landing-dashboard{
    padding:16px;
    border-radius:26px;
  }

  .landing-orbit{
    width:280px;
    right:-18px;
    top:60px;
  }

  .landing-shape{
    width:360px;
    left:-50px;
  }

  .auth-card-head h2{
    font-size:40px;
  }

  .auth-subline{
    font-size:17px;
  }

  .auth-visual-stage{
    min-height:auto;
    display:block;
  }

  .auth-preview-shell{
    width:100%;
    padding:14px;
    border-radius:24px;
  }

  .auth-preview-card strong{
    font-size:22px;
  }

  .auth-orbit{
    width:240px;
    right:-30px;
    top:26px;
  }

  .auth-shape{
    width:300px;
    left:-56px;
  }

  .auth-floating-note{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    max-width:none;
    margin-top:12px;
  }

  .floating-insight{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    top:auto;
    margin-top:12px;
    max-width:none;
  }

  .hero-copy,
  .hero-panel,
  .site-section,
  .cta-band,
  .auth-side,
  .auth-card{
    padding:20px;
    border-radius:22px;
  }

  .hero-copy h1{
    font-size:40px;
  }

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

.auth-mini-row{
  gap:8px;
}
}

body::-webkit-scrollbar{
  width:12px;
}

body::-webkit-scrollbar-track{
  background:rgba(255,255,255,.34);
}

body::-webkit-scrollbar-thumb{
  border-radius:999px;
  background:linear-gradient(180deg, rgba(16,37,59,.28), rgba(31,143,119,.36));
  border:2px solid rgba(255,255,255,.55);
}

body[data-page="landing"]::before,
body[data-page="auth"]::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(125deg, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 20% 16%, rgba(255,255,255,.2), transparent 20%),
    radial-gradient(circle at 88% 22%, rgba(31,143,119,.08), transparent 16%);
  mix-blend-mode:soft-light;
  opacity:.75;
}

.site-button,
.workflow-step,
.module-card,
.signal-item,
.marquee-card,
.ribbon-card,
.signal-panel,
.mosaic-card,
.floating-insight,
.auth-preview-card,
.auth-floating-note,
.auth-benefits div{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.site-button:hover,
.workflow-step:hover,
.module-card:hover,
.signal-item:hover,
.marquee-card:hover,
.ribbon-card:hover,
.signal-panel:hover,
.mosaic-card:hover,
.floating-insight:hover,
.auth-preview-card:hover,
.auth-floating-note:hover,
.auth-benefits div:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(16,37,59,.1);
}

.landing-topbar{
  transition:background .18s ease, box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

.landing-topbar.is-scrolled{
  background:rgba(255,252,247,.84);
  border-color:rgba(255,255,255,.74);
  box-shadow:0 18px 46px rgba(16,37,59,.12);
}

.landing-dashboard::before,
.auth-preview-shell::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(120deg, rgba(255,255,255,.42), transparent 28%, transparent 72%, rgba(255,255,255,.18));
  opacity:.7;
}

.landing-dashboard::after,
.auth-preview-shell::after{
  content:"";
  position:absolute;
  inset:auto auto 18px 18px;
  width:110px;
  height:110px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(31,143,119,.14), rgba(31,143,119,0));
  pointer-events:none;
  filter:blur(6px);
}

.floating-insight,
.auth-floating-note{
  animation:siteFloat 7s ease-in-out infinite;
}

.floating-insight.insight-right,
.auth-floating-note.auth-floating-right{
  animation-delay:-2.2s;
}

.landing-orbit,
.auth-orbit{
  animation:siteSpinDrift 24s linear infinite;
}

.landing-shape,
.auth-shape{
  animation:sitePulse 9s ease-in-out infinite;
}

.landing-chip-strip span,
.dashboard-rail span,
.mosaic-flow span{
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.landing-chip-strip span:hover,
.dashboard-rail span:hover,
.mosaic-flow span:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(16,37,59,.08);
  border-color:rgba(31,143,119,.18);
}

.auth-side-v2,
.auth-card-v2,
.auth-preview-card,
.auth-floating-note{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .65s ease, transform .65s ease;
  transition-delay:var(--auth-delay, 0ms);
}

.auth-side-v2.is-visible,
.auth-card-v2.is-visible,
.auth-preview-card.is-visible,
.auth-floating-note.is-visible{
  opacity:1;
  transform:none;
}

@keyframes siteFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

@keyframes siteSpinDrift{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@keyframes sitePulse{
  0%,100%{transform:scale(1); opacity:.24}
  50%{transform:scale(1.04); opacity:.32}
}

.site-nav a.active{
  color:var(--site-navy);
}

.site-link-arrow{
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  color:var(--site-accent-deep);
}

.solution-card,
.ribbon-card,
.product-proof,
.detail-next-card{
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.solution-card:hover,
.ribbon-card:hover,
.product-proof:hover,
.detail-next-card:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 54px rgba(16,37,59,.10);
  border-color:rgba(20,38,58,.12);
}

body[data-page="detail"]{
  overflow-x:hidden;
}

.detail-shell{
  max-width:1320px;
  padding-bottom:72px;
}

.detail-main{
  padding-top:18px;
}

.detail-hero{
  padding:30px 4px 8px;
}

.detail-hero h1{
  margin:18px 0 0;
  font-family:var(--site-font-display);
  font-size:78px;
  line-height:.92;
  letter-spacing:-.07em;
  color:var(--site-navy);
  max-width:920px;
}

.detail-lead{
  margin:18px 0 0;
  max-width:760px;
  color:#314256;
  font-size:22px;
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.3;
}

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

.detail-chip-row span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(20,38,58,.08);
  box-shadow:0 12px 24px rgba(16,37,59,.04);
  font-size:12px;
  font-weight:800;
  color:var(--site-navy);
}

.detail-stat-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:16px;
}

.detail-stat,
.detail-panel,
.detail-next-card{
  padding:22px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,253,248,.78);
  box-shadow:var(--site-shadow);
}

.detail-stat span,
.detail-next-card span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.detail-stat strong,
.detail-next-card strong{
  display:block;
  margin-top:14px;
  font-size:28px;
  line-height:1.04;
  letter-spacing:-.05em;
  color:var(--site-navy);
}

.detail-stat p,
.detail-panel p,
.detail-next-card p{
  margin:14px 0 0;
  font-size:14px;
  line-height:1.65;
  color:var(--site-muted);
}

.detail-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}

.detail-panel h3{
  margin:0;
  font-size:28px;
  line-height:1.02;
  letter-spacing:-.05em;
  color:var(--site-navy);
}

.detail-next-stage{
  margin-top:24px;
}

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

.detail-overview-grid{
  margin-top:16px;
}

.solutions-hero .detail-lead{
  max-width:640px;
}

.solutions-tabs-shell{
  margin-top:16px;
}

.solutions-tab-rail{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.solutions-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.78);
  color:#19324a;
  font:inherit;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(16,37,59,.04);
}

.solutions-tab.active{
  background:linear-gradient(135deg,var(--site-accent) 0%, #2aa586 100%);
  border-color:var(--site-accent);
  color:#fff;
  box-shadow:0 16px 30px rgba(31,143,119,.20);
}

.solutions-tab-panels{
  position:relative;
}

.solution-focus-panel{
  display:none;
  grid-template-columns:minmax(0,1.05fr) 360px;
  gap:18px;
  align-items:stretch;
}

.solution-focus-panel.active{
  display:grid;
}

.solution-focus-copy,
.solution-focus-visual{
  border-radius:30px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,253,248,.78);
  box-shadow:var(--site-shadow);
}

.solution-focus-copy{
  padding:28px;
}

.solution-focus-copy h2{
  margin:18px 0 0;
  font-family:var(--site-font-display);
  font-size:54px;
  line-height:.96;
  letter-spacing:-.06em;
  color:var(--site-navy);
  max-width:700px;
}

.solution-focus-lead{
  margin:16px 0 0;
  max-width:620px;
  color:#314256;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.35;
}

.solution-focus-chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.solution-focus-chips span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(20,38,58,.08);
  font-size:12px;
  font-weight:800;
  color:var(--site-navy);
}

.solution-focus-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:20px;
}

.solution-focus-stat{
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.84);
  box-shadow:0 12px 24px rgba(16,37,59,.04);
}

.solution-focus-stat span,
.solution-visual-card span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.solution-focus-stat strong,
.solution-visual-card strong{
  display:block;
  margin-top:12px;
  font-size:26px;
  line-height:1.02;
  letter-spacing:-.05em;
  color:var(--site-navy);
}

.solution-focus-stat p{
  margin:12px 0 0;
  font-size:13px;
  line-height:1.55;
  color:var(--site-muted);
}

.solution-focus-copy .hero-actions{
  margin-top:20px;
}

.solution-focus-visual{
  padding:18px;
  background:
    radial-gradient(circle at top right, rgba(31,143,119,.14) 0%, rgba(31,143,119,0) 28%),
    linear-gradient(180deg,#10253b 0%, #183753 100%);
}

.solution-visual-card{
  min-height:100%;
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.solution-visual-card strong{
  color:#f4fbff;
}

.solution-visual-card ul{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.solution-visual-card li{
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#e4eef8;
  font-size:14px;
  line-height:1.45;
}

@media (max-width: 1080px){
  .detail-stat-strip,
  .detail-grid,
  .detail-next-grid{
    grid-template-columns:1fr;
  }

  .detail-hero h1{
    font-size:56px;
  }

  .solution-focus-panel{
    grid-template-columns:1fr;
  }

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

.marketing-main{
  padding-top:26px;
}

.marketing-hero-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:52px 16px 20px;
}

.marketing-hero-compact{
  padding-top:28px;
  padding-bottom:12px;
}

.marketing-hero-title{
  margin:18px 0 0;
  max-width:920px;
  font-family:var(--site-font-display);
  font-size:72px;
  line-height:.95;
  letter-spacing:-.07em;
  color:var(--site-navy);
}

.marketing-hero-copy{
  margin:16px 0 0;
  max-width:640px;
  color:#314256;
  font-size:18px;
  line-height:1.45;
  font-weight:700;
}

.marketing-hero-actions{
  margin-top:22px;
}

.marketing-stage{
  margin-top:18px;
}

.marketing-stage-shell{
  max-width:720px;
  margin:0 auto;
  border-radius:24px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(20,38,58,.10);
  box-shadow:0 24px 54px rgba(16,37,59,.10);
  overflow:hidden;
}

.marketing-stage-row{
  min-height:72px;
  padding:0 24px;
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.76);
}

.marketing-stage-row span{
  font-size:22px;
  line-height:1.1;
  letter-spacing:-.03em;
  color:#294155;
}

.marketing-stage-thumbs{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  padding:18px 20px 20px;
  background:#faf8f2;
}

.marketing-thumb{
  min-height:96px;
  border-radius:14px;
  border:1px solid rgba(20,38,58,.08);
  background:linear-gradient(180deg,#ffffff 0%, #edf2f4 100%);
}

.marketing-thumb.accent{
  background:linear-gradient(180deg,#ffffff 0%, #ebf7f2 100%);
}

.marketing-split-band{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:28px;
}

.marketing-band-card{
  text-decoration:none;
  padding:20px;
  border-radius:22px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.78);
  box-shadow:0 16px 32px rgba(16,37,59,.05);
}

.marketing-band-card span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.marketing-band-card strong{
  display:block;
  margin-top:14px;
  font-size:28px;
  line-height:1.04;
  letter-spacing:-.05em;
  color:var(--site-navy);
}

.marketing-proof-section{
  margin-top:28px;
}

.marketing-proof-copy{
  text-align:center;
  padding:0 16px;
}

.marketing-proof-copy h2{
  margin:18px 0 0;
  font-family:var(--site-font-display);
  font-size:54px;
  line-height:.98;
  letter-spacing:-.06em;
  color:var(--site-navy);
}

.marketing-proof-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}

.marketing-proof-card{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.78);
  box-shadow:0 16px 32px rgba(16,37,59,.05);
}

.marketing-proof-card span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.marketing-proof-card strong{
  display:block;
  margin-top:14px;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.05em;
  color:var(--site-navy);
}

.marketing-proof-card.accent{
  background:linear-gradient(180deg,#0f3550 0%, #204867 100%);
  border-color:#234766;
}

.marketing-proof-card.accent span{
  color:#9ad7c8;
}

.marketing-proof-card.accent strong{
  color:#f2f7ff;
}

.solutions-tabs-shell{
  margin-top:10px;
}

.solutions-tab-rail{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.solutions-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(20,38,58,.08);
  background:rgba(255,255,255,.82);
  color:#19324a;
  font:inherit;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(16,37,59,.04);
}

.solutions-tab.active{
  background:linear-gradient(135deg,var(--site-accent) 0%, #2aa586 100%);
  border-color:var(--site-accent);
  color:#fff;
  box-shadow:0 16px 30px rgba(31,143,119,.20);
}

.solution-focus-panel{
  display:none;
  grid-template-columns:minmax(0,1.05fr) 320px;
  gap:18px;
  align-items:stretch;
}

.solution-focus-panel.active{
  display:grid;
}

.solution-focus-copy,
.solution-focus-visual{
  border-radius:24px;
  border:1px solid rgba(20,38,58,.08);
  box-shadow:0 18px 38px rgba(16,37,59,.06);
}

.solution-focus-copy{
  padding:24px;
  background:rgba(255,255,255,.82);
}

.solution-focus-copy h2{
  margin:16px 0 0;
  font-family:var(--site-font-display);
  font-size:50px;
  line-height:.98;
  letter-spacing:-.06em;
  color:var(--site-navy);
}

.solution-focus-lead{
  margin:14px 0 0;
  max-width:620px;
  color:#314256;
  font-size:16px;
  font-weight:700;
  line-height:1.45;
}

.solution-focus-chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.solution-focus-chips span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(20,38,58,.08);
  font-size:12px;
  font-weight:800;
  color:var(--site-navy);
}

.solution-focus-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.solution-focus-stat{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(20,38,58,.08);
  background:#fff;
}

.solution-focus-stat span,
.solution-visual-card span{
  display:block;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--site-accent-deep);
}

.solution-focus-stat strong,
.solution-visual-card strong{
  display:block;
  margin-top:10px;
  font-size:22px;
  line-height:1.06;
  letter-spacing:-.05em;
}

.solution-focus-stat p{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.5;
  color:var(--site-muted);
}

.solution-focus-copy .hero-actions{
  margin-top:18px;
}

.solution-focus-visual{
  padding:16px;
  background:linear-gradient(180deg,#10253b 0%, #183753 100%);
}

.solution-visual-card{
  min-height:100%;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
}

.solution-visual-card strong{
  color:#f4fbff;
}

.solution-visual-card ul{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.solution-visual-card li{
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#e4eef8;
  font-size:14px;
  line-height:1.4;
}

@media (max-width: 1080px){
  .marketing-hero-title{
    font-size:54px;
  }

  .marketing-split-band,
  .marketing-proof-grid,
  .solution-focus-panel,
  .solution-focus-stat-grid{
    grid-template-columns:1fr;
  }
}

/* Landing header: Frame brand system. */
body[data-page="landing"]{
  background:#f7f5ef;
}

body[data-page="landing"] .landing-shell{
  max-width:none;
  width:100%;
  padding:0 0 72px;
}

body[data-page="landing"] .marketing-main{
  max-width:1180px;
  margin:0 auto;
  padding:34px 24px 0;
}

.landing-offer-bar{
  width:min(1630px, calc(100% - 0px));
  min-height:90px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:12px 28px;
  background:#eef5ff;
  color:#24343b;
}

.landing-offer-mascot{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:#f7fffb;
  border:2px solid rgba(30,99,255,.20);
  box-shadow:0 8px 18px rgba(30,64,175,.08);
  color:#1e63ff;
  font-size:18px;
  font-weight:1000;
  letter-spacing:-.05em;
}

.landing-offer-bar strong{
  font-size:22px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.02em;
}

.landing-offer-bar strong span{
  color:#1e63ff;
}

.landing-offer-bar a{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:10px;
  border:3px solid #1e63ff;
  background:rgba(255,255,255,.62);
  color:#1e63ff;
  text-decoration:none;
  font-size:19px;
  font-weight:900;
  box-shadow:0 4px 8px rgba(30,64,175,.18);
}

body[data-page="landing"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:40;
  width:100%;
  min-height:94px;
  margin:0;
  padding:0 38px;
  border:0;
  border-radius:0;
  background:#26373c;
  box-shadow:none;
  backdrop-filter:none;
}

body[data-page="landing"] .landing-topbar.is-scrolled{
  background:#26373c;
  border:0;
  box-shadow:none;
}

body[data-page="landing"] .site-brand{
  min-width:260px;
  gap:0;
}

body[data-page="landing"] .site-brand-text{
  color:#7aa7ff;
  font-size:43px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.055em;
}

body[data-page="landing"] .site-nav{
  gap:38px;
  flex:1;
  justify-content:center;
}

body[data-page="landing"] .site-nav a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.88);
  font-size:21px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.035em;
}

body[data-page="landing"] .site-nav a.active,
body[data-page="landing"] .site-nav a:hover{
  color:#fff;
}

.site-nav-caret{
  color:rgba(255,255,255,.55);
  font-size:22px;
  line-height:1;
  transform:translateY(-1px);
}

body[data-page="landing"] .site-topbar-actions{
  min-width:180px;
  justify-content:flex-end;
}

body[data-page="landing"] .site-button.primary{
  min-height:56px;
  padding:0 24px;
  border-radius:10px;
  border:0;
  background:#1e63ff;
  color:#fff;
  box-shadow:0 6px 12px rgba(0,0,0,.24);
  font-size:16px;
  font-weight:900;
}

body[data-page="landing"] .site-button.primary:hover{
  transform:translateY(-1px);
  box-shadow:0 9px 18px rgba(0,0,0,.28);
}

@media (max-width: 1100px){
  body[data-page="landing"] .landing-topbar{
    min-height:auto;
    padding:22px 24px;
    flex-wrap:wrap;
  }

  body[data-page="landing"] .site-brand{
    min-width:auto;
  }

  body[data-page="landing"] .site-nav{
    order:3;
    width:100%;
    justify-content:flex-start;
    gap:18px;
    flex-wrap:wrap;
  }

  body[data-page="landing"] .site-nav a{
    font-size:17px;
  }

  .landing-offer-bar{
    min-height:auto;
    gap:14px;
    flex-wrap:wrap;
    text-align:center;
  }
}

@media (max-width: 720px){
  .landing-offer-bar{
    padding:14px 18px;
  }

  .landing-offer-mascot{
    width:44px;
    height:44px;
    font-size:15px;
  }

  .landing-offer-bar strong{
    font-size:16px;
  }

  .landing-offer-bar a{
    width:100%;
    min-height:46px;
    font-size:16px;
  }

  body[data-page="landing"] .site-brand-text{
    font-size:34px;
  }

  body[data-page="landing"] .site-topbar-actions{
    min-width:auto;
  }
}

/* Landing middle hero: visual product story, inspired by modern journal finder sites. */
body[data-page="landing"] .marketing-main{
  max-width:1180px;
  padding-top:0;
}

.landing-product-hero{
  margin:0 calc(50% - 50vw);
  width:100vw;
  min-height:720px;
  padding:118px 24px 70px;
  background:
    radial-gradient(circle at 50% 26%, rgba(101,222,143,.11), transparent 21%),
    linear-gradient(180deg,#ffffff 0%, #ffffff 72%, #f7f5ef 100%);
  text-align:center;
  overflow:hidden;
}

.landing-product-title{
  max-width:1180px;
  margin:0 auto;
  font-family:var(--site-font-ui);
  font-size:68px;
  line-height:1.08;
  letter-spacing:-.055em;
  font-weight:1000;
  color:#26373c;
}

.landing-product-title span{
  color:#58c987;
}

.landing-product-grid{
  max-width:1180px;
  margin:82px auto 0;
  display:grid;
  grid-template-columns:minmax(420px, .92fr) minmax(360px, .72fr);
  gap:72px;
  align-items:center;
}

.landing-product-visual{
  position:relative;
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateZ(0);
}

.landing-product-visual::before{
  content:"";
  position:absolute;
  inset:38px 24px 18px;
  border-radius:32px;
  background:radial-gradient(circle, rgba(38,55,60,.16), transparent 64%);
  filter:blur(18px);
  opacity:.72;
  animation:landingGlow 4.8s ease-in-out infinite;
}

.landing-product-image{
  position:relative;
  width:min(100%, 560px);
  height:auto;
  opacity:.86;
  filter:saturate(.88) contrast(.96);
  animation:landingProductFloat 6.8s ease-in-out infinite;
}

.landing-floating-card{
  position:absolute;
  right:0;
  bottom:46px;
  width:min(300px, 58%);
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(38,55,60,.10);
  box-shadow:0 22px 54px rgba(38,55,60,.18);
  text-align:left;
  animation:landingCardFloat 5.8s ease-in-out infinite;
}

.landing-floating-card span{
  display:block;
  color:#1e63ff;
  font-size:11px;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.landing-floating-card strong{
  display:block;
  margin-top:8px;
  color:#26373c;
  font-size:17px;
  line-height:1.15;
  letter-spacing:-.035em;
  font-weight:1000;
}

.landing-floating-metrics{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}

.landing-floating-metrics em{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#eef5ff;
  color:#0b3a85;
  font-style:normal;
  font-size:12px;
  font-weight:900;
}

.landing-signal-dot{
  position:absolute;
  width:14px;
  height:14px;
  border-radius:999px;
  background:#58c987;
  box-shadow:0 0 0 8px rgba(88,201,135,.16);
  animation:landingSignalPulse 2.4s ease-in-out infinite;
}

.landing-signal-dot.dot-one{
  left:86px;
  top:72px;
}

.landing-signal-dot.dot-two{
  right:92px;
  top:98px;
  animation-delay:1.1s;
}

.landing-product-copy{
  text-align:left;
}

.landing-product-copy p{
  max-width:560px;
  margin:0;
  color:#4e5962;
  font-size:29px;
  line-height:1.48;
  letter-spacing:-.03em;
  font-weight:500;
}

.landing-product-cta{
  margin-top:30px;
  min-width:386px;
  min-height:72px;
  border-radius:10px;
  font-size:28px;
  letter-spacing:-.03em;
  box-shadow:0 20px 34px rgba(38,55,60,.18);
}

.landing-trust-line{
  margin:84px auto 0;
  max-width:900px;
  color:#5d6469;
  font-size:29px;
  line-height:1.35;
  letter-spacing:-.035em;
  font-weight:500;
}

@keyframes landingProductFloat{
  0%,100%{transform:translateY(0) rotate(-.3deg)}
  50%{transform:translateY(-12px) rotate(.3deg)}
}

@keyframes landingCardFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}

@keyframes landingSignalPulse{
  0%,100%{transform:scale(1); box-shadow:0 0 0 8px rgba(88,201,135,.16)}
  50%{transform:scale(1.16); box-shadow:0 0 0 18px rgba(88,201,135,.02)}
}

@keyframes landingGlow{
  0%,100%{opacity:.54; transform:scale(.98)}
  50%{opacity:.82; transform:scale(1.04)}
}

@media (max-width: 1080px){
  .landing-product-title{
    font-size:54px;
  }

  .landing-product-grid{
    grid-template-columns:1fr;
    gap:34px;
    margin-top:52px;
  }

  .landing-product-copy{
    text-align:center;
  }

  .landing-product-copy p{
    margin:0 auto;
  }
}

@media (max-width: 720px){
  .landing-product-hero{
    min-height:auto;
    padding:74px 20px 52px;
  }

  .landing-product-title{
    font-size:42px;
  }

  .landing-product-grid{
    margin-top:38px;
  }

  .landing-product-visual{
    min-height:260px;
  }

  .landing-floating-card{
    right:8px;
    bottom:10px;
    width:76%;
    padding:14px;
  }

  .landing-product-copy p{
    font-size:21px;
  }

  .landing-product-cta{
    width:100%;
    min-width:0;
    min-height:58px;
    font-size:20px;
  }

  .landing-trust-line{
    margin-top:46px;
    font-size:21px;
  }
}

@media (prefers-reduced-motion: reduce){
  .landing-product-image,
  .landing-floating-card,
  .landing-signal-dot,
  .landing-product-visual::before{
    animation:none;
  }
}

.landing-how-section,
.landing-help-section{
  margin:0 calc(50% - 50vw);
  width:100vw;
}

.landing-section-inner{
  max-width:1360px;
  margin:0 auto;
  padding:0 24px;
}

.landing-how-section{
  min-height:352px;
  padding:58px 0 120px;
  background:#fff;
}

.landing-how-section h2,
.landing-help-section h2{
  margin:0;
  color:#26373c;
  font-family:var(--site-font-ui);
  font-size:56px;
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:900;
}

.landing-how-section p{
  max-width:1220px;
  margin:30px 0 0;
  color:#54585c;
  font-size:29px;
  line-height:1.55;
  letter-spacing:-.025em;
  font-weight:500;
}

.landing-help-section{
  min-height:620px;
  padding:138px 0 90px;
  background:#f5f5f5;
}

.landing-help-list{
  max-width:1260px;
  margin:54px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:58px;
}

.landing-help-list li{
  display:grid;
  grid-template-columns:58px minmax(0,1fr);
  align-items:center;
  gap:34px;
  color:#54585c;
  font-size:28px;
  line-height:1.42;
  letter-spacing:-.025em;
  font-weight:500;
}

.landing-check-icon{
  width:46px;
  height:46px;
  border-radius:999px;
  border:5px solid #58c987;
  position:relative;
  display:inline-block;
}

.landing-check-icon::after{
  content:"";
  position:absolute;
  left:12px;
  top:5px;
  width:14px;
  height:24px;
  border:solid #58c987;
  border-width:0 5px 5px 0;
  transform:rotate(45deg);
}

@media (max-width: 1080px){
  .landing-section-inner{
    max-width:920px;
  }

  .landing-how-section h2,
  .landing-help-section h2{
    font-size:44px;
  }

  .landing-how-section p,
  .landing-help-list li{
    font-size:23px;
  }
}

@media (max-width: 720px){
  .landing-how-section{
    min-height:auto;
    padding:46px 0 72px;
  }

  .landing-help-section{
    min-height:auto;
    padding:72px 0 64px;
  }

  .landing-how-section h2,
  .landing-help-section h2{
    font-size:36px;
  }

  .landing-how-section p{
    margin-top:22px;
    font-size:19px;
  }

  .landing-help-list{
    gap:30px;
    margin-top:38px;
  }

  .landing-help-list li{
    grid-template-columns:42px minmax(0,1fr);
    gap:18px;
    align-items:start;
    font-size:18px;
  }

  .landing-check-icon{
    width:34px;
    height:34px;
    border-width:4px;
  }

  .landing-check-icon::after{
    left:8px;
    top:3px;
    width:10px;
    height:18px;
    border-width:0 4px 4px 0;
  }
}

.landing-footer{
  margin:70px calc(50% - 50vw) 0;
  width:100vw;
  background:#26373c;
  color:#f4f8f7;
}

.landing-footer-inner{
  max-width:1360px;
  margin:0 auto;
  padding:58px 24px 48px;
}

.landing-footer-grid{
  display:grid;
  grid-template-columns:minmax(260px, 1.1fr) minmax(140px, .65fr) minmax(170px, .65fr) minmax(320px, 1.25fr);
  gap:58px;
  align-items:start;
}

.landing-footer-logo{
  display:inline-flex;
  color:#7aa7ff;
  text-decoration:none;
  font-size:42px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.055em;
}

.landing-footer-brand p{
  max-width:390px;
  margin:34px 0 0;
  color:rgba(255,255,255,.86);
  font-size:20px;
  line-height:1.45;
  letter-spacing:-.02em;
  font-weight:500;
}

.landing-footer-column h3,
.landing-footer-newsletter h3{
  margin:0 0 34px;
  color:#fff;
  font-size:22px;
  line-height:1.1;
  letter-spacing:-.025em;
  font-weight:700;
}

.landing-footer-column{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.landing-footer-column a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-size:20px;
  line-height:1.1;
  font-weight:650;
  letter-spacing:-.025em;
}

.landing-footer-column a:hover{
  color:#7aa7ff;
}

.landing-footer-newsletter label{
  display:block;
  margin-bottom:14px;
  color:rgba(255,255,255,.86);
  font-size:15px;
  font-weight:700;
}

.landing-newsletter-form{
  display:flex;
  gap:12px;
  align-items:center;
}

.landing-newsletter-form input{
  width:274px;
  height:54px;
  border:1px solid rgba(255,255,255,.26);
  border-radius:12px;
  background:#fff;
  color:#26373c;
  padding:0 16px;
  font:inherit;
  font-size:18px;
  outline:none;
}

.landing-newsletter-form input::placeholder{
  color:#a6a8aa;
}

.landing-newsletter-form button{
  height:54px;
  border:0;
  border-radius:12px;
  background:#1e63ff;
  color:#fff;
  padding:0 24px;
  font:inherit;
  font-size:22px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.20);
}

.landing-footer-rule{
  height:1px;
  width:100%;
  margin:82px 0 52px;
  background:rgba(255,255,255,.74);
}

.landing-footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
}

.landing-footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:20px;
  font-weight:500;
  letter-spacing:-.02em;
}

.landing-social-row{
  display:flex;
  align-items:center;
  gap:18px;
}

.landing-social-row span{
  color:rgba(255,255,255,.92);
  font-size:20px;
  font-weight:500;
}

.landing-social-row a{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#f4f4f4;
  color:#26373c;
  text-decoration:none;
  font-size:19px;
  line-height:1;
  font-weight:900;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.landing-social-row a:hover{
  background:#1e63ff;
}

@media (max-width: 1080px){
  .landing-footer-grid{
    grid-template-columns:1fr 1fr;
    gap:42px;
  }

  .landing-newsletter-form{
    flex-wrap:wrap;
  }

  .landing-newsletter-form input{
    width:min(100%, 340px);
  }
}

@media (max-width: 720px){
  .landing-footer{
    margin-top:48px;
  }

  .landing-footer-inner{
    padding:44px 24px 38px;
  }

  .landing-footer-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .landing-footer-logo{
    font-size:36px;
  }

  .landing-footer-brand p,
  .landing-footer-column a,
  .landing-footer-bottom p,
  .landing-social-row span{
    font-size:17px;
  }

  .landing-footer-column h3,
  .landing-footer-newsletter h3{
    margin-bottom:18px;
  }

  .landing-footer-rule{
    margin:48px 0 34px;
  }

  .landing-footer-bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .landing-social-row{
    flex-wrap:wrap;
    gap:12px;
  }

  .landing-social-row a{
    width:46px;
    height:46px;
  }
}

/* Thesify-inspired signup/auth screen. */
body[data-page="auth"]{
  min-height:100vh;
  background:#f7f8fa;
  color:#111827;
  overflow-x:hidden;
}

body[data-page="auth"]::before{
  display:none;
}

.auth-topbar{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
  background:#26373c;
}

.auth-logo{
  color:#7aa7ff;
  text-decoration:none;
  font-size:43px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.055em;
}

.auth-topbar-button{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:8px;
  background:#58c987;
  color:#17242a;
  text-decoration:none;
  font-size:16px;
  font-weight:800;
  box-shadow:0 8px 18px rgba(0,0,0,.20);
}

.auth-page-shell{
  min-height:calc(100vh - 122px);
  display:grid;
  grid-template-columns:minmax(520px, .95fr) minmax(520px, 1.05fr);
  gap:72px;
  max-width:1920px;
  margin:0 auto;
  padding:24px 86px 10px;
  align-items:start;
}

.auth-trial-panel,
.auth-form-panel{
  border:0;
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
  background:transparent;
  overflow:visible;
  opacity:1;
  transform:none;
}

.auth-trial-panel{
  min-height:auto;
  padding-top:104px;
}

.auth-trial-panel h1{
  margin:0;
  color:#111827;
  font-family:var(--site-font-ui);
  font-size:46px;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:1000;
}

.auth-timeline{
  list-style:none;
  margin:48px 0 0;
  padding:0;
  display:grid;
  gap:24px;
}

.auth-timeline li{
  display:flex;
  align-items:center;
  gap:18px;
  color:#111827;
}

.auth-timeline-icon{
  width:54px;
  height:54px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:#d8fbe4;
  color:#1e63ff;
  font-size:24px;
  font-weight:900;
}

.auth-timeline p{
  margin:0;
  color:#111827;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.025em;
}

.auth-timeline strong{
  font-weight:1000;
}

.auth-cancel-note{
  margin:72px 0 0;
  color:#676d73;
  font-size:20px;
  line-height:1.45;
}

.auth-trial-panel h2{
  margin:58px 0 24px;
  color:#111827;
  font-family:var(--site-font-ui);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  font-weight:1000;
}

.auth-included-card{
  position:relative;
  width:min(850px, 100%);
  min-height:420px;
  padding:30px 28px;
  border-radius:30px;
  background:#d8fbe4;
  overflow:hidden;
}

.auth-included-card ul{
  position:relative;
  z-index:2;
  max-width:390px;
  list-style:none;
  margin:0;
  padding:0 0 0 28px;
  display:grid;
  gap:17px;
}

.auth-included-card li{
  position:relative;
  color:#31413e;
  font-size:22px;
  line-height:1.32;
  letter-spacing:-.025em;
}

.auth-included-card li::before{
  content:"✓";
  position:absolute;
  left:-34px;
  top:0;
  color:#2c5343;
  font-size:26px;
  line-height:1;
}

.auth-product-preview{
  position:absolute;
  right:-24px;
  bottom:6px;
  width:420px;
  min-height:336px;
  border-radius:24px;
  background:#ffffff;
  box-shadow:0 26px 60px rgba(17,24,39,.24);
  overflow:hidden;
}

.auth-preview-bar-dark{
  height:58px;
  display:flex;
  align-items:center;
  padding:0 26px;
  background:#26373c;
  color:#fff;
  font-size:21px;
  font-weight:800;
  letter-spacing:-.025em;
}

.auth-preview-paper{
  position:absolute;
  left:26px;
  top:86px;
  width:132px;
  display:grid;
  gap:9px;
}

.auth-preview-paper span{
  height:5px;
  border-radius:999px;
  background:#d8dee4;
}

.auth-preview-paper span:nth-child(1){width:112px}
.auth-preview-paper span:nth-child(2){width:128px}
.auth-preview-paper span:nth-child(3){width:96px}
.auth-preview-paper span:nth-child(4){width:120px}
.auth-preview-paper span:nth-child(5){width:78px}

.auth-preview-panel{
  position:absolute;
  right:18px;
  top:74px;
  width:230px;
  min-height:238px;
  padding:18px;
  border-radius:22px;
  border:2px solid #58c987;
  background:#fff;
  box-shadow:0 16px 34px rgba(17,24,39,.14);
}

.auth-preview-panel strong{
  display:block;
  color:#26373c;
  font-size:17px;
  line-height:1.15;
  letter-spacing:-.035em;
}

.auth-preview-panel p{
  margin:12px 0 0;
  color:#6b7280;
  font-size:13px;
  line-height:1.35;
}

.auth-preview-panel button{
  margin-top:18px;
  border:0;
  border-radius:8px;
  background:#58c987;
  color:#fff;
  min-height:34px;
  padding:0 12px;
  font:inherit;
  font-size:13px;
  font-weight:800;
}

.auth-form-panel{
  min-height:auto;
  padding-top:24px;
}

.auth-stepper{
  list-style:none;
  margin:0 0 250px;
  padding:0;
  display:flex;
  justify-content:space-between;
  gap:28px;
}

.auth-stepper li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#7c8288;
  font-size:20px;
  line-height:1;
  white-space:nowrap;
  font-weight:500;
}

.auth-stepper span{
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#e1e5e8;
  color:#7a8289;
  font-size:18px;
  font-weight:900;
}

.auth-stepper li.active{
  color:#111827;
  font-weight:900;
}

.auth-stepper li.active span{
  background:#1e63ff;
  color:#fff;
}

.auth-form-wrap{
  max-width:600px;
  margin:0 auto;
}

.auth-form-wrap h2{
  margin:0 0 42px;
  color:#111827;
  font-family:var(--site-font-ui);
  font-size:39px;
  line-height:1.08;
  text-align:center;
  letter-spacing:-.04em;
  font-weight:1000;
}

.auth-form-wrap .auth-tabs{
  display:none;
}

.auth-form-wrap .auth-meta{
  display:none;
}

.auth-form{
  display:grid;
  gap:22px;
  margin:0;
}

.auth-form input{
  width:100%;
  min-height:66px;
  padding:0 22px;
  border-radius:8px;
  border:1.5px solid #b6bdc3;
  background:#fff;
  color:#111827;
  font:inherit;
  font-size:20px;
  box-shadow:none;
}

.auth-form input::placeholder{
  color:#7e858c;
}

.auth-password-field{
  position:relative;
}

.auth-password-field input{
  padding-right:58px;
}

.auth-password-field span{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  color:#7e858c;
  font-size:22px;
  font-weight:900;
}

.auth-main-submit{
  width:100%;
  min-height:66px;
  border:0;
  border-radius:8px;
  background:#58c987;
  color:#fff;
  font:inherit;
  font-size:21px;
  font-weight:900;
  cursor:pointer;
  box-shadow:none;
}

.auth-switch-line{
  margin:2px 0 0;
  text-align:center;
  color:#686f76;
  font-size:17px;
}

.auth-switch-line button{
  border:0;
  background:transparent;
  color:#3b74d7;
  font:inherit;
  cursor:pointer;
  padding:0;
}

.auth-divider{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:22px;
  margin:42px 0 34px;
  color:#6b7280;
}

.auth-divider span{
  height:1px;
  background:#bcc2c8;
}

.auth-divider em{
  font-style:normal;
  font-size:18px;
}

.auth-google-button{
  width:100%;
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  border-radius:8px;
  border:1.5px solid #b6bdc3;
  background:#fff;
  color:#4e5358;
  font:inherit;
  font-size:21px;
  font-weight:800;
}

.auth-google-button strong{
  color:#4385f5;
  font-size:25px;
  line-height:1;
}

.auth-banner{
  margin:0 0 18px;
  border-radius:10px;
}

.auth-bottom-footer{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 32px;
  border-top:1px solid #e0e3e7;
  color:#8b9299;
  background:#f7f8fa;
  font-size:16px;
}

.auth-bottom-footer nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.auth-bottom-footer a{
  color:#8b9299;
  text-decoration:none;
}

.auth-bottom-footer a + a::before{
  content:"|";
  margin-right:18px;
  color:#c0c5ca;
}

@media (max-width: 1180px){
  .auth-page-shell{
    grid-template-columns:1fr;
    gap:48px;
    padding:40px 48px 20px;
  }

  .auth-trial-panel{
    padding-top:20px;
  }

  .auth-stepper{
    margin-bottom:70px;
  }
}

@media (max-width: 720px){
  .auth-topbar{
    padding:0 20px;
  }

  .auth-logo{
    font-size:34px;
  }

  .auth-page-shell{
    padding:32px 20px 20px;
  }

  .auth-trial-panel h1{
    font-size:36px;
  }

  .auth-timeline p,
  .auth-included-card li{
    font-size:18px;
  }

  .auth-included-card{
    min-height:auto;
    padding-bottom:280px;
  }

  .auth-product-preview{
    left:22px;
    right:auto;
    width:calc(100% - 44px);
  }

  .auth-stepper{
    align-items:flex-start;
    flex-direction:column;
    margin-bottom:46px;
  }

  .auth-form-wrap h2{
    font-size:32px;
  }

  .auth-bottom-footer{
    align-items:flex-start;
    flex-direction:column;
    min-height:auto;
    padding:18px 20px;
  }
}

/* Plan selection step after signup. */
body[data-page="auth-plan"]{
  min-height:100vh;
  background:#f7f8fa;
  color:#111827;
  overflow-x:hidden;
}

body[data-page="auth-plan"]::before{
  display:none;
}

.plan-topbar-actions{
  display:flex;
  align-items:center;
  gap:22px;
}

.plan-bell{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:3px solid #1e63ff;
  color:#1e63ff;
  font-size:20px;
  font-weight:900;
}

.plan-avatar{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#d8fbe4;
  color:#26373c;
  font-size:16px;
  font-weight:1000;
}

.plan-page-shell{
  grid-template-columns:minmax(520px, .95fr) minmax(620px, 1.05fr);
  gap:72px;
  padding-top:30px;
}

.plan-trial-panel{
  padding-top:0;
}

.plan-side-logo{
  display:inline-flex;
  margin:0 0 68px;
  color:#7aa7ff;
  text-decoration:none;
  font-size:42px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.055em;
}

.plan-select-panel{
  padding-top:0;
}

.plan-stepper{
  margin:0 0 92px;
}

.auth-stepper li.done{
  color:#1e63ff;
  font-weight:900;
}

.auth-stepper li.done span{
  background:#1e63ff;
  color:#fff;
}

.plan-select-wrap{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

.plan-select-wrap h2{
  margin:0;
  color:#111827;
  font-family:var(--site-font-ui);
  font-size:36px;
  line-height:1.12;
  letter-spacing:-.04em;
  font-weight:1000;
}

.plan-billing-toggle{
  width:max-content;
  margin:48px auto 14px;
  padding:6px;
  display:flex;
  gap:4px;
  border-radius:999px;
  background:#e2e5e8;
}

.plan-billing-toggle button{
  min-width:132px;
  min-height:50px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#6b7178;
  font:inherit;
  font-size:18px;
  font-weight:800;
}

.plan-billing-toggle button.active{
  background:#1e63ff;
  color:#ffffff;
}

.plan-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:10px;
}

.plan-card{
  position:relative;
  min-height:438px;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:28px 22px 22px;
  border-radius:14px;
  border:1px solid #dfe4e8;
  background:#fff;
  box-shadow:0 4px 14px rgba(17,24,39,.08);
}

.plan-card.featured{
  border-color:#1e63ff;
  box-shadow:0 12px 34px rgba(17,24,39,.14);
  transform:translateY(-10px);
}

.plan-label{
  min-height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 10px;
  border-radius:999px;
  background:#effaf4;
  color:#2b8c5e;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.plan-card h3{
  margin:18px 0 0;
  color:#3b8f61;
  font-family:var(--site-font-ui);
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.025em;
  font-weight:1000;
}

.plan-subtitle{
  min-height:44px;
  margin:20px 0 0;
  color:#333a44;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
}

.plan-price{
  margin:42px 0 0;
  color:#111827;
  font-size:34px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.035em;
}

.plan-price span{
  color:#333a44;
  font-size:18px;
  font-weight:700;
  letter-spacing:-.025em;
}

.plan-note{
  min-height:52px;
  margin:22px 0 0;
  color:#59616a;
  font-size:14px;
  line-height:1.36;
  font-weight:650;
}

.plan-card ul{
  width:100%;
  min-height:90px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  text-align:left;
}

.plan-card li{
  position:relative;
  padding-left:22px;
  color:#333a44;
  font-size:14px;
  line-height:1.25;
}

.plan-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  color:#1e63ff;
  font-weight:1000;
}

.plan-button{
  width:100%;
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:auto;
  border-radius:8px;
  background:#1e63ff;
  color:#ffffff;
  text-decoration:none;
  font-size:17px;
  font-weight:900;
}

.plan-button.secondary{
  background:#eef3f0;
  color:#26373c;
}

.plan-card-free{
  background:#fbfffd;
}

@media (max-width: 1280px){
  .plan-page-shell{
    grid-template-columns:1fr;
  }

  .plan-stepper{
    margin-bottom:56px;
  }
}

@media (max-width: 900px){
  .plan-card-grid{
    grid-template-columns:1fr;
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }

  .plan-card.featured{
    transform:none;
  }
}

@media (max-width: 720px){
  .plan-topbar-actions{
    gap:12px;
  }

  .plan-bell,
  .plan-avatar{
    width:38px;
    height:38px;
  }

  .plan-side-logo{
    margin-bottom:42px;
    font-size:34px;
  }

  .plan-select-wrap h2{
    font-size:30px;
  }

  .plan-billing-toggle{
    width:100%;
  }

  .plan-billing-toggle button{
    flex:1;
    min-width:0;
  }
}

body[data-page="onboarding"]{
  min-height:100vh;
  margin:0;
  background:#f6f8fa;
  color:#101827;
  font-family:var(--site-font-ui);
}

.onboarding-shell{
  min-height:calc(100vh - 86px);
  display:grid;
  grid-template-columns:minmax(0, 57%) minmax(420px, 43%);
  background:#f7f8fa;
}

.onboarding-form-panel{
  padding:96px 72px 78px;
  background:#f7f8fa;
}

.onboarding-copy{
  max-width:960px;
}

.onboarding-kicker{
  margin:0 0 18px;
  color:#1e63ff;
  font-size:14px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:950;
}

.onboarding-copy h1{
  margin:0;
  color:#111827;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:1000;
}

.onboarding-copy p{
  max-width:980px;
  margin:18px 0 0;
  color:#626a72;
  font-size:21px;
  line-height:1.45;
  font-weight:650;
}

.onboarding-copy strong{
  color:#111827;
  font-weight:950;
}

.onboarding-form{
  max-width:1060px;
  margin-top:64px;
  display:grid;
  gap:54px;
}

.onboarding-question h2{
  margin:0 0 22px;
  color:#2c333a;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.03em;
  font-weight:800;
}

.onboarding-choice-grid{
  display:flex;
  flex-wrap:wrap;
  gap:14px 14px;
}

.onboarding-choice-grid button{
  min-height:52px;
  padding:0 28px;
  border:1px solid #dfe4e8;
  border-radius:9px;
  background:#fff;
  color:#3c4855;
  box-shadow:0 2px 8px rgba(17,24,39,.05);
  font:inherit;
  font-size:19px;
  font-weight:750;
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.onboarding-choice-grid.wide button{
  min-width:178px;
}

.onboarding-choice-grid button:hover{
  transform:translateY(-1px);
  border-color:#8fb6ff;
  box-shadow:0 8px 20px rgba(17,24,39,.08);
}

.onboarding-choice-grid button.selected{
  border-color:#1e63ff;
  background:#eef5ff;
  color:#0b1f4f;
  box-shadow:0 8px 22px rgba(84,199,131,.18);
}

.onboarding-assistant-panel{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:calc(100vh - 86px);
  padding:118px 72px 62px;
  background:#fbfbfc;
  border-left:1px solid #dfe4e8;
}

.onboarding-assistant-card{
  width:min(620px, 100%);
  margin:auto auto 0;
  display:grid;
  grid-template-columns:170px 1fr;
  align-items:center;
  gap:40px;
}

.onboarding-bot{
  position:relative;
  width:154px;
  height:154px;
  display:grid;
  place-items:center;
  border-radius:34% 34% 40% 40%;
  background:linear-gradient(135deg,#f7d887,#e8fbef 54%,#9bd9ef);
  border:4px solid #283a45;
  box-shadow:0 20px 42px rgba(17,24,39,.14);
  animation:onboardingBotFloat 4.8s ease-in-out infinite;
}

.onboarding-bot strong{
  position:relative;
  z-index:2;
  color:#22333a;
  font-size:46px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.08em;
}

.onboarding-bot i{
  position:absolute;
  top:52px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#22333a;
  box-shadow:inset -4px -4px 0 rgba(255,255,255,.3);
}

.onboarding-bot i:nth-of-type(1){
  left:34px;
}

.onboarding-bot i:nth-of-type(2){
  right:34px;
}

.bot-ear{
  position:absolute;
  top:-28px;
  width:54px;
  height:64px;
  background:#f5d282;
  border:4px solid #283a45;
  border-radius:14px 36px 10px 30px;
  transform:rotate(-18deg);
}

.bot-ear.right{
  right:7px;
  transform:rotate(18deg) scaleX(-1);
}

.bot-ear.left{
  left:7px;
}

.onboarding-speech{
  position:relative;
  min-height:96px;
  display:flex;
  align-items:center;
  padding:24px 30px;
  border:2px solid #2f7bff;
  border-radius:24px;
  background:#eef5ff;
  color:#26373c;
  font-size:23px;
  line-height:1.42;
  font-weight:650;
}

.onboarding-speech::before{
  content:"";
  position:absolute;
  left:-14px;
  top:50%;
  width:24px;
  height:24px;
  border-left:2px solid #2f7bff;
  border-bottom:2px solid #2f7bff;
  background:#eef5ff;
  transform:translateY(-50%) rotate(45deg);
}

.onboarding-finish{
  align-self:flex-end;
  min-width:128px;
  min-height:66px;
  margin-top:auto;
  border:0;
  border-radius:14px;
  background:#1e63ff;
  color:#ffffff;
  box-shadow:0 12px 28px rgba(30,99,255,.22);
  font:inherit;
  font-size:20px;
  font-weight:950;
  cursor:pointer;
}

.onboarding-finish:disabled{
  cursor:not-allowed;
  opacity:.45;
  box-shadow:none;
}

.onboarding-skip{
  align-self:flex-end;
  margin:18px 4px 0 0;
}

.onboarding-skip a{
  color:#6b747d;
  font-size:15px;
  font-weight:750;
  text-decoration:none;
}

.onboarding-skip a:hover{
  color:#26373c;
  text-decoration:underline;
}

@keyframes onboardingBotFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}

@media (max-width: 1180px){
  .onboarding-shell{
    grid-template-columns:1fr;
  }

  .onboarding-assistant-panel{
    min-height:auto;
    padding:60px 72px 72px;
    border-left:0;
    border-top:1px solid #dfe4e8;
  }

  .onboarding-assistant-card{
    margin:0;
  }
}

@media (max-width: 760px){
  .onboarding-form-panel,
  .onboarding-assistant-panel{
    padding:48px 22px;
  }

  .onboarding-copy h1{
    font-size:34px;
  }

  .onboarding-copy p{
    font-size:18px;
  }

  .onboarding-form{
    gap:42px;
    margin-top:46px;
  }

  .onboarding-question h2{
    font-size:24px;
  }

  .onboarding-choice-grid button,
  .onboarding-choice-grid.wide button{
    width:100%;
    min-width:0;
    justify-content:center;
  }

  .onboarding-assistant-card{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }

  .onboarding-speech::before{
    display:none;
  }

  .onboarding-finish,
  .onboarding-skip{
    align-self:stretch;
    text-align:center;
  }
}

/* Landing rescue sprint: clean section system with color transitions and one animated hero. */
body[data-page="landing"]{
  --frame-dark:#061b4f;
  --frame-dark-2:#03143d;
  --frame-blue:#1e63ff;
  --frame-blue-2:#0d45c7;
  --frame-cream:#f5f8ff;
  --frame-mint:#eaf3ff;
  --frame-ice:#f8fbff;
  --frame-text:#071b3f;
  --frame-muted:#5f6c82;
  margin:0;
  background:var(--frame-cream) !important;
  color:var(--frame-text);
  font-family:"Avenir Next","Segoe UI","Helvetica Neue",sans-serif;
  overflow-x:hidden;
}

body[data-page="landing"] .landing-shell{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
}

body[data-page="landing"] .landing-offer-bar{
  width:100%;
  min-height:52px;
  margin:0;
  padding:8px 24px;
  gap:14px;
  background:linear-gradient(90deg,#e8fbf0 0%,#f2fff7 56%,#e5f8ef 100%);
  box-shadow:none;
}

body[data-page="landing"] .landing-offer-mascot{
  width:34px;
  height:34px;
  border-radius:10px;
  font-size:12px;
  box-shadow:none;
}

body[data-page="landing"] .landing-offer-bar strong{
  color:var(--frame-dark);
  font-size:17px;
  line-height:1.2;
  font-weight:850;
  letter-spacing:-.02em;
}

body[data-page="landing"] .landing-offer-bar a{
  min-height:36px;
  padding:0 14px;
  border:2px solid var(--frame-blue-2);
  border-radius:9px;
  background:#fff;
  color:var(--frame-blue-2);
  font-size:15px;
  box-shadow:0 4px 12px rgba(31,143,119,.14);
}

body[data-page="landing"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:50;
  width:100%;
  min-height:86px;
  margin:0;
  padding:0 clamp(22px,4vw,42px);
  border:0;
  border-radius:0;
  background:var(--frame-dark);
  box-shadow:0 12px 30px rgba(17,24,39,.13);
  backdrop-filter:none;
}

body[data-page="landing"] .landing-topbar.is-scrolled{
  background:rgba(38,55,60,.96);
  box-shadow:0 16px 34px rgba(17,24,39,.16);
}

body[data-page="landing"] .site-brand-text{
  color:var(--frame-blue);
  font-size:40px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.07em;
}

body[data-page="landing"] .site-nav{
  gap:34px;
  justify-content:center;
}

body[data-page="landing"] .site-nav a{
  color:rgba(255,255,255,.88);
  font-size:19px;
  font-weight:760;
  letter-spacing:-.03em;
}

body[data-page="landing"] .site-nav-caret{
  color:rgba(255,255,255,.56);
}

body[data-page="landing"] .site-button{
  min-height:52px;
  padding:0 24px;
  border-radius:12px;
  font-size:16px;
  font-weight:900;
  text-decoration:none;
}

body[data-page="landing"] .site-button.primary{
  border:0;
  background:var(--frame-blue-2);
  color:#fff;
  box-shadow:0 14px 28px rgba(72,168,115,.28);
}

body[data-page="landing"] .site-button.subtle{
  border:1px solid rgba(38,55,60,.18);
  background:#fff;
  color:var(--frame-dark);
  box-shadow:none;
}

.landing-v2-main{
  width:100%;
  margin:0;
  padding:0;
}

.landing-v2-hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(420px,.9fr) minmax(520px,1.1fr);
  gap:clamp(42px,6vw,98px);
  align-items:center;
  min-height:calc(100vh - 138px);
  padding:clamp(70px,9vw,124px) clamp(28px,7vw,150px) clamp(72px,9vw,118px);
  background:
    radial-gradient(circle at 78% 16%, rgba(95,209,138,.28), transparent 28%),
    radial-gradient(circle at 8% 22%, rgba(255,255,255,.9), transparent 24%),
    linear-gradient(120deg,#fffaf0 0%,#f8f5ec 42%,#eefbf4 100%);
  overflow:hidden;
}

.landing-v2-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:72px;
  background:linear-gradient(180deg,rgba(255,255,255,0),#fff 72%);
  pointer-events:none;
}

.landing-v2-hero-copy{
  position:relative;
  z-index:2;
}

.landing-v2-kicker{
  display:inline-flex;
  min-height:38px;
  align-items:center;
  margin:0 0 22px;
  padding:0 16px;
  border:1px solid rgba(72,168,115,.25);
  border-radius:999px;
  background:rgba(236,251,242,.82);
  color:#227458;
  font-size:12px;
  line-height:1;
  font-weight:1000;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.landing-v2-hero h1{
  max-width:760px;
  margin:0;
  color:var(--frame-dark);
  font-size:clamp(58px,6.9vw,104px);
  line-height:.92;
  letter-spacing:-.075em;
  font-weight:1000;
}

.landing-v2-lead{
  max-width:650px;
  margin:32px 0 0;
  color:#4e5962;
  font-size:clamp(21px,2vw,30px);
  line-height:1.42;
  letter-spacing:-.035em;
}

.landing-v2-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  margin-top:34px;
}

.landing-v2-actions .site-button{
  min-height:62px;
  padding:0 30px;
  border-radius:14px;
  font-size:19px;
}

.landing-v2-stage{
  position:relative;
  z-index:2;
  min-height:560px;
  display:grid;
  place-items:center;
  perspective:1200px;
}

.landing-v2-orbit{
  position:absolute;
  border-radius:999px;
  filter:blur(.2px);
  opacity:.95;
}

.landing-v2-orbit.orbit-a{
  width:480px;
  height:480px;
  border:1px solid rgba(72,168,115,.28);
  animation:jfOrbit 18s linear infinite;
}

.landing-v2-orbit.orbit-b{
  width:330px;
  height:330px;
  background:radial-gradient(circle,rgba(95,209,138,.22),transparent 66%);
  animation:jfBreathe 5.5s ease-in-out infinite;
}

.landing-v2-window{
  position:relative;
  width:min(720px,100%);
  min-height:470px;
  border-radius:24px;
  background:linear-gradient(180deg,#f9fffc 0%,#eef8f3 100%);
  border:1px solid rgba(38,55,60,.12);
  box-shadow:0 34px 90px rgba(38,55,60,.18);
  overflow:hidden;
  transform:rotateX(3deg) rotateY(-5deg);
  animation:jfWindowFloat 7s ease-in-out infinite;
}

.landing-v2-window-top{
  height:58px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 24px;
  background:var(--frame-dark);
  color:var(--frame-blue);
}

.landing-v2-window-top span{
  width:14px;
  height:14px;
  border-radius:999px;
  background:#5f6d74;
}

.landing-v2-window-top span:nth-child(3){
  background:var(--frame-blue);
}

.landing-v2-window-top strong{
  margin-left:10px;
  font-size:20px;
  font-weight:1000;
  letter-spacing:-.06em;
}

.landing-v2-paper{
  position:absolute;
  left:44px;
  top:100px;
  width:370px;
  height:278px;
  padding:36px 30px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 14px 30px rgba(38,55,60,.08);
  overflow:hidden;
}

.landing-v2-paper em{
  display:block;
  width:250px;
  height:14px;
  margin-bottom:24px;
  border-radius:999px;
  background:#4f5c62;
}

.landing-v2-paper strong{
  display:block;
  margin-bottom:24px;
  color:#26373c;
  font-size:16px;
}

.landing-v2-paper i{
  display:block;
  height:8px;
  margin:13px 0;
  border-radius:999px;
  background:#d8dde0;
}

.landing-v2-paper i:nth-of-type(2){width:88%}
.landing-v2-paper i:nth-of-type(3){width:72%}
.landing-v2-paper i:nth-of-type(4){width:94%}

.landing-v2-scan{
  position:absolute;
  left:0;
  right:0;
  top:-70px;
  height:70px;
  background:linear-gradient(180deg,rgba(95,209,138,0),rgba(95,209,138,.26),rgba(95,209,138,0));
  animation:jfScan 3.8s ease-in-out infinite;
}

.landing-v2-signal{
  position:absolute;
  right:70px;
  min-width:190px;
  min-height:42px;
  display:flex;
  align-items:center;
  padding:0 20px;
  border-radius:999px;
  background:#fff;
  color:#26373c;
  font-size:15px;
  font-weight:900;
  box-shadow:0 12px 24px rgba(38,55,60,.08);
}

.landing-v2-signal.signal-field{
  top:140px;
  background:#dcf8e8;
  color:#227458;
  animation:jfChipSlide 5.5s ease-in-out infinite;
}

.landing-v2-signal.signal-trust{
  top:196px;
  animation:jfChipSlide 5.5s ease-in-out .35s infinite;
}

.landing-v2-signal.signal-risk{
  top:252px;
  animation:jfChipSlide 5.5s ease-in-out .7s infinite;
}

.landing-v2-journal-card{
  position:absolute;
  right:24px;
  bottom:30px;
  width:min(370px,56%);
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.97);
  border:1px solid rgba(38,55,60,.08);
  box-shadow:0 28px 58px rgba(38,55,60,.18);
  animation:jfCardLift 6.2s ease-in-out infinite;
}

.landing-v2-journal-card span{
  display:block;
  color:#227458;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.landing-v2-journal-card strong{
  display:block;
  margin-top:12px;
  color:#26373c;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:1000;
}

.landing-v2-journal-card div{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.landing-v2-journal-card em{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:#eef5ff;
  color:#227458;
  font-style:normal;
  font-weight:900;
}

.landing-v2-band{
  position:relative;
  margin:0;
  padding:clamp(78px,8vw,122px) clamp(28px,7vw,150px);
}

.landing-v2-section-inner{
  max-width:1420px;
  margin:0 auto;
}

.landing-v2-section-inner.split{
  display:grid;
  grid-template-columns:minmax(300px,.78fr) minmax(420px,1fr);
  gap:clamp(42px,7vw,120px);
  align-items:center;
}

.landing-v2-band h2,
.landing-v2-final h2{
  margin:0;
  color:var(--frame-dark);
  font-size:clamp(44px,5vw,76px);
  line-height:.98;
  letter-spacing:-.065em;
  font-weight:1000;
}

.landing-v2-how{
  background:#fff;
}

.landing-v2-steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:52px;
}

.landing-v2-steps article{
  min-height:210px;
  padding:28px;
  border-radius:28px;
  background:#f7fbf8;
  border:1px solid rgba(38,55,60,.08);
  box-shadow:0 18px 40px rgba(38,55,60,.06);
}

.landing-v2-steps span{
  color:#c86a3b;
  font-size:14px;
  font-weight:1000;
}

.landing-v2-steps strong{
  display:block;
  margin-top:24px;
  color:var(--frame-dark);
  font-size:34px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.04em;
}

.landing-v2-steps p{
  margin:18px 0 0;
  color:var(--frame-muted);
  font-size:20px;
  line-height:1.35;
}

.landing-v2-signals{
  background:linear-gradient(135deg,#eafbf1 0%,#f7fff9 100%);
}

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

.landing-v2-signal-grid span{
  min-height:88px;
  display:flex;
  align-items:center;
  padding:0 24px;
  border-radius:24px;
  background:#fff;
  color:var(--frame-dark);
  font-size:23px;
  font-weight:900;
  letter-spacing:-.035em;
  box-shadow:0 16px 34px rgba(38,55,60,.06);
}

.landing-v2-signal-grid span:nth-child(2),
.landing-v2-signal-grid span:nth-child(5){
  background:var(--frame-dark);
  color:#fff;
}

.landing-v2-trust{
  background:linear-gradient(135deg,#fff4df 0%,#fffdf7 100%);
}

.landing-v2-trust-card{
  display:grid;
  gap:16px;
  padding:24px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 22px 50px rgba(117,81,30,.09);
}

.landing-v2-trust-card div{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:18px;
  align-items:center;
  min-height:82px;
  padding:0 22px;
  border-radius:20px;
  background:#fbfaf6;
  border:1px solid rgba(38,55,60,.08);
}

.landing-v2-trust-card strong{
  color:#227458;
  font-size:16px;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.landing-v2-trust-card span{
  color:#4e5962;
  font-size:21px;
  line-height:1.35;
  letter-spacing:-.03em;
}

.landing-v2-final{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  margin:0;
  padding:clamp(64px,7vw,104px) clamp(28px,7vw,150px);
  background:#fff;
}

.landing-v2-footer{
  margin:0 !important;
}

@keyframes jfWindowFloat{
  0%,100%{transform:rotateX(3deg) rotateY(-5deg) translateY(0)}
  50%{transform:rotateX(2deg) rotateY(-3deg) translateY(-14px)}
}

@keyframes jfScan{
  0%{top:-80px; opacity:0}
  20%{opacity:1}
  60%{top:280px; opacity:1}
  100%{top:320px; opacity:0}
}

@keyframes jfChipSlide{
  0%,100%{transform:translateX(0); opacity:.94}
  50%{transform:translateX(-12px); opacity:1}
}

@keyframes jfCardLift{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-15px)}
}

@keyframes jfBreathe{
  0%,100%{transform:scale(.94); opacity:.55}
  50%{transform:scale(1.08); opacity:.95}
}

@keyframes jfOrbit{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@media (max-width: 1180px){
  .landing-v2-hero,
  .landing-v2-section-inner.split{
    grid-template-columns:1fr;
  }

  .landing-v2-stage{
    min-height:500px;
  }

  .landing-v2-steps{
    grid-template-columns:1fr;
  }

  .landing-v2-final{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 760px){
  body[data-page="landing"] .landing-offer-bar{
    display:none;
  }

  body[data-page="landing"] .landing-topbar{
    min-height:auto;
    padding:18px 20px;
    flex-wrap:wrap;
  }

  body[data-page="landing"] .site-brand-text{
    font-size:32px;
  }

  body[data-page="landing"] .site-nav{
    order:3;
    width:100%;
    gap:14px;
    justify-content:flex-start;
    overflow:auto;
  }

  body[data-page="landing"] .site-nav a{
    font-size:15px;
    white-space:nowrap;
  }

  body[data-page="landing"] .site-topbar-actions{
    min-width:auto;
  }

  body[data-page="landing"] .site-topbar-actions .site-button{
    min-height:42px;
    padding:0 16px;
    font-size:14px;
  }

  .landing-v2-hero{
    min-height:auto;
    padding:58px 20px 70px;
  }

  .landing-v2-lead{
    font-size:20px;
  }

  .landing-v2-actions,
  .landing-v2-actions .site-button{
    width:100%;
  }

  .landing-v2-stage{
    min-height:380px;
  }

  .landing-v2-window{
    min-height:360px;
    transform:none;
  }

  .landing-v2-paper{
    left:20px;
    top:86px;
    width:68%;
    height:220px;
    padding:24px 20px;
  }

  .landing-v2-signal{
    right:18px;
    min-width:150px;
    font-size:12px;
  }

  .landing-v2-journal-card{
    right:14px;
    bottom:18px;
    width:72%;
    padding:16px;
  }

  .landing-v2-journal-card strong{
    font-size:18px;
  }

  .landing-v2-band,
  .landing-v2-final{
    padding:62px 20px;
  }

  .landing-v2-signal-grid{
    grid-template-columns:1fr;
  }

  .landing-v2-trust-card div{
    grid-template-columns:1fr;
    gap:8px;
    padding:18px;
  }
}

@media (prefers-reduced-motion: reduce){
  .landing-v2-window,
  .landing-v2-scan,
  .landing-v2-signal,
  .landing-v2-journal-card,
  .landing-v2-orbit{
    animation:none !important;
  }
}

/* Landing v2 polish: stronger first-screen composition and clearer color chapters. */
body[data-page="landing"] .landing-topbar{
  display:grid;
  grid-template-columns:minmax(210px,1fr) auto minmax(160px,1fr);
}

body[data-page="landing"] .site-topbar-actions{
  justify-self:end;
}

body[data-page="landing"] .landing-offer-bar{
  justify-content:center;
}

.landing-v2-hero{
  display:block;
  min-height:calc(100vh - 138px);
  padding:clamp(76px,8vw,120px) clamp(28px,7vw,150px) clamp(88px,8vw,126px);
  background:
    radial-gradient(circle at 88% 9%, rgba(95,209,138,.22), transparent 24%),
    radial-gradient(circle at 14% 30%, rgba(255,255,255,.92), transparent 22%),
    linear-gradient(180deg,#fff 0%,#fbfaf6 42%,#eefaf3 100%);
}

.landing-v2-hero-heading{
  max-width:1180px;
  margin:0 auto;
  text-align:center;
}

.landing-v2-hero h1{
  max-width:1160px;
  margin:0 auto;
  font-size:clamp(50px,5.6vw,92px);
  line-height:1.02;
  letter-spacing:-.055em;
  font-weight:850;
}

.landing-v2-hero h1 span{
  display:block;
  color:var(--frame-blue-2);
}

.landing-v2-hero-grid{
  display:grid;
  grid-template-columns:minmax(420px,1.08fr) minmax(360px,.82fr);
  gap:clamp(48px,7vw,112px);
  align-items:center;
  max-width:1360px;
  margin:clamp(62px,7vw,96px) auto 0;
}

.landing-v2-hero-copy{
  max-width:570px;
}

.landing-v2-lead{
  margin:0;
  max-width:570px;
  color:#4d5963;
  font-size:clamp(23px,2.1vw,31px);
  line-height:1.45;
  letter-spacing:-.035em;
}

.landing-v2-proof{
  margin:28px 0 0;
  color:#5e6872;
  font-size:18px;
  line-height:1.45;
}

.landing-v2-stage{
  min-height:470px;
}

.landing-v2-window{
  width:min(650px,100%);
  min-height:430px;
  border-radius:18px;
  transform:rotateX(2deg) rotateY(-4deg);
}

.landing-v2-paper{
  left:40px;
  top:96px;
  width:350px;
  height:254px;
}

.landing-v2-signal{
  right:54px;
}

.landing-v2-journal-card{
  width:min(360px,58%);
}

.landing-v2-band{
  min-height:72vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}

body[data-page="landing"] .landing-v2-hero[data-reveal]{
  opacity:1;
  transform:none;
  transition:none;
}

.landing-v2-how{
  background:
    linear-gradient(180deg,#fff 0%,#fff 72%,#f7fbf8 100%);
}

.landing-v2-signals{
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.86),transparent 28%),
    linear-gradient(135deg,#e5f9ed 0%,#f5fff8 100%);
}

.landing-v2-trust{
  background:
    radial-gradient(circle at 84% 18%,rgba(255,255,255,.84),transparent 28%),
    linear-gradient(135deg,#fff1d8 0%,#fffdf7 100%);
}

.landing-v2-final{
  min-height:42vh;
  background:
    radial-gradient(circle at 84% 50%,rgba(95,209,138,.16),transparent 22%),
    #fff;
}

.landing-footer.landing-v2-footer{
  padding:72px clamp(28px,7vw,150px) 44px;
  background:var(--frame-dark);
  color:#f4fbf8;
}

.landing-footer.landing-v2-footer .landing-footer-inner{
  max-width:1360px;
  margin:0 auto;
}

.landing-footer.landing-v2-footer .landing-footer-grid{
  display:grid;
  grid-template-columns:1.2fr .7fr .8fr 1.25fr;
  gap:clamp(32px,5vw,80px);
  align-items:start;
}

.landing-footer.landing-v2-footer a,
.landing-footer.landing-v2-footer p,
.landing-footer.landing-v2-footer label,
.landing-footer.landing-v2-footer span{
  color:rgba(255,255,255,.78);
}

.landing-footer.landing-v2-footer h3,
.landing-footer.landing-v2-footer .landing-footer-logo{
  color:var(--frame-blue);
}

.landing-footer.landing-v2-footer .landing-footer-column,
.landing-footer.landing-v2-footer .landing-footer-brand,
.landing-footer.landing-v2-footer .landing-footer-newsletter{
  display:grid;
  gap:14px;
}

.landing-footer.landing-v2-footer .landing-newsletter-form{
  display:flex;
  gap:10px;
}

.landing-footer.landing-v2-footer input{
  min-height:50px;
  width:min(260px,100%);
  padding:0 16px;
  border:0;
  border-radius:10px;
  background:#fff;
  color:var(--frame-dark);
  font:inherit;
}

.landing-footer.landing-v2-footer button{
  min-height:50px;
  padding:0 20px;
  border:0;
  border-radius:10px;
  background:var(--frame-blue-2);
  color:#fff;
  font:inherit;
  font-weight:800;
}

.landing-footer.landing-v2-footer .landing-footer-rule{
  height:1px;
  margin:56px 0 28px;
  background:rgba(255,255,255,.45);
}

.landing-footer.landing-v2-footer .landing-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.landing-footer.landing-v2-footer .landing-social-row{
  display:flex;
  gap:12px;
  align-items:center;
}

.landing-footer.landing-v2-footer .landing-social-row a{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  color:var(--frame-dark);
  text-decoration:none;
  font-weight:900;
}

@media (max-width: 1180px){
  .landing-v2-hero-grid{
    grid-template-columns:1fr;
  }

  .landing-v2-hero-copy{
    max-width:760px;
    margin:0 auto;
    text-align:center;
  }

  .landing-v2-lead{
    max-width:760px;
  }

  .landing-v2-actions{
    justify-content:center;
  }

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

@media (max-width: 760px){
  body[data-page="landing"] .landing-topbar{
    grid-template-columns:1fr auto;
    gap:16px;
  }

  body[data-page="landing"] .site-nav{
    grid-column:1 / -1;
    order:initial;
    padding-bottom:4px;
  }

  .landing-v2-hero{
    padding:54px 20px 68px;
  }

  .landing-v2-hero-heading{
    text-align:left;
  }

  .landing-v2-hero h1{
    font-size:clamp(42px,14vw,58px);
    line-height:1.03;
    letter-spacing:-.055em;
  }

  .landing-v2-hero h1 span{
    display:inline;
  }

  .landing-v2-hero-grid{
    gap:34px;
    margin-top:42px;
  }

  .landing-v2-hero-copy{
    text-align:left;
  }

  .landing-v2-actions{
    justify-content:flex-start;
  }

  .landing-v2-window{
    transform:none;
  }

  .landing-v2-band{
    min-height:auto;
  }

  .landing-footer.landing-v2-footer .landing-footer-grid,
  .landing-footer.landing-v2-footer .landing-footer-bottom{
    grid-template-columns:1fr;
    display:grid;
  }

  .landing-footer.landing-v2-footer .landing-newsletter-form{
    flex-direction:column;
  }
}

/* Frame brand override: blue logo system for the landing page. */
body[data-page="landing"]{
  --frame-dark:#061b4f;
  --frame-dark-2:#03143d;
  --frame-blue:#1e63ff;
  --frame-blue-2:#0d45c7;
  --frame-cream:#f5f8ff;
  --frame-mint:#eaf3ff;
  --frame-ice:#f8fbff;
  --frame-text:#071b3f;
  --frame-muted:#5f6c82;
  background:var(--frame-cream) !important;
}

body[data-page="landing"] .landing-offer-bar{
  background:linear-gradient(90deg,#ecf4ff 0%,#f8fbff 56%,#e7f0ff 100%);
  justify-content:center;
}

body[data-page="landing"] .landing-offer-mascot{
  background:linear-gradient(135deg,#061b4f,#1e63ff);
  color:#fff;
}

body[data-page="landing"] .landing-offer-bar a{
  border-color:#0d45c7;
  color:#0d45c7;
  box-shadow:0 4px 12px rgba(13,69,199,.14);
}

body[data-page="landing"] .landing-topbar{
  display:grid;
  grid-template-columns:minmax(210px,1fr) auto minmax(160px,1fr);
  min-height:96px;
  background:rgba(255,255,255,.94);
  box-shadow:0 14px 34px rgba(6,27,79,.1);
}

body[data-page="landing"] .landing-topbar.is-scrolled{
  background:rgba(255,255,255,.98);
  box-shadow:0 16px 34px rgba(6,27,79,.14);
}

body[data-page="landing"] .site-brand{
  display:inline-flex;
  align-items:center;
  width:max-content;
}

body[data-page="landing"] .site-brand-logo{
  display:block;
  width:auto;
  height:58px;
  max-width:228px;
  object-fit:contain;
}

body[data-page="landing"] .site-brand-text{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

body[data-page="landing"] .site-nav a{
  color:rgba(7,27,63,.78);
}

body[data-page="landing"] .site-nav-caret{
  color:rgba(7,27,63,.45);
}

body[data-page="landing"] .site-topbar-actions{
  justify-self:end;
}

body[data-page="landing"] .site-button.primary{
  background:#0d45c7;
  box-shadow:0 14px 28px rgba(13,69,199,.24);
}

body[data-page="landing"] .site-button.subtle{
  border-color:rgba(6,27,79,.16);
  color:#061b4f;
}

.landing-v2-hero{
  background:
    radial-gradient(circle at 86% 11%, rgba(30,99,255,.22), transparent 24%),
    radial-gradient(circle at 12% 30%, rgba(255,255,255,.96), transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f5f8ff 42%,#eaf3ff 100%);
}

.landing-v2-hero h1,
.landing-v2-band h2,
.landing-v2-final h2{
  color:#061b4f;
}

.landing-v2-hero h1 span{
  color:#1e63ff;
}

.landing-v2-kicker{
  border-color:rgba(30,99,255,.2);
  background:rgba(234,243,255,.9);
  color:#0d45c7;
}

.landing-v2-lead,
.landing-v2-proof,
.landing-v2-steps p,
.landing-v2-trust-card span{
  color:#5f6c82;
}

.landing-v2-orbit.orbit-a{
  border-color:rgba(30,99,255,.26);
}

.landing-v2-orbit.orbit-b{
  background:radial-gradient(circle,rgba(30,99,255,.2),transparent 66%);
}

.landing-v2-window{
  background:linear-gradient(180deg,#fbfdff 0%,#eef5ff 100%);
  border-color:rgba(6,27,79,.1);
  box-shadow:0 34px 90px rgba(6,27,79,.18);
}

.landing-v2-window-top{
  background:#061b4f;
  color:#fff;
}

.landing-v2-window-top span:nth-child(3){
  background:#62a0ff;
}

.landing-v2-paper em{
  background:#52647f;
}

.landing-v2-paper strong,
.landing-v2-signal,
.landing-v2-journal-card strong,
.landing-v2-signal-grid span,
.landing-v2-steps strong{
  color:#061b4f;
}

.landing-v2-scan{
  background:linear-gradient(180deg,rgba(30,99,255,0),rgba(30,99,255,.22),rgba(30,99,255,0));
}

.landing-v2-signal.signal-field{
  background:#e1edff;
  color:#0d45c7;
}

.landing-v2-journal-card span,
.landing-v2-trust-card strong,
.landing-v2-steps span{
  color:#0d45c7;
}

.landing-v2-journal-card em{
  background:#e7f0ff;
  color:#0d45c7;
}

.landing-v2-steps article{
  background:#f8fbff;
  border-color:rgba(6,27,79,.08);
  box-shadow:0 18px 40px rgba(6,27,79,.06);
}

.landing-v2-signals{
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.9),transparent 28%),
    linear-gradient(135deg,#eaf3ff 0%,#f8fbff 100%);
}

.landing-v2-signal-grid span:nth-child(2),
.landing-v2-signal-grid span:nth-child(5){
  background:#061b4f;
  color:#fff;
}

.landing-v2-trust{
  background:
    radial-gradient(circle at 84% 18%,rgba(255,255,255,.88),transparent 28%),
    linear-gradient(135deg,#f0f6ff 0%,#ffffff 100%);
}

.landing-v2-final{
  background:
    radial-gradient(circle at 84% 50%,rgba(30,99,255,.14),transparent 22%),
    #fff;
}

.landing-footer.landing-v2-footer{
  background:#061b4f;
}

.landing-footer.landing-v2-footer h3,
.landing-footer.landing-v2-footer .landing-footer-logo{
  color:#8db7ff;
}

.landing-footer.landing-v2-footer button{
  background:#1e63ff;
}

@media (max-width: 760px){
  body[data-page="landing"] .landing-topbar{
    grid-template-columns:1fr auto;
    background:rgba(255,255,255,.98);
  }

  body[data-page="landing"] .site-brand-logo{
    height:48px;
    max-width:184px;
  }
}

/* Frame landing rebuild: clean blue portal system. */
body[data-page="landing"]{
  --frame-ink:#071a44;
  --frame-navy:#061746;
  --frame-navy-2:#020b26;
  --frame-blue:#125dff;
  --frame-blue-2:#0045cc;
  --frame-sky:#eaf3ff;
  --frame-ice:#f7fbff;
  --frame-line:rgba(7,26,68,.12);
  --frame-muted:#65728a;
  overflow-x:hidden;
  background:#f7fbff !important;
}

body[data-page="landing"] .site-shell.landing-shell{
  background:#f7fbff;
}

body[data-page="landing"] .landing-offer-bar{
  min-height:54px;
  padding:9px 24px;
  background:linear-gradient(90deg,#eef6ff 0%,#ffffff 50%,#e6f0ff 100%);
  color:var(--frame-ink);
  border:0;
}

body[data-page="landing"] .landing-offer-mascot{
  background:linear-gradient(145deg,var(--frame-navy),var(--frame-blue));
  color:#fff;
}

body[data-page="landing"] .landing-offer-bar strong{
  color:var(--frame-ink);
  letter-spacing:-.02em;
}

body[data-page="landing"] .landing-offer-bar strong span{
  color:var(--frame-blue);
}

body[data-page="landing"] .landing-offer-bar a{
  border-color:rgba(18,93,255,.28);
  color:var(--frame-blue-2);
  box-shadow:0 10px 22px rgba(18,93,255,.12);
}

body[data-page="landing"] .landing-topbar{
  display:grid;
  grid-template-columns:minmax(220px,1fr) auto minmax(160px,1fr);
  min-height:90px;
  padding:0 clamp(24px,4vw,58px);
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(7,26,68,.06);
  box-shadow:0 18px 44px rgba(7,26,68,.1);
  backdrop-filter:blur(18px);
}

body[data-page="landing"] .landing-topbar.is-scrolled{
  background:rgba(255,255,255,.97);
  box-shadow:0 16px 36px rgba(7,26,68,.14);
}

body[data-page="landing"] .site-brand-logo{
  height:56px;
  max-width:218px;
}

body[data-page="landing"] .site-brand-text{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

body[data-page="landing"] .site-nav{
  gap:34px;
}

body[data-page="landing"] .site-nav a{
  color:rgba(7,26,68,.75);
  font-size:18px;
  font-weight:800;
}

body[data-page="landing"] .site-nav a:hover{
  color:var(--frame-blue);
}

body[data-page="landing"] .site-nav-caret{
  color:rgba(7,26,68,.44);
}

body[data-page="landing"] .site-topbar-actions{
  justify-self:end;
}

body[data-page="landing"] .site-topbar-actions .site-button.primary{
  min-height:58px;
  padding:0 28px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-2));
  box-shadow:0 18px 36px rgba(18,93,255,.22);
}

.frame-home{
  color:var(--frame-ink);
  background:#f7fbff;
}

.frame-hero{
  position:relative;
  min-height:clamp(720px, calc(100vh - 144px), 920px);
  display:grid;
  grid-template-columns:minmax(420px,.86fr) minmax(520px,1.14fr);
  gap:clamp(48px,7vw,116px);
  align-items:center;
  padding:clamp(58px,7vw,108px) clamp(28px,8vw,154px) clamp(74px,8vw,112px);
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 14%,rgba(18,93,255,.22),transparent 27%),
    radial-gradient(circle at 15% 12%,rgba(255,255,255,.9),transparent 24%),
    linear-gradient(135deg,#ffffff 0%,#f5f9ff 44%,#e7f1ff 100%);
}

.frame-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(18,93,255,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(18,93,255,.055) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:radial-gradient(circle at 76% 44%,#000 0%,transparent 58%);
  pointer-events:none;
}

.frame-hero-copy{
  position:relative;
  z-index:2;
  max-width:720px;
}

.frame-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  margin:0 0 22px;
  padding:0 16px;
  border:1px solid rgba(18,93,255,.2);
  border-radius:999px;
  background:rgba(255,255,255,.75);
  color:var(--frame-blue-2);
  font-size:12px;
  line-height:1;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.frame-hero h1{
  max-width:650px;
  margin:0;
  color:var(--frame-ink);
  font-size:clamp(58px,6vw,94px);
  line-height:.95;
  letter-spacing:-.068em;
  font-weight:1000;
}

.frame-lead{
  max-width:610px;
  margin:30px 0 0;
  color:var(--frame-muted);
  font-size:clamp(22px,1.95vw,29px);
  line-height:1.38;
  letter-spacing:-.035em;
}

.frame-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  margin-top:34px;
}

.frame-button{
  min-height:62px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 30px;
  border-radius:18px;
  text-decoration:none;
  font-size:18px;
  font-weight:1000;
  letter-spacing:-.035em;
}

.frame-button.primary{
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-2));
  color:#fff;
  box-shadow:0 24px 46px rgba(18,93,255,.25);
}

.frame-button.secondary{
  background:#fff;
  color:var(--frame-ink);
  border:1px solid rgba(7,26,68,.13);
  box-shadow:0 16px 32px rgba(7,26,68,.08);
}

.frame-portal-stage{
  position:relative;
  z-index:2;
  min-height:580px;
  display:grid;
  place-items:center;
  perspective:1200px;
}

.frame-glow{
  position:absolute;
  width:560px;
  height:560px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(18,93,255,.28) 0%,rgba(18,93,255,.11) 42%,transparent 70%);
  filter:blur(4px);
  animation:frameGlow 6s ease-in-out infinite;
}

.frame-door{
  position:relative;
  width:300px;
  height:370px;
  border-radius:28px 28px 18px 18px;
  background:linear-gradient(145deg,#08226f 0%,#125dff 82%);
  box-shadow:0 42px 90px rgba(7,26,68,.28);
  transform:rotateY(-12deg) rotateX(4deg);
  animation:frameDoorFloat 7s ease-in-out infinite;
}

.frame-door::before{
  content:"";
  position:absolute;
  inset:26px 28px 30px 78px;
  border-radius:6px 18px 12px 6px;
  background:linear-gradient(140deg,#ffffff 0%,#eef5ff 100%);
  box-shadow:inset 0 0 0 1px rgba(7,26,68,.1);
}

.frame-door-panel{
  position:absolute;
  left:42px;
  top:58px;
  width:106px;
  height:250px;
  border-radius:4px 14px 10px 4px;
  background:linear-gradient(155deg,#041653 0%,#0b50e4 100%);
  transform:skewY(10deg);
}

.frame-door-panel::after{
  content:"";
  position:absolute;
  right:18px;
  top:116px;
  width:14px;
  height:14px;
  border-radius:999px;
  background:#fff;
}

.frame-door-light{
  position:absolute;
  left:50%;
  bottom:-128px;
  width:390px;
  height:220px;
  transform:translateX(-50%);
  clip-path:polygon(43% 0,57% 0,100% 100%,0 100%);
  background:linear-gradient(180deg,rgba(18,93,255,.35),rgba(255,255,255,0));
  filter:blur(.4px);
}

.frame-beam{
  position:absolute;
  bottom:78px;
  width:310px;
  height:130px;
  background:linear-gradient(180deg,rgba(18,93,255,.28),rgba(255,255,255,0));
  filter:blur(1px);
  opacity:.9;
}

.frame-beam.beam-left{
  left:12%;
  transform:rotate(14deg);
  clip-path:polygon(100% 0,74% 0,0 100%,42% 100%);
}

.frame-beam.beam-right{
  right:8%;
  transform:rotate(-12deg);
  clip-path:polygon(0 0,28% 0,100% 100%,58% 100%);
}

.frame-preview-card,
.frame-preview-list{
  position:absolute;
  border:1px solid rgba(7,26,68,.1);
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 54px rgba(7,26,68,.14);
}

.frame-preview-card{
  width:250px;
  min-height:132px;
  padding:22px;
  border-radius:28px;
  animation:frameCardFloat 6.4s ease-in-out infinite;
}

.frame-preview-card span{
  display:block;
  color:var(--frame-blue-2);
  font-size:11px;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.frame-preview-card strong{
  display:block;
  margin-top:12px;
  color:var(--frame-ink);
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.05em;
}

.frame-preview-card em{
  display:inline-flex;
  margin-top:14px;
  padding:8px 12px;
  border-radius:999px;
  background:#eaf3ff;
  color:var(--frame-blue-2);
  font-style:normal;
  font-weight:900;
}

.manuscript-card{
  left:4%;
  top:94px;
}

.journal-card{
  right:4%;
  bottom:110px;
  animation-delay:.45s;
}

.frame-preview-list{
  left:14%;
  bottom:76px;
  width:300px;
  padding:24px;
  border-radius:30px;
}

.frame-preview-list b{
  display:block;
  margin-bottom:18px;
  color:var(--frame-ink);
  font-size:22px;
  letter-spacing:-.04em;
}

.frame-preview-list i{
  display:block;
  height:12px;
  margin:12px 0;
  border-radius:999px;
  background:linear-gradient(90deg,#0d3fae,#bcd7ff);
}

.frame-preview-list i:nth-child(3){
  width:78%;
}

.frame-preview-list i:nth-child(4){
  width:58%;
}

.frame-strip{
  min-height:clamp(620px,72vh,840px);
  display:grid;
  align-items:center;
  padding:clamp(82px,9vw,132px) clamp(28px,8vw,154px);
  overflow:hidden;
}

.frame-strip h2,
.frame-final h2{
  margin:0;
  color:inherit;
  font-size:clamp(48px,5.2vw,82px);
  line-height:.96;
  letter-spacing:-.064em;
  font-weight:1000;
}

.frame-strip-dark{
  color:#fff;
  background:
    radial-gradient(circle at 84% 24%,rgba(18,93,255,.36),transparent 26%),
    linear-gradient(135deg,var(--frame-navy-2),var(--frame-navy));
}

.frame-strip-dark .frame-eyebrow{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#bdd4ff;
}

.frame-steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-top:58px;
}

.frame-steps article{
  min-height:226px;
  padding:30px;
  border-radius:34px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.frame-steps span{
  color:#8db7ff;
  font-size:13px;
  font-weight:1000;
}

.frame-steps strong{
  display:block;
  margin-top:26px;
  color:#fff;
  font-size:36px;
  line-height:1;
  letter-spacing:-.045em;
}

.frame-steps p{
  margin:18px 0 0;
  color:rgba(255,255,255,.72);
  font-size:20px;
  line-height:1.36;
}

.frame-strip-light{
  color:var(--frame-ink);
  background:linear-gradient(135deg,#ffffff 0%,#f2f7ff 100%);
}

.frame-strip-blue{
  color:#fff;
  background:
    radial-gradient(circle at 16% 18%,rgba(255,255,255,.2),transparent 26%),
    linear-gradient(135deg,#0d45c7 0%,#061746 100%);
}

.frame-split{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(460px,1fr);
  gap:clamp(44px,7vw,124px);
  align-items:center;
  max-width:1360px;
  width:100%;
  margin:0 auto;
}

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

.frame-signal-wall span{
  min-height:94px;
  display:flex;
  align-items:center;
  padding:0 26px;
  border-radius:28px;
  background:#fff;
  color:var(--frame-ink);
  font-size:24px;
  font-weight:950;
  letter-spacing:-.04em;
  box-shadow:0 20px 48px rgba(7,26,68,.08);
}

.frame-signal-wall span:nth-child(2),
.frame-signal-wall span:nth-child(5){
  background:var(--frame-navy);
  color:#fff;
}

.frame-trust-panel{
  display:grid;
  gap:16px;
  padding:24px;
  border-radius:36px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
}

.frame-trust-panel article{
  min-height:94px;
  display:grid;
  grid-template-columns:190px 1fr;
  gap:22px;
  align-items:center;
  padding:22px 24px;
  border-radius:26px;
  background:rgba(255,255,255,.92);
  color:var(--frame-ink);
}

.frame-trust-panel strong{
  color:var(--frame-blue-2);
  font-size:14px;
  font-weight:1000;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.frame-trust-panel p{
  margin:0;
  color:#53617a;
  font-size:21px;
  line-height:1.34;
  letter-spacing:-.03em;
}

.frame-final{
  min-height:46vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  padding:clamp(74px,8vw,118px) clamp(28px,8vw,154px);
  background:
    radial-gradient(circle at 80% 36%,rgba(18,93,255,.15),transparent 24%),
    #fff;
}

.frame-footer{
  margin:0;
  padding:72px clamp(28px,8vw,154px) 44px;
  background:var(--frame-navy-2);
  color:#fff;
}

.frame-footer-grid{
  display:grid;
  grid-template-columns:1.15fr .65fr .65fr 1fr;
  gap:clamp(32px,5vw,82px);
  max-width:1360px;
  margin:0 auto;
}

.frame-footer-logo{
  display:block;
  width:180px;
  height:auto;
  padding:10px 14px;
  border-radius:18px;
  background:#fff;
}

.frame-footer p{
  max-width:370px;
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.5;
}

.frame-footer h3{
  margin:0 0 20px;
  color:#8db7ff;
  font-size:18px;
}

.frame-footer nav{
  display:grid;
  gap:14px;
}

.frame-footer a{
  color:rgba(255,255,255,.76);
  text-decoration:none;
  font-size:17px;
}

.frame-newsletter{
  display:flex;
  gap:10px;
}

.frame-newsletter input{
  min-height:50px;
  width:min(260px,100%);
  padding:0 16px;
  border:0;
  border-radius:14px;
  font:inherit;
}

.frame-newsletter button{
  min-height:50px;
  padding:0 18px;
  border:0;
  border-radius:14px;
  background:var(--frame-blue);
  color:#fff;
  font:inherit;
  font-weight:900;
}

.frame-footer-bottom{
  max-width:1360px;
  margin:56px auto 0;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:rgba(255,255,255,.7);
}

@keyframes frameGlow{
  0%,100%{opacity:.7; transform:scale(.96)}
  50%{opacity:1; transform:scale(1.05)}
}

@keyframes frameDoorFloat{
  0%,100%{transform:rotateY(-12deg) rotateX(4deg) translateY(0)}
  50%{transform:rotateY(-8deg) rotateX(2deg) translateY(-14px)}
}

@keyframes frameCardFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}

@media (max-width: 1120px){
  .frame-hero,
  .frame-split{
    grid-template-columns:1fr;
  }

  .frame-hero-copy{
    max-width:900px;
  }

  .frame-portal-stage{
    min-height:560px;
  }

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

@media (max-width: 760px){
  body[data-page="landing"] .landing-offer-bar{
    display:none;
  }

  body[data-page="landing"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:auto;
    padding:16px 20px;
  }

  body[data-page="landing"] .site-brand-logo{
    height:44px;
    max-width:172px;
  }

  body[data-page="landing"] .site-nav{
    display:none;
  }

  body[data-page="landing"] .site-topbar-actions .site-button.primary{
    display:none;
  }

  .frame-hero{
    min-height:auto;
    padding:58px 20px 76px;
  }

  .frame-hero h1{
    max-width:330px;
    font-size:46px;
    line-height:.94;
    letter-spacing:-.064em;
  }

  .frame-eyebrow{
    max-width:100%;
    min-height:34px;
    margin-bottom:18px;
    padding:0 13px;
    font-size:10px;
    letter-spacing:.1em;
    white-space:normal;
  }

  .frame-lead{
    max-width:330px;
    font-size:19px;
  }

  .frame-hero-actions,
  .frame-button{
    width:100%;
  }

  .frame-hero-actions{
    max-width:330px;
  }

  .frame-portal-stage{
    min-height:390px;
    transform:none;
    margin-bottom:0;
  }

  .frame-glow{
    width:330px;
    height:330px;
  }

  .frame-door{
    width:190px;
    height:260px;
  }

  .frame-door::before{
    inset:20px 20px 24px 56px;
  }

  .frame-door-panel{
    left:30px;
    top:44px;
    width:74px;
    height:176px;
  }

  .frame-door-light{
    bottom:-82px;
    width:280px;
    height:150px;
  }

  .frame-preview-card{
    width:168px;
    min-height:96px;
    padding:16px;
    border-radius:22px;
  }

  .frame-preview-card strong{
    font-size:17px;
  }

  .frame-preview-card em{
    padding:6px 9px;
    font-size:12px;
  }

  .manuscript-card{
    left:-4px;
    top:14px;
  }

  .journal-card{
    display:none;
  }

  .frame-preview-list{
    left:0;
    bottom:26px;
    width:206px;
    padding:16px;
    border-radius:22px;
  }

  .frame-preview-list b{
    font-size:17px;
  }

  .frame-strip,
  .frame-final,
  .frame-footer{
    padding-left:20px;
    padding-right:20px;
  }

  .frame-steps,
  .frame-signal-wall,
  .frame-footer-grid{
    grid-template-columns:1fr;
  }

  .frame-trust-panel article{
    grid-template-columns:1fr;
  }

  .frame-final,
  .frame-footer-bottom,
  .frame-newsletter{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Frame landing typography refactor: lighter, calmer, product-first. */
body[data-page="landing"]{
  font-family:"Avenir Next","Nunito Sans","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  line-height:1.56;
  font-weight:400;
}

body[data-page="landing"] .landing-offer-bar strong,
body[data-page="landing"] .landing-offer-bar a,
body[data-page="landing"] .site-nav a,
body[data-page="landing"] .site-topbar-actions .site-button.primary,
.frame-eyebrow,
.frame-button,
.frame-preview-card span,
.frame-trust-panel strong{
  font-weight:500;
}

body[data-page="landing"] .landing-offer-bar{
  min-height:46px;
  padding:8px 24px;
  font-size:15px;
}

body[data-page="landing"] .landing-topbar{
  min-height:76px;
}

body[data-page="landing"] .site-nav{
  gap:28px;
}

body[data-page="landing"] .site-nav a{
  font-size:16px;
  letter-spacing:-.01em;
}

body[data-page="landing"] .site-topbar-actions .site-button.primary{
  min-height:50px;
  padding:0 24px;
  border-radius:16px;
  font-size:16px;
}

.frame-hero{
  min-height:clamp(660px, calc(100vh - 122px), 820px);
  grid-template-columns:minmax(360px,.74fr) minmax(560px,1.26fr);
  gap:clamp(64px,8vw,140px);
  padding:clamp(74px,8vw,116px) clamp(28px,8vw,154px) clamp(92px,8vw,128px);
}

.frame-hero-copy{
  max-width:580px;
}

.frame-eyebrow{
  min-height:34px;
  margin-bottom:20px;
  padding:0 14px;
  font-size:11px;
  letter-spacing:.11em;
}

.frame-hero h1,
.landing-v2-hero h1{
  max-width:580px;
  font-size:clamp(48px,4vw,56px);
  line-height:1.12;
  letter-spacing:-.035em;
  font-weight:600;
}

.landing-v2-hero h1 span{
  font-size:inherit;
  line-height:inherit;
  font-weight:inherit;
}

.frame-lead{
  max-width:560px;
  margin-top:24px;
  font-size:clamp(18px,1.35vw,21px);
  line-height:1.58;
  letter-spacing:-.012em;
  font-weight:400;
}

.frame-button{
  min-height:54px;
  padding:0 24px;
  border-radius:16px;
  font-size:16px;
  letter-spacing:-.012em;
}

.frame-portal-stage{
  min-height:540px;
}

.frame-preview-card{
  width:228px;
  min-height:116px;
  padding:20px;
}

.frame-preview-card strong{
  font-size:22px;
  line-height:1.16;
  letter-spacing:-.025em;
  font-weight:600;
}

.frame-preview-card em{
  font-size:14px;
  font-weight:500;
}

.frame-preview-list{
  width:276px;
  padding:22px;
}

.frame-preview-list b{
  font-size:22px;
  line-height:1.18;
  letter-spacing:-.02em;
  font-weight:600;
}

.frame-strip{
  min-height:auto;
  padding:clamp(112px,10vw,156px) clamp(28px,8vw,154px);
}

.frame-strip h2,
.frame-final h2,
.landing-v2-band h2,
.landing-v2-final h2{
  max-width:620px;
  font-size:clamp(32px,3vw,36px);
  line-height:1.18;
  letter-spacing:-.025em;
  font-weight:600;
}

.frame-steps{
  gap:20px;
  margin-top:46px;
}

.frame-steps article{
  min-height:260px;
  padding:30px;
  border-radius:28px;
}

.frame-steps span{
  font-size:12px;
  font-weight:500;
}

.frame-steps strong{
  margin-top:22px;
  font-size:23px;
  line-height:1.16;
  letter-spacing:-.02em;
  font-weight:600;
}

.frame-steps p{
  max-width:520px;
  margin-top:14px;
  font-size:16px;
  line-height:1.56;
  font-weight:400;
}

.frame-steps ul{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
}

.frame-steps li{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:30px;
  padding:0 11px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1;
  font-weight:500;
}

.frame-steps li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:#9cc2ff;
}

.frame-split{
  gap:clamp(56px,8vw,132px);
}

.frame-signal-wall{
  gap:14px;
}

.frame-signal-wall span{
  min-height:76px;
  padding:0 22px;
  border-radius:24px;
  font-size:18px;
  font-weight:500;
  letter-spacing:-.018em;
}

.frame-trust-panel{
  padding:22px;
  border-radius:32px;
}

.frame-trust-panel article{
  min-height:82px;
  grid-template-columns:160px 1fr;
  gap:18px;
  padding:20px 22px;
  border-radius:22px;
}

.frame-trust-panel p{
  max-width:640px;
  font-size:17px;
  line-height:1.56;
  letter-spacing:-.012em;
  font-weight:400;
}

.frame-final{
  min-height:auto;
  padding:clamp(100px,9vw,138px) clamp(28px,8vw,154px);
}

.frame-footer{
  padding-top:76px;
}

.frame-footer p,
.frame-footer a,
.frame-footer-bottom{
  font-size:16px;
  line-height:1.6;
  font-weight:400;
}

.frame-footer h3{
  font-size:20px;
  line-height:1.2;
  font-weight:600;
}

.frame-newsletter button{
  font-weight:500;
}

body[data-page="landing"] .frame-footer{
  padding-top:clamp(82px,8vw,112px);
  padding-bottom:48px;
}

body[data-page="landing"] .frame-footer-grid{
  grid-template-columns:1.35fr .62fr .68fr .58fr 1.05fr;
  gap:clamp(34px,4.5vw,72px);
  align-items:start;
}

body[data-page="landing"] .frame-footer-logo{
  width:150px;
  padding:8px 12px;
  border-radius:16px;
}

body[data-page="landing"] .frame-footer p{
  max-width:330px;
  margin-top:22px;
  color:rgba(255,255,255,.78);
}

body[data-page="landing"] .frame-footer h3{
  margin-bottom:18px;
  color:#a7c6ff;
  font-size:15px;
  letter-spacing:.02em;
}

body[data-page="landing"] .frame-footer nav{
  gap:12px;
}

body[data-page="landing"] .frame-footer a{
  color:rgba(255,255,255,.72);
}

body[data-page="landing"] .frame-footer a:hover{
  color:#fff;
}

body[data-page="landing"] .frame-footer-newsletter h3{
  margin-bottom:13px;
}

body[data-page="landing"] .frame-newsletter{
  width:100%;
  max-width:360px;
  gap:8px;
}

body[data-page="landing"] .frame-newsletter input{
  min-height:44px;
  width:100%;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:12px;
  font-size:14px;
}

body[data-page="landing"] .frame-newsletter input::placeholder{
  color:rgba(255,255,255,.48);
}

body[data-page="landing"] .frame-newsletter button{
  min-height:44px;
  padding:0 15px;
  border-radius:12px;
  background:#fff;
  color:var(--frame-ink);
  font-size:14px;
  box-shadow:none;
}

body[data-page="landing"] .frame-footer-bottom{
  margin-top:68px;
  padding-top:0;
  border-top:0;
  align-items:center;
}

body[data-page="landing"] .frame-social-links{
  display:flex;
  align-items:center;
  gap:10px;
}

body[data-page="landing"] .frame-social-links a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.82);
  font-size:12px;
  line-height:1;
  text-decoration:none;
}

body[data-page="landing"] .frame-social-links a:hover{
  background:rgba(255,255,255,.14);
  color:#fff;
}

@media (max-width: 1120px){
  body[data-page="landing"] .frame-footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 760px){
  body[data-page="landing"] .frame-footer-grid{
    grid-template-columns:1fr;
  }

  body[data-page="landing"] .frame-newsletter{
    max-width:100%;
  }

  body[data-page="landing"] .frame-footer-bottom{
    align-items:flex-start;
  }
}

@media (max-width: 1120px){
  .frame-hero{
    grid-template-columns:1fr;
  }

  .frame-hero-copy{
    max-width:620px;
  }

  .frame-hero h1{
    max-width:560px;
  }
}

@media (max-width: 760px){
  .frame-hero{
    padding:58px 20px 84px;
  }

  .frame-hero h1{
    max-width:340px;
    font-size:48px;
    line-height:1.12;
    letter-spacing:-.035em;
  }

  .frame-lead{
    max-width:340px;
    font-size:18px;
    line-height:1.56;
  }

  .frame-strip h2,
  .frame-final h2{
    font-size:32px;
    line-height:1.18;
  }

  .frame-strip{
    padding-top:88px;
    padding-bottom:88px;
  }

  .frame-trust-panel article{
    grid-template-columns:1fr;
  }
}

/* Frame landing visual system: product UI, not illustration. */
.frame-hero::after,
.frame-strip-light::before,
.frame-strip-blue::before{
  content:"";
  position:absolute;
  pointer-events:none;
}

.frame-hero{
  isolation:isolate;
}

.frame-hero::after{
  right:-180px;
  top:120px;
  width:520px;
  height:520px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(18,93,255,.16),transparent 64%);
  filter:blur(6px);
  z-index:0;
}

.frame-product-preview{
  position:relative;
  z-index:2;
  min-height:540px;
  display:grid;
  place-items:center;
}

.frame-preview-glow{
  position:absolute;
  width:min(720px,90%);
  height:420px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(18,93,255,.19),rgba(18,93,255,.07) 46%,transparent 72%);
  filter:blur(10px);
  animation:frameGlow 7s ease-in-out infinite;
}

.frame-preview-window{
  position:relative;
  width:min(760px,100%);
  border:1px solid rgba(7,26,68,.1);
  border-radius:30px;
  background:rgba(255,255,255,.78);
  box-shadow:0 30px 90px rgba(7,26,68,.16);
  backdrop-filter:blur(18px);
  overflow:hidden;
  animation:frameCardFloat 7s ease-in-out infinite;
}

.frame-preview-top{
  height:58px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 22px;
  border-bottom:1px solid rgba(7,26,68,.08);
  background:linear-gradient(90deg,#061746,#0d42b4);
  color:#fff;
}

.frame-preview-top span{
  width:11px;
  height:11px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
}

.frame-preview-top span:nth-child(3){
  background:#9cc2ff;
}

.frame-preview-top strong{
  margin-left:8px;
  font-size:14px;
  font-weight:500;
  letter-spacing:.03em;
}

.frame-preview-body{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:20px;
  padding:24px;
}

.frame-preview-doc,
.frame-preview-panel{
  border:1px solid rgba(7,26,68,.08);
  border-radius:24px;
  background:rgba(255,255,255,.86);
}

.frame-preview-doc{
  padding:26px;
}

.frame-preview-doc p,
.frame-compare-card span,
.frame-decision-output span,
.frame-final-preview span{
  margin:0;
  color:var(--frame-blue-2);
  font-size:11px;
  line-height:1;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.frame-preview-doc h3{
  max-width:320px;
  margin:14px 0 24px;
  color:var(--frame-ink);
  font-size:24px;
  line-height:1.16;
  font-weight:600;
  letter-spacing:-.02em;
}

.frame-doc-lines{
  display:grid;
  gap:11px;
  margin-bottom:24px;
}

.frame-doc-lines i{
  display:block;
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(7,26,68,.36),rgba(7,26,68,.12));
}

.frame-doc-lines i:nth-child(1){width:86%}
.frame-doc-lines i:nth-child(2){width:72%}
.frame-doc-lines i:nth-child(3){width:92%}
.frame-doc-lines i:nth-child(4){width:58%}

.frame-signal-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.frame-signal-chips span,
.frame-compare-row i,
.frame-compare-row em{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 11px;
  border-radius:999px;
  background:#edf4ff;
  color:#174eb9;
  font-size:13px;
  line-height:1;
  font-weight:500;
}

.frame-preview-panel{
  display:grid;
  gap:14px;
  padding:18px;
}

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

.frame-score-grid article{
  min-height:88px;
  padding:16px;
  border-radius:20px;
  background:linear-gradient(180deg,#f6f9ff,#eef5ff);
  border:1px solid rgba(18,93,255,.1);
}

.frame-score-grid span{
  display:block;
  color:#65728a;
  font-size:12px;
  font-weight:500;
}

.frame-score-grid strong{
  display:block;
  margin-top:8px;
  color:var(--frame-ink);
  font-size:24px;
  line-height:1;
  font-weight:600;
}

.frame-journal-row{
  padding:17px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(7,26,68,.09);
}

.frame-journal-row b{
  display:block;
  color:var(--frame-ink);
  font-size:16px;
  line-height:1.25;
  font-weight:600;
}

.frame-journal-row span{
  display:block;
  margin-top:8px;
  color:#65728a;
  font-size:14px;
  line-height:1.35;
}

.frame-journal-row.muted{
  opacity:.72;
}

.frame-compare-card{
  position:absolute;
  right:2%;
  bottom:24px;
  width:260px;
  padding:22px;
  border-radius:26px;
  border:1px solid rgba(7,26,68,.1);
  background:rgba(255,255,255,.9);
  box-shadow:0 24px 70px rgba(7,26,68,.16);
  backdrop-filter:blur(18px);
  animation:frameCardFloat 6s ease-in-out infinite reverse;
}

.frame-compare-card strong{
  display:block;
  margin-top:10px;
  color:var(--frame-ink);
  font-size:22px;
  line-height:1.18;
  font-weight:600;
}

.frame-compare-card p{
  max-width:220px;
  margin:10px 0 0;
  color:#65728a;
  font-size:15px;
  line-height:1.45;
}

.frame-strip-dark{
  position:relative;
}

.frame-strip-dark::after{
  content:"";
  position:absolute;
  right:7%;
  top:18%;
  width:280px;
  height:280px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(18,93,255,.22),transparent 68%);
  pointer-events:none;
}

.frame-step-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
}

.frame-step-icon svg{
  width:25px;
  height:25px;
  stroke:#9cc2ff;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="landing"] .frame-strip-dark .frame-eyebrow{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#bdd4ff;
}

.frame-steps article{
  position:relative;
  overflow:hidden;
}

.frame-steps article::after{
  content:"";
  position:absolute;
  right:-32px;
  top:-32px;
  width:118px;
  height:118px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
}

.frame-signal-system{
  display:grid;
  gap:18px;
}

.frame-signal-wall{
  grid-template-columns:repeat(5,minmax(0,1fr));
}

.frame-signal-wall span{
  min-height:72px;
  gap:10px;
  justify-content:center;
  padding:0 14px;
  text-align:center;
}

.frame-signal-wall span i{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#edf4ff;
  color:#125dff;
  font-style:normal;
  font-size:15px;
  line-height:1;
}

.frame-signal-wall span:nth-child(2),
.frame-signal-wall span:nth-child(5){
  background:#fff;
  color:var(--frame-ink);
}

.frame-compare-preview{
  padding:20px;
  border-radius:28px;
  border:1px solid rgba(7,26,68,.08);
  background:rgba(255,255,255,.82);
  box-shadow:0 20px 50px rgba(7,26,68,.08);
}

.frame-compare-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.frame-compare-head strong{
  color:var(--frame-ink);
  font-size:20px;
  line-height:1.2;
  font-weight:600;
}

.frame-compare-head span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:#eaf3ff;
  color:#174eb9;
  font-size:13px;
  font-weight:500;
}

.frame-compare-row{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:10px;
  align-items:center;
  padding:13px 0;
  border-top:1px solid rgba(7,26,68,.08);
}

.frame-compare-row b{
  min-width:0;
  color:var(--frame-ink);
  font-size:15px;
  line-height:1.24;
  font-weight:500;
}

.frame-compare-row em{
  background:#f5f8ff;
  color:#65728a;
  font-style:normal;
}

.frame-strip-light,
.frame-strip-blue{
  position:relative;
}

.frame-strip-light::before{
  left:-180px;
  bottom:-180px;
  width:420px;
  height:420px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(18,93,255,.12),transparent 68%);
}

.frame-strip-blue::before{
  right:-120px;
  top:12%;
  width:360px;
  height:360px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(255,255,255,.18),transparent 68%);
}

.frame-trust-panel article{
  grid-template-columns:auto 1fr;
}

.frame-trust-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#edf4ff;
  color:#125dff;
  font-size:18px;
  font-weight:600;
}

.frame-decision-output{
  padding:22px;
  border-radius:26px;
  background:linear-gradient(135deg,#ffffff,#eaf3ff);
  color:var(--frame-ink);
}

.frame-decision-output strong{
  display:block;
  margin-top:10px;
  color:var(--frame-ink);
  font-size:22px;
  line-height:1.18;
  font-weight:600;
  letter-spacing:-.02em;
  text-transform:none;
}

.frame-decision-output p{
  max-width:520px;
  margin:9px 0 0;
  color:#65728a;
  font-size:16px;
  line-height:1.5;
}

.frame-final{
  position:relative;
}

.frame-final-preview{
  min-width:260px;
  padding:22px;
  border-radius:26px;
  border:1px solid rgba(7,26,68,.08);
  background:#fff;
  box-shadow:0 20px 52px rgba(7,26,68,.1);
}

.frame-final-preview b{
  display:block;
  margin:10px 0 16px;
  color:var(--frame-ink);
  font-size:20px;
  line-height:1.2;
  font-weight:600;
}

.frame-final-preview i{
  display:block;
  height:10px;
  margin:9px 0;
  border-radius:999px;
  background:linear-gradient(90deg,#125dff,#bcd7ff);
}

.frame-final-preview i:nth-of-type(2){
  width:68%;
}

@media (max-width: 1120px){
  .frame-product-preview{
    min-height:520px;
  }

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

  .frame-final-preview{
    width:min(420px,100%);
  }
}

@media (max-width: 760px){
  .frame-product-preview{
    min-height:520px;
    place-items:start;
    padding-top:20px;
  }

  .frame-preview-window{
    width:100%;
    border-radius:24px;
  }

  .frame-preview-body{
    grid-template-columns:1fr;
    padding:16px;
  }

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

  .frame-score-grid article{
    min-height:74px;
    padding:12px;
  }

  .frame-score-grid strong{
    font-size:20px;
  }

  .frame-compare-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:14px;
  }

  .frame-signal-wall{
    grid-template-columns:1fr;
  }

  .frame-signal-wall span{
    justify-content:flex-start;
    text-align:left;
  }

  .frame-compare-row{
    grid-template-columns:1fr;
  }

  .frame-trust-panel article{
    grid-template-columns:auto 1fr;
  }

  .frame-final-preview{
    width:100%;
  }
}

/* Frame landing reveal safety.
   Product sections must be visible even when a browser captures the full page
   without scrolling far enough to trigger IntersectionObserver. */
body[data-page="landing"] .frame-home [data-reveal]{
  opacity:1;
  transform:none;
  transition:opacity .45s ease, transform .45s ease;
}

body[data-page="landing"] .frame-home [data-reveal].is-visible{
  opacity:1;
  transform:none;
}

body[data-page="landing"] .frame-final{
  color:var(--frame-ink);
  background:
    radial-gradient(circle at 78% 32%,rgba(18,93,255,.14),transparent 26%),
    linear-gradient(135deg,#f8fbff 0%,#ffffff 62%,#edf4ff 100%);
}

body[data-page="landing"] .frame-final h2{
  color:var(--frame-ink);
}

body[data-page="landing"] .frame-final-copy{
  max-width:620px;
  margin:18px 0 0;
  color:#4f5f76;
  font-size:18px;
  line-height:1.55;
  font-weight:400;
}

body[data-page="landing"] .frame-final .frame-button.primary{
  background:linear-gradient(135deg,#125dff,#0d3fae);
  color:#fff;
  box-shadow:0 18px 42px rgba(18,93,255,.24);
}

body[data-page="landing"] .frame-final .frame-button.secondary{
  background:#fff;
  color:var(--frame-ink);
  border-color:rgba(7,26,68,.14);
}

body[data-page="landing"] .frame-final .frame-button.primary:hover{
  box-shadow:0 20px 46px rgba(18,93,255,.3),0 0 0 5px rgba(18,93,255,.08);
}

body[data-page="landing"] .frame-final-preview{
  min-width:310px;
  max-width:340px;
}

body[data-page="landing"] .frame-final-preview b{
  margin-bottom:18px;
}

body[data-page="landing"] .frame-final-metrics{
  display:grid;
  gap:9px;
}

body[data-page="landing"] .frame-final-metrics em{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 13px;
  border-radius:999px;
  background:#edf4ff;
  color:#174eb9;
  font-size:13px;
  line-height:1;
  font-style:normal;
  font-weight:600;
}

body[data-page="landing"] .frame-final-metrics em:nth-child(2){
  background:#f6fbff;
  color:#36516f;
}

body[data-page="landing"] .frame-final-metrics em:nth-child(3){
  background:#eef8ff;
  color:#0d3fae;
}

body[data-page="landing"].motion-ready .frame-final .frame-final-preview{
  opacity:0;
  transform:translateY(12px);
}

body[data-page="landing"].motion-ready .frame-final.is-visible .frame-final-preview{
  opacity:1;
  transform:none;
  transition-delay:160ms;
}

/* Frame landing motion system: calm, premium, and accessible. */
.frame-brand-moment{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 48%,rgba(18,93,255,.16),transparent 24%),
    rgba(248,251,255,.78);
  animation:frameBrandMomentExit 3s ease-out forwards;
  will-change:opacity;
}

.frame-launch-mark{
  position:relative;
  width:92px;
  height:112px;
  transform:translateY(-8px);
  animation:frameBrandMarkIn .42s ease-out both;
  will-change:opacity, transform;
}

.frame-launch-frame{
  position:absolute;
  inset:0;
  border:8px solid #0d3fae;
  border-left-width:10px;
  border-radius:8px 10px 10px 8px;
  box-shadow:0 16px 42px rgba(18,93,255,.22);
}

.frame-launch-door{
  position:absolute;
  left:14px;
  top:18px;
  width:45px;
  height:76px;
  border-radius:5px 2px 2px 5px;
  background:linear-gradient(145deg,#061746,#125dff 74%);
  transform-origin:left center;
  animation:frameDoorOpen 1.12s ease-out .22s both;
  will-change:transform;
}

.frame-launch-door::after{
  content:"";
  position:absolute;
  right:10px;
  top:36px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 0 18px rgba(255,255,255,.9);
}

.frame-launch-light{
  position:absolute;
  left:12px;
  right:12px;
  bottom:-30px;
  height:72px;
  background:linear-gradient(180deg,rgba(18,93,255,.34),transparent 78%);
  clip-path:polygon(38% 0,62% 0,100% 100%,0 100%);
  filter:blur(1px);
  animation:frameLightSpread 1.18s ease-out .28s both;
  will-change:opacity, transform;
}

body[data-page="landing"].motion-ready .landing-offer-bar,
body[data-page="landing"].motion-ready .landing-topbar{
  animation:frameHeaderIn .32s ease-out both;
}

body[data-page="landing"].motion-ready .landing-topbar{
  animation-delay:.08s;
}

body[data-page="landing"].motion-ready .frame-hero-copy{
  animation:frameHeroContentIn .38s ease-out .26s both;
}

body[data-page="landing"].motion-ready .frame-product-preview{
  animation:frameHeroContentIn .4s ease-out .34s both;
}

body[data-page="landing"].motion-ready .frame-home [data-reveal]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .36s ease-out, transform .36s ease-out;
}

body[data-page="landing"].motion-ready .frame-home [data-reveal].is-visible{
  opacity:1;
  transform:none;
}

body[data-page="landing"].motion-ready .frame-steps article,
body[data-page="landing"].motion-ready .frame-signal-wall span,
body[data-page="landing"].motion-ready .frame-trust-panel article,
body[data-page="landing"].motion-ready .frame-decision-output,
body[data-page="landing"].motion-ready .frame-compare-row,
body[data-page="landing"].motion-ready .frame-score-grid article,
body[data-page="landing"].motion-ready .frame-journal-row{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .3s ease-out, transform .3s ease-out, border-color .24s ease-out, background-color .24s ease-out, box-shadow .24s ease-out;
}

body[data-page="landing"].motion-ready .is-visible .frame-steps article,
body[data-page="landing"].motion-ready .is-visible .frame-signal-wall span,
body[data-page="landing"].motion-ready .is-visible .frame-trust-panel article,
body[data-page="landing"].motion-ready .is-visible .frame-decision-output,
body[data-page="landing"].motion-ready .is-visible .frame-compare-row,
body[data-page="landing"].motion-ready .is-visible .frame-score-grid article,
body[data-page="landing"].motion-ready .is-visible .frame-journal-row{
  opacity:1;
  transform:none;
}

.frame-steps article:nth-child(2),
.frame-signal-wall span:nth-child(2),
.frame-trust-panel article:nth-child(2),
.frame-score-grid article:nth-child(2),
.frame-journal-row:nth-of-type(2),
.frame-compare-row:nth-child(3){
  transition-delay:90ms;
}

.frame-steps article:nth-child(3),
.frame-signal-wall span:nth-child(3),
.frame-trust-panel article:nth-child(3),
.frame-score-grid article:nth-child(3),
.frame-compare-row:nth-child(4){
  transition-delay:180ms;
}

.frame-signal-wall span:nth-child(4){
  transition-delay:270ms;
}

.frame-signal-wall span:nth-child(5),
.frame-decision-output{
  transition-delay:340ms;
}

.frame-button,
.site-button.primary,
.frame-steps article,
.frame-signal-wall span,
.frame-trust-panel article,
.frame-preview-window,
.frame-compare-preview,
.frame-final-preview{
  transition:border-color .24s ease-out, background-color .24s ease-out, color .24s ease-out, box-shadow .24s ease-out, transform .24s ease-out;
}

.frame-button:hover,
.site-button.primary:hover{
  transform:translateY(-1px);
  filter:saturate(1.06);
}

.frame-button.primary:hover,
.site-button.primary:hover{
  background:linear-gradient(135deg,#2f74ff,#0d3fae);
  box-shadow:0 18px 38px rgba(18,93,255,.22);
}

.frame-button.secondary:hover{
  border-color:rgba(18,93,255,.28);
  color:#0d3fae;
}

.frame-steps article:hover,
.frame-signal-wall span:hover,
.frame-trust-panel article:hover,
.frame-preview-window:hover,
.frame-compare-preview:hover,
.frame-final-preview:hover{
  border-color:rgba(156,194,255,.42);
}

.frame-doc-lines i{
  background:linear-gradient(90deg,rgba(7,26,68,.22),rgba(18,93,255,.16),rgba(7,26,68,.1));
  background-size:220% 100%;
  animation:frameLoadingShimmer 2.4s ease-out infinite;
}

.frame-score-grid article,
.frame-journal-row,
.frame-compare-card,
.frame-compare-preview,
.frame-trust-panel article,
.frame-decision-output,
.frame-final-preview{
  position:relative;
  overflow:hidden;
}

.frame-score-grid article::after,
.frame-journal-row::after,
.frame-compare-card::after,
.frame-compare-preview::after,
.frame-trust-panel article::after,
.frame-decision-output::after,
.frame-final-preview::after{
  content:"";
  position:absolute;
  inset:-20% auto -20% -55%;
  width:42%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent);
  transform:skewX(-14deg);
  animation:frameHighlightSweep 3.2s ease-out infinite;
}

.frame-journal-row::after{
  animation-delay:.35s;
}

.frame-compare-card::after{
  animation-delay:.7s;
}

.frame-trust-panel article::after,
.frame-decision-output::after{
  animation-delay:1s;
}

body[data-page="landing"] .frame-trust-sequence .frame-trust-panel article::after,
body[data-page="landing"] .frame-trust-sequence .frame-decision-output::after{
  animation:none;
}

body[data-page="landing"].motion-ready .frame-trust-sequence .frame-trust-panel article,
body[data-page="landing"].motion-ready .frame-trust-sequence .frame-decision-output{
  opacity:0;
  transform:translateY(12px);
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-trust-panel article,
body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-decision-output{
  animation:frameTrustStepReveal .44s ease-out both;
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-trust-panel article:nth-child(1){
  animation-delay:0ms;
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-trust-panel article:nth-child(2){
  animation-delay:140ms;
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-trust-panel article:nth-child(3){
  animation-delay:280ms;
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-decision-output{
  animation-delay:420ms;
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-trust-panel article:nth-child(1) .frame-trust-icon{
  animation:frameTrustCheckPulse .42s ease-out 80ms both;
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-trust-panel article:nth-child(2) .frame-trust-icon{
  animation:frameTrustWarningFlicker .48s ease-out 220ms both;
}

body[data-page="landing"].motion-ready .frame-trust-sequence.is-visible .frame-trust-panel article:nth-child(3) .frame-trust-icon{
  animation:frameTrustQuestionIn .36s ease-out 390ms both;
}

/* Trust section depth pass: subtle structure, not a redesign. */
body[data-page="landing"] .frame-trust-sequence .frame-split{
  position:relative;
}

body[data-page="landing"] .frame-trust-copy{
  position:relative;
  z-index:1;
}

body[data-page="landing"] .frame-trust-copy::before{
  content:"";
  position:absolute;
  left:-64px;
  top:-84px;
  width:min(620px,66vw);
  height:500px;
  pointer-events:none;
  opacity:.26;
  background-image:
    linear-gradient(rgba(255,255,255,.42) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.42) 1px,transparent 1px),
    linear-gradient(135deg,transparent 0 48%,rgba(255,255,255,.2) 49% 50%,transparent 51% 100%),
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.42) 0 2px,transparent 3px),
    radial-gradient(circle at 48% 42%,rgba(255,255,255,.36) 0 2px,transparent 3px),
    radial-gradient(circle at 74% 66%,rgba(255,255,255,.34) 0 2px,transparent 3px);
  background-size:34px 34px,34px 34px,96px 96px,120px 110px,150px 132px,180px 160px;
  mask-image:radial-gradient(circle at 32% 45%,#000 0%,rgba(0,0,0,.9) 42%,transparent 78%);
}

body[data-page="landing"] .frame-trust-copy::after{
  content:"";
  position:absolute;
  left:-42px;
  top:-22px;
  width:min(500px,58vw);
  height:360px;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(90deg,transparent 0 22px,rgba(255,255,255,.28) 22px 23px,transparent 23px 100%),
    linear-gradient(0deg,transparent 0 22px,rgba(255,255,255,.22) 22px 23px,transparent 23px 100%),
    radial-gradient(circle at 18% 24%,rgba(255,255,255,.38) 0 3px,transparent 4px),
    radial-gradient(circle at 54% 45%,rgba(255,255,255,.32) 0 3px,transparent 4px),
    radial-gradient(circle at 78% 72%,rgba(255,255,255,.3) 0 3px,transparent 4px);
  background-size:68px 68px,68px 68px,180px 150px,210px 170px,240px 190px;
  mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.82) 54%,transparent 100%);
}

body[data-page="landing"] .frame-trust-support{
  position:relative;
  z-index:1;
  max-width:520px;
  margin:16px 0 0;
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.55;
  font-weight:400;
}

body[data-page="landing"] .frame-trust-hints{
  position:relative;
  z-index:1;
  display:grid;
  gap:9px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
  color:rgba(255,255,255,.7);
  font-size:14px;
  line-height:1.35;
  font-weight:500;
}

body[data-page="landing"] .frame-trust-hints li{
  display:flex;
  align-items:center;
  gap:10px;
}

body[data-page="landing"] .frame-trust-hints li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:#9cc2ff;
  box-shadow:0 0 0 5px rgba(156,194,255,.1);
}

body[data-page="landing"] .frame-trust-sequence .frame-trust-panel{
  gap:20px;
  padding:26px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 24px 70px rgba(2,12,42,.18);
}

body[data-page="landing"] .frame-panel-label{
  margin:0 0 -2px;
  color:rgba(255,255,255,.62);
  font-size:11px;
  line-height:1;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:600;
}

body[data-page="landing"] .frame-trust-sequence .frame-trust-panel article{
  border:1px solid rgba(255,255,255,.62);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.74),0 10px 28px rgba(2,12,42,.08);
}

body[data-page="landing"] .frame-trust-sequence .frame-trust-panel article + article,
body[data-page="landing"] .frame-trust-sequence .frame-decision-output{
  position:relative;
}

body[data-page="landing"] .frame-trust-sequence .frame-trust-panel article + article::before,
body[data-page="landing"] .frame-trust-sequence .frame-decision-output::before{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:-11px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.24),transparent);
}

body[data-page="landing"] .frame-trust-sequence .frame-trust-panel article:hover{
  transform:translateY(-3px);
  border-color:rgba(156,194,255,.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.82),0 18px 42px rgba(18,93,255,.16);
}

body[data-page="landing"] .frame-trust-sequence .frame-decision-output{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8),0 14px 34px rgba(2,12,42,.1);
}

@keyframes frameBrandMomentExit{
  0%{opacity:1; visibility:visible}
  68%{opacity:1; visibility:visible}
  92%{opacity:.18; visibility:visible}
  100%{opacity:0; visibility:hidden}
}

@keyframes frameBrandMarkIn{
  from{opacity:0; transform:translateY(4px) scale(.96)}
  to{opacity:1; transform:translateY(-8px) scale(1)}
}

@keyframes frameDoorOpen{
  from{transform:perspective(320px) rotateY(0deg)}
  to{transform:perspective(320px) rotateY(-24deg)}
}

@keyframes frameLightSpread{
  from{opacity:0; transform:scaleX(.58) translateY(-8px)}
  to{opacity:1; transform:scaleX(1.18) translateY(0)}
}

@keyframes frameHeaderIn{
  from{opacity:0; transform:translateY(-10px)}
  to{opacity:1; transform:none}
}

@keyframes frameHeroContentIn{
  from{opacity:0; transform:translateY(14px)}
  to{opacity:1; transform:none}
}

@keyframes frameLoadingShimmer{
  0%{background-position:120% 0}
  100%{background-position:-120% 0}
}

@keyframes frameHighlightSweep{
  0%,62%{left:-55%; opacity:0}
  72%{opacity:1}
  100%{left:120%; opacity:0}
}

@keyframes frameTrustStepReveal{
  0%{
    opacity:0;
    transform:translateY(12px);
    box-shadow:0 0 0 rgba(18,93,255,0);
  }
  52%{
    opacity:1;
    transform:translateY(0);
    box-shadow:0 0 0 1px rgba(116,164,255,.22),0 18px 40px rgba(18,93,255,.14);
  }
  100%{
    opacity:1;
    transform:translateY(0);
    box-shadow:0 0 0 rgba(18,93,255,0);
  }
}

@keyframes frameTrustCheckPulse{
  0%{transform:scale(.9); opacity:.72}
  48%{transform:scale(1.07); opacity:1}
  100%{transform:scale(1); opacity:1}
}

@keyframes frameTrustWarningFlicker{
  0%{opacity:.5}
  26%{opacity:1}
  42%{opacity:.72}
  68%,100%{opacity:1}
}

@keyframes frameTrustQuestionIn{
  from{opacity:0; transform:translateY(3px)}
  to{opacity:1; transform:translateY(0)}
}

/* Hero refactor: compact product pitch + balanced mockup. */
body[data-page="landing"] .frame-hero{
  min-height:clamp(620px, calc(100vh - 126px), 760px);
  grid-template-columns:minmax(360px,.9fr) minmax(520px,1.1fr);
  gap:clamp(44px,6vw,96px);
  align-items:center;
  padding:clamp(60px,6vw,92px) clamp(32px,7.5vw,128px) clamp(68px,6vw,96px);
}

body[data-page="landing"] .frame-hero-copy{
  max-width:540px;
}

body[data-page="landing"] .frame-hero h1{
  max-width:560px;
  font-size:clamp(46px,4.3vw,56px);
  line-height:1.12;
  letter-spacing:-.034em;
  font-weight:600;
}

body[data-page="landing"] .frame-lead{
  max-width:560px;
  margin-top:20px;
  font-size:clamp(17px,1.25vw,20px);
  line-height:1.55;
}

body[data-page="landing"] .frame-hero-actions{
  margin-top:28px;
}

body[data-page="landing"] .frame-button{
  min-height:52px;
  padding:0 24px;
  border-radius:15px;
  font-size:15px;
  font-weight:600;
}

body[data-page="landing"] .frame-product-preview{
  min-height:470px;
}

body[data-page="landing"] .frame-preview-glow{
  width:min(660px,92%);
  height:360px;
}

body[data-page="landing"] .frame-preview-window{
  width:min(700px,100%);
  border-radius:28px;
}

body[data-page="landing"] .frame-preview-top{
  height:54px;
}

body[data-page="landing"] .frame-preview-body{
  grid-template-columns:.92fr 1.08fr;
  gap:16px;
  padding:20px;
}

body[data-page="landing"] .frame-preview-doc{
  padding:24px;
}

body[data-page="landing"] .frame-preview-panel{
  gap:12px;
  padding:16px;
}

body[data-page="landing"] .frame-score-grid{
  gap:9px;
}

body[data-page="landing"] .frame-score-grid article{
  min-height:78px;
  padding:13px;
}

body[data-page="landing"] .frame-score-grid strong{
  font-size:22px;
}

body[data-page="landing"] .frame-compare-card{
  right:4%;
  bottom:-28px;
  width:248px;
}

@media (max-width:1120px){
  body[data-page="landing"] .frame-hero{
    min-height:auto;
    grid-template-columns:1fr;
    gap:44px;
  }

  body[data-page="landing"] .frame-hero-copy{
    max-width:620px;
  }

  body[data-page="landing"] .frame-product-preview{
    min-height:460px;
  }
}

@media (max-width:760px){
  body[data-page="landing"] .frame-hero{
    padding:52px 20px 72px;
  }

  body[data-page="landing"] .frame-hero h1{
    max-width:360px;
    font-size:42px;
  }

  body[data-page="landing"] .frame-lead{
    max-width:360px;
    font-size:17px;
  }

  body[data-page="landing"] .frame-product-preview{
    min-height:auto;
  }
}

/* First layer refinement: navbar + hero only. */
body[data-page="landing"] .landing-topbar{
  grid-template-columns:minmax(180px,1fr) auto minmax(220px,1fr);
  min-height:76px;
  padding:0 clamp(24px,4vw,56px);
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(7,26,68,.07);
  box-shadow:0 10px 30px rgba(7,26,68,.07);
}

body[data-page="landing"] .site-brand-logo{
  height:48px;
  max-width:190px;
}

body[data-page="landing"] .site-nav{
  justify-self:center;
  gap:30px;
}

body[data-page="landing"] .site-nav a{
  font-size:15px;
  font-weight:600;
}

body[data-page="landing"] .site-topbar-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

body[data-page="landing"] .site-auth-link{
  color:rgba(7,26,68,.74);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease-out;
}

body[data-page="landing"] .site-auth-link:hover{
  color:var(--frame-blue);
}

body[data-page="landing"] .site-topbar-actions .site-button.primary{
  min-height:48px;
  padding:0 24px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
}

body[data-page="landing"] .frame-hero{
  min-height:clamp(610px, calc(100vh - 76px), 760px);
  grid-template-columns:minmax(380px,.92fr) minmax(560px,1.08fr);
  gap:clamp(44px,6vw,88px);
  align-items:center;
  padding:clamp(54px,6vw,86px) clamp(34px,7vw,112px) clamp(64px,6vw,90px);
  background:
    radial-gradient(circle at 82% 26%,rgba(18,93,255,.15),transparent 30%),
    linear-gradient(135deg,#ffffff 0%,#f8fbff 52%,#eef5ff 100%);
}

body[data-page="landing"] .frame-hero::before{
  opacity:.55;
  background-size:64px 64px;
  mask-image:radial-gradient(circle at 76% 43%,#000 0%,transparent 52%);
}

body[data-page="landing"] .frame-hero::after{
  right:-220px;
  top:90px;
  width:480px;
  height:480px;
  background:radial-gradient(circle,rgba(18,93,255,.12),transparent 66%);
}

body[data-page="landing"] .frame-hero-copy{
  max-width:560px;
}

body[data-page="landing"] .frame-eyebrow{
  min-height:32px;
  margin-bottom:18px;
  padding:0 13px;
  background:rgba(255,255,255,.72);
  font-size:11px;
  font-weight:500;
  letter-spacing:.1em;
}

body[data-page="landing"] .frame-hero h1{
  max-width:560px;
  font-size:clamp(46px,4.15vw,56px);
  line-height:1.12;
  letter-spacing:-.034em;
  font-weight:600;
}

body[data-page="landing"] .frame-lead{
  max-width:600px;
  margin-top:20px;
  color:#50617c;
  font-size:clamp(17px,1.24vw,20px);
  line-height:1.54;
  font-weight:400;
}

body[data-page="landing"] .frame-hero-actions{
  margin-top:28px;
  gap:12px;
}

body[data-page="landing"] .frame-button{
  min-height:50px;
  padding:0 22px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
}

body[data-page="landing"] .frame-product-preview{
  min-height:486px;
  width:100%;
  place-items:center;
}

body[data-page="landing"] .frame-preview-glow{
  width:min(720px,94%);
  height:360px;
  background:radial-gradient(circle,rgba(18,93,255,.15),rgba(18,93,255,.05) 48%,transparent 72%);
}

body[data-page="landing"] .frame-preview-window{
  width:min(740px,100%);
  border-radius:26px;
  background:rgba(255,255,255,.88);
  border-color:rgba(7,26,68,.09);
  box-shadow:0 24px 70px rgba(7,26,68,.14);
}

body[data-page="landing"] .frame-preview-top{
  height:52px;
  padding:0 20px;
}

body[data-page="landing"] .frame-preview-body{
  grid-template-columns:.92fr 1.08fr;
  gap:16px;
  padding:22px;
}

body[data-page="landing"] .frame-preview-doc,
body[data-page="landing"] .frame-preview-panel{
  border-radius:22px;
}

body[data-page="landing"] .frame-preview-doc{
  padding:24px;
}

body[data-page="landing"] .frame-preview-panel{
  gap:11px;
  padding:16px;
}

body[data-page="landing"] .frame-preview-doc h3{
  max-width:280px;
  margin:12px 0 22px;
  font-size:22px;
}

body[data-page="landing"] .frame-doc-lines{
  gap:9px;
  margin-bottom:22px;
}

body[data-page="landing"] .frame-doc-lines i{
  height:9px;
}

body[data-page="landing"] .frame-signal-chips span{
  min-height:28px;
  padding:0 10px;
  font-size:12px;
}

body[data-page="landing"] .frame-score-grid{
  gap:9px;
}

body[data-page="landing"] .frame-score-grid article{
  min-height:76px;
  padding:12px;
  border-radius:17px;
}

body[data-page="landing"] .frame-score-grid span{
  font-size:11px;
}

body[data-page="landing"] .frame-score-grid strong{
  margin-top:7px;
  font-size:22px;
}

body[data-page="landing"] .frame-journal-row{
  padding:14px 15px;
  border-radius:17px;
}

body[data-page="landing"] .frame-journal-row b{
  font-size:14px;
  line-height:1.25;
}

body[data-page="landing"] .frame-journal-row span{
  margin-top:6px;
  font-size:13px;
}

body[data-page="landing"] .frame-compare-card{
  right:4%;
  bottom:-20px;
  width:248px;
  padding:20px;
  border-radius:22px;
  box-shadow:0 20px 54px rgba(7,26,68,.14);
}

body[data-page="landing"] .frame-compare-card strong{
  margin-top:9px;
  font-size:21px;
}

body[data-page="landing"] .frame-hero-down{
  position:absolute;
  left:50%;
  bottom:18px;
  z-index:5;
  display:grid;
  width:44px;
  height:44px;
  place-items:center;
  color:#174eb9;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(26,91,218,.18);
  border-radius:999px;
  box-shadow:0 14px 34px rgba(7,26,68,.12);
  transform:translateX(-50%);
  transition:background .24s ease-out,border-color .24s ease-out,color .24s ease-out,transform .24s ease-out;
}

body[data-page="landing"] .frame-hero-down:hover{
  color:#0b3fbd;
  background:#fff;
  border-color:rgba(26,91,218,.34);
  transform:translateX(-50%) translateY(-2px);
}

body[data-page="landing"] .frame-hero-down svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="landing"] .frame-feature-strip{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
  width:min(1180px,calc(100% - 52px));
  max-height:0;
  margin:-36px auto 0;
  padding:0 14px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(26,91,218,.14);
  border-radius:26px;
  box-shadow:0 26px 70px rgba(7,26,68,.1);
  transform:translateY(12px);
  transition:max-height .42s ease-out,margin .42s ease-out,padding .42s ease-out,opacity .32s ease-out,transform .32s ease-out;
}

body[data-page="landing"] .frame-feature-strip.is-revealed{
  max-height:180px;
  margin:-36px auto 72px;
  padding:14px;
  opacity:1;
  pointer-events:auto;
  transform:none;
}

body[data-page="landing"] .frame-feature-card{
  display:grid;
  grid-template-columns:38px 1fr;
  column-gap:12px;
  row-gap:3px;
  min-height:96px;
  align-items:center;
  padding:16px;
  color:#071a44;
  text-decoration:none;
  background:linear-gradient(135deg,#fff 0%,#f8fbff 100%);
  border:1px solid rgba(26,91,218,.12);
  border-radius:20px;
  transition:border-color .22s ease-out,background .22s ease-out,transform .22s ease-out;
}

body[data-page="landing"] .frame-feature-card:hover{
  background:#fff;
  border-color:rgba(26,91,218,.38);
  transform:translateY(-2px);
}

body[data-page="landing"] .frame-feature-icon{
  grid-row:1 / span 2;
  display:grid;
  width:38px;
  height:38px;
  place-items:center;
  color:#1653d8;
  background:#eef5ff;
  border:1px solid rgba(26,91,218,.12);
  border-radius:14px;
}

body[data-page="landing"] .frame-feature-icon svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="landing"] .frame-feature-card strong{
  align-self:end;
  font-size:15px;
  line-height:1.15;
  font-weight:600;
}

body[data-page="landing"] .frame-feature-card p{
  align-self:start;
  margin:0;
  color:#60708a;
  font-size:12.5px;
  line-height:1.35;
  font-weight:400;
}

body[data-page="landing"].motion-ready .frame-feature-strip .frame-feature-card{
  opacity:0;
  transform:translateY(12px);
}

body[data-page="landing"].motion-ready .frame-feature-strip.is-revealed .frame-feature-card{
  animation:frameFeatureCardReveal .34s ease-out calc(var(--feature-index,0) * 95ms) both;
}

@keyframes frameFeatureCardReveal{
  from{
    opacity:0;
    transform:translateY(12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

body[data-page="landing"] .frame-section-kicker{
  max-width:560px;
  margin:18px 0 0;
  color:#4f5f76;
  font-size:18px;
  line-height:1.55;
  font-weight:400;
}

body[data-page="landing"] .frame-signal-wall{
  gap:12px;
}

body[data-page="landing"] .frame-signal-wall span{
  display:grid;
  grid-template-columns:30px 1fr;
  column-gap:10px;
  row-gap:3px;
  min-height:94px;
  align-items:center;
  justify-content:start;
  padding:16px 15px;
  text-align:left;
}

body[data-page="landing"] .frame-signal-wall span i{
  grid-row:1 / span 2;
  align-self:center;
}

body[data-page="landing"] .frame-signal-wall span b{
  color:var(--frame-ink);
  font-size:15px;
  line-height:1.15;
  font-weight:600;
}

body[data-page="landing"] .frame-signal-wall span small{
  color:#65728a;
  font-size:12px;
  line-height:1.3;
  font-weight:400;
}

body[data-page="landing"] .frame-compare-preview{
  padding:22px;
}

body[data-page="landing"] .frame-compare-head{
  margin-bottom:18px;
}

body[data-page="landing"] .frame-compare-head span{
  min-height:32px;
  padding:0 12px;
}

body[data-page="landing"] .frame-compare-row{
  grid-template-columns:minmax(160px,1fr) auto auto auto;
  gap:12px;
  padding:16px 0;
}

body[data-page="landing"] .frame-compare-row b{
  font-size:15px;
  font-weight:600;
}

body[data-page="landing"] .frame-compare-row b small{
  display:block;
  margin-top:5px;
  color:#65728a;
  font-size:12px;
  line-height:1.25;
  font-weight:400;
}

body[data-page="landing"] .frame-compare-row i,
body[data-page="landing"] .frame-compare-row em{
  min-height:30px;
  min-width:96px;
  justify-content:center;
  font-size:12px;
  font-style:normal;
}

body[data-page="landing"] .frame-compare-row i{
  background:#edf4ff;
  color:#174eb9;
}

body[data-page="landing"] .frame-compare-row .frame-risk-pill{
  background:#fff6ed;
  color:#8f4b19;
}

@media (max-width:1120px){
  body[data-page="landing"] .landing-topbar{
    grid-template-columns:1fr auto;
  }

  body[data-page="landing"] .site-nav{
    display:none;
  }

  body[data-page="landing"] .frame-hero{
    min-height:auto;
    grid-template-columns:1fr;
    gap:42px;
  }

  body[data-page="landing"] .frame-hero-copy{
    max-width:640px;
  }

  body[data-page="landing"] .frame-product-preview{
    min-height:480px;
  }

  body[data-page="landing"] .frame-feature-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
    width:min(760px,calc(100% - 40px));
  }

  body[data-page="landing"] .frame-feature-strip.is-revealed{
    max-height:420px;
  }
}

@media (max-width:760px){
  body[data-page="landing"] .landing-topbar{
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="landing"] .site-brand-logo{
    height:42px;
    max-width:164px;
  }

  body[data-page="landing"] .site-auth-link{
    display:none;
  }

  body[data-page="landing"] .frame-hero{
    padding:46px 20px 74px;
  }

  body[data-page="landing"] .frame-hero-down{
    bottom:14px;
  }

  body[data-page="landing"] .frame-hero h1{
    max-width:360px;
    font-size:42px;
  }

  body[data-page="landing"] .frame-lead{
    max-width:370px;
    font-size:17px;
  }

  body[data-page="landing"] .frame-signal-wall span{
    min-height:auto;
  }

  body[data-page="landing"] .frame-compare-row{
    grid-template-columns:1fr;
    align-items:start;
  }

  body[data-page="landing"] .frame-compare-row i,
  body[data-page="landing"] .frame-compare-row em{
    width:max-content;
  }

  body[data-page="landing"] .frame-feature-strip{
    grid-template-columns:1fr;
    width:calc(100% - 32px);
  }

  body[data-page="landing"] .frame-feature-strip.is-revealed{
    max-height:720px;
    margin:-28px auto 54px;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="landing"] *,
  body[data-page="landing"] *::before,
  body[data-page="landing"] *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  .frame-brand-moment{
    display:none !important;
  }

  body[data-page="landing"] .frame-home [data-reveal],
  body[data-page="landing"].motion-ready .frame-home [data-reveal],
  body[data-page="landing"].motion-ready .frame-steps article,
  body[data-page="landing"].motion-ready .frame-signal-wall span,
  body[data-page="landing"].motion-ready .frame-trust-panel article,
  body[data-page="landing"].motion-ready .frame-decision-output,
  body[data-page="landing"].motion-ready .frame-compare-row,
  body[data-page="landing"].motion-ready .frame-score-grid article,
  body[data-page="landing"].motion-ready .frame-journal-row{
    opacity:1 !important;
    transform:none !important;
  }

  body[data-page="landing"] .frame-feature-strip,
  body[data-page="landing"] .frame-feature-strip .frame-feature-card{
    transition:none !important;
    animation:none !important;
  }

  body[data-page="landing"].motion-ready .frame-feature-strip .frame-feature-card{
    opacity:1 !important;
    transform:none !important;
  }
}

/* Frame auth simplification: calm, blue, low-friction account entry. */
body[data-page="auth"]{
  --auth-blue:#125dff;
  --auth-blue-deep:#0045cc;
  --auth-ink:#071a44;
  --auth-muted:#66738a;
  --auth-line:rgba(7,26,68,.12);
  --auth-surface:#ffffff;
  min-height:100vh;
  background:
    radial-gradient(circle at 82% 20%, rgba(18,93,255,.11), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(130,170,255,.16), transparent 24%),
    linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
  color:var(--auth-ink);
}

body[data-page="auth"] .auth-topbar{
  min-height:76px;
  padding:0 clamp(22px,4vw,68px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(7,26,68,.08);
  backdrop-filter:blur(18px);
}

body[data-page="auth"] .auth-logo{
  display:inline-flex;
  align-items:center;
  width:154px;
  height:52px;
  color:var(--auth-ink);
}

body[data-page="auth"] .auth-logo img{
  display:block;
  width:100%;
  height:auto;
}

body[data-page="auth"] .auth-topbar-button{
  min-height:42px;
  padding:0 18px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--auth-blue),var(--auth-blue-deep));
  color:#fff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 12px 28px rgba(18,93,255,.22);
}

body[data-page="auth"] .auth-page-shell{
  min-height:calc(100vh - 76px);
  grid-template-columns:minmax(320px,.78fr) minmax(420px,1fr);
  gap:clamp(48px,7vw,120px);
  max-width:1280px;
  padding:clamp(52px,7vh,88px) clamp(26px,5vw,72px) 86px;
  align-items:center;
}

body[data-page="auth"] .auth-trial-panel,
body[data-page="auth"] .auth-form-panel{
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
}

body[data-page="auth"] .auth-trial-panel{
  padding:0;
  max-width:430px;
}

body[data-page="auth"] .auth-eyebrow{
  margin:0 0 20px;
  color:var(--auth-blue-deep);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body[data-page="auth"] .auth-trial-panel h1{
  max-width:420px;
  margin:0;
  color:var(--auth-ink);
  font-family:var(--site-font-ui);
  font-size:clamp(38px,4vw,52px);
  font-weight:700;
  letter-spacing:-.045em;
  line-height:1.04;
}

body[data-page="auth"] .auth-side-copy{
  margin:28px 0 0;
  color:var(--auth-ink);
  font-size:22px;
  font-weight:650;
  letter-spacing:-.025em;
  line-height:1.25;
}

body[data-page="auth"] .auth-side-note{
  max-width:390px;
  margin:20px 0 0;
  color:var(--auth-muted);
  font-size:16px;
  font-weight:400;
  line-height:1.58;
}

body[data-page="auth"] .auth-value-list{
  list-style:none;
  display:grid;
  gap:14px;
  margin:34px 0 0;
  padding:0;
}

body[data-page="auth"] .auth-value-list li{
  position:relative;
  padding-left:30px;
  color:#243653;
  font-size:16px;
  line-height:1.35;
  font-weight:500;
}

body[data-page="auth"] .auth-value-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.2em;
  width:18px;
  height:18px;
  border-radius:999px;
  background:
    linear-gradient(135deg,rgba(18,93,255,.92),rgba(0,69,204,.92));
  box-shadow:0 0 0 5px rgba(18,93,255,.08);
}

body[data-page="auth"] .auth-form-panel{
  min-height:auto;
  padding:0;
}

body[data-page="auth"] .auth-stepper{
  max-width:620px;
  margin:0 auto 54px;
  gap:18px;
}

body[data-page="auth"] .auth-stepper li{
  gap:9px;
  color:#9aa4b4;
  font-size:14px;
  font-weight:500;
}

body[data-page="auth"] .auth-stepper span{
  width:30px;
  height:30px;
  background:#e8eef7;
  color:#7f8ba0;
  font-size:13px;
}

body[data-page="auth"] .auth-stepper li.active{
  color:var(--auth-ink);
  font-weight:650;
}

body[data-page="auth"] .auth-stepper li.active span{
  background:var(--auth-blue);
  color:#fff;
}

body[data-page="auth"] .auth-form-wrap{
  max-width:520px;
  margin:0 auto;
  padding:34px;
  border:1px solid rgba(7,26,68,.09);
  border-radius:28px;
  background:rgba(255,255,255,.72);
  box-shadow:0 30px 80px rgba(7,26,68,.08);
  backdrop-filter:blur(18px);
}

body[data-page="auth"] .auth-form-wrap h2{
  margin:0 0 28px;
  color:var(--auth-ink);
  font-family:var(--site-font-ui);
  font-size:32px;
  font-weight:700;
  line-height:1.12;
  letter-spacing:-.035em;
  text-align:left;
}

body[data-page="auth"] .auth-form{
  gap:16px;
}

body[data-page="auth"] .auth-form input{
  min-height:56px;
  padding:0 17px;
  border:1px solid var(--auth-line);
  border-radius:14px;
  background:rgba(255,255,255,.92);
  color:var(--auth-ink);
  font-size:16px;
  box-shadow:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

body[data-page="auth"] .auth-form input:focus{
  outline:none;
  border-color:rgba(18,93,255,.48);
  box-shadow:0 0 0 4px rgba(18,93,255,.10);
  background:#fff;
}

body[data-page="auth"] .auth-password-field span{
  right:18px;
  color:#8b98aa;
  font-size:18px;
}

body[data-page="auth"] .auth-main-submit{
  min-height:56px;
  margin-top:4px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--auth-blue),var(--auth-blue-deep));
  color:#fff;
  font-size:16px;
  font-weight:700;
  box-shadow:0 16px 34px rgba(18,93,255,.22);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

body[data-page="auth"] .auth-main-submit:hover{
  transform:translateY(-1px);
  filter:saturate(1.06);
  box-shadow:0 18px 38px rgba(18,93,255,.28);
}

body[data-page="auth"] .auth-switch-line{
  margin:0;
  color:var(--auth-muted);
  font-size:14px;
}

body[data-page="auth"] .auth-switch-line button{
  color:var(--auth-blue-deep);
  font-weight:650;
}

body[data-page="auth"] .auth-divider{
  gap:16px;
  margin:28px 0 22px;
  color:#9aa4b4;
}

body[data-page="auth"] .auth-divider span{
  background:rgba(7,26,68,.10);
}

body[data-page="auth"] .auth-divider em{
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
}

body[data-page="auth"] .auth-google-button{
  min-height:54px;
  gap:13px;
  border:1px solid rgba(7,26,68,.11);
  border-radius:14px;
  background:rgba(255,255,255,.72);
  color:#445168;
  font-size:15px;
  font-weight:600;
  transition:border-color .18s ease, background .18s ease;
}

body[data-page="auth"] .auth-google-button:hover{
  border-color:rgba(18,93,255,.24);
  background:#fff;
}

body[data-page="auth"] .auth-google-button strong{
  font-size:20px;
}

body[data-page="auth"] .auth-banner{
  margin:0 0 18px;
  border-radius:14px;
  font-size:14px;
}

body[data-page="auth"] .auth-bottom-footer{
  min-height:42px;
  padding:0 clamp(22px,4vw,68px);
  border-top:1px solid rgba(7,26,68,.08);
  background:rgba(255,255,255,.55);
  color:#8c98aa;
  font-size:13px;
}

body[data-page="auth"] .auth-bottom-footer nav{
  gap:14px;
}

body[data-page="auth"] .auth-bottom-footer a{
  color:#8c98aa;
}

body[data-page="auth"] .auth-bottom-footer a + a::before{
  color:#c5cfdd;
  margin-right:14px;
}

@media (max-width: 980px){
  body[data-page="auth"] .auth-page-shell{
    grid-template-columns:1fr;
    gap:42px;
    align-items:start;
  }

  body[data-page="auth"] .auth-trial-panel{
    max-width:620px;
  }

  body[data-page="auth"] .auth-stepper{
    margin-bottom:30px;
  }
}

@media (max-width: 680px){
  body[data-page="auth"] .auth-topbar{
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="auth"] .auth-logo{
    width:132px;
  }

  body[data-page="auth"] .auth-page-shell{
    padding:34px 18px 24px;
  }

  body[data-page="auth"] .auth-form-wrap{
    padding:24px 18px;
    border-radius:22px;
  }

  body[data-page="auth"] .auth-stepper{
    justify-content:flex-start;
    flex-wrap:wrap;
  }

  body[data-page="auth"] .auth-stepper li{
    font-size:13px;
  }

  body[data-page="auth"] .auth-bottom-footer{
    align-items:flex-start;
    flex-direction:column;
    padding:16px 18px;
  }
}

/* Frame onboarding setup: compact, step-based, blue product flow. */
body[data-page="onboarding"]{
  --frame-ink:#071a44;
  --frame-text:#1f335f;
  --frame-muted:#6f7d96;
  --frame-blue:#1558e8;
  --frame-blue-2:#2f7bff;
  --frame-blue-soft:#eef5ff;
  --frame-border:#d8e3f7;
  --frame-card:#ffffff;
  min-height:100vh;
  margin:0;
  background:
    radial-gradient(circle at 92% 18%, rgba(34,121,255,.13), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(96,165,250,.10), transparent 32%),
    linear-gradient(135deg,#f8fbff 0%,#eef5ff 48%,#ffffff 100%);
  color:var(--frame-text);
  font-family:var(--site-font-ui);
}

body[data-page="onboarding"] .auth-topbar{
  min-height:76px;
  padding:0 clamp(24px,4vw,72px);
  border-bottom:1px solid rgba(7,26,68,.08);
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
}

body[data-page="onboarding"] .auth-logo{
  width:154px;
  display:inline-flex;
  align-items:center;
}

body[data-page="onboarding"] .auth-logo img{
  width:100%;
  height:auto;
  display:block;
}

body[data-page="onboarding"] .plan-bell{
  width:12px;
  height:12px;
  border:0;
  background:var(--frame-blue);
  color:transparent;
  box-shadow:0 0 0 8px rgba(21,88,232,.08);
}

body[data-page="onboarding"] .plan-avatar{
  width:40px;
  height:40px;
  background:#eaf2ff;
  color:var(--frame-blue);
  box-shadow:inset 0 0 0 1px rgba(21,88,232,.18);
  font-weight:700;
}

body[data-page="onboarding"] .onboarding-shell{
  min-height:calc(100vh - 76px);
  max-width:1440px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(520px, 1.02fr) minmax(420px, .88fr);
  gap:clamp(36px,5vw,76px);
  padding:clamp(28px,4vw,52px) clamp(28px,6vw,90px);
  background:transparent;
  align-items:center;
}

body[data-page="onboarding"] .onboarding-form-panel{
  min-width:0;
  padding:0;
  background:transparent;
}

body[data-page="onboarding"] .onboarding-copy{
  max-width:640px;
}

body[data-page="onboarding"] .onboarding-kicker{
  margin:0 0 12px;
  color:var(--frame-blue);
  font-size:12px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}

body[data-page="onboarding"] .onboarding-copy h1{
  margin:0;
  max-width:620px;
  color:var(--frame-ink);
  font-size:clamp(34px,4vw,46px);
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-copy p{
  max-width:560px;
  margin:12px 0 0;
  color:var(--frame-muted);
  font-size:18px;
  line-height:1.55;
  font-weight:400;
}

body[data-page="onboarding"] .onboarding-progress{
  max-width:690px;
  margin:22px 0 14px;
  display:grid;
  gap:14px;
}

body[data-page="onboarding"] .onboarding-progress > div:first-child{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

body[data-page="onboarding"] .onboarding-progress span{
  color:#7f8ba3;
  font-size:13px;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-progress strong{
  color:var(--frame-ink);
  font-size:14px;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-progress-track{
  height:6px;
  border-radius:999px;
  overflow:hidden;
  background:#dfe8f8;
}

body[data-page="onboarding"] .onboarding-progress-track i{
  display:block;
  width:33.333%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--frame-blue),var(--frame-blue-2));
  transition:width .24s ease-out;
}

body[data-page="onboarding"] .onboarding-form{
  max-width:690px;
  margin-top:0;
  display:block;
}

body[data-page="onboarding"] .onboarding-step{
  display:none;
  gap:18px;
  animation:onboardingStepIn .24s ease-out both;
}

body[data-page="onboarding"] .onboarding-step.active{
  display:grid;
  gap:14px;
}

body[data-page="onboarding"] .onboarding-step[hidden]{
  display:none;
}

body[data-page="onboarding"] .onboarding-question{
  padding:18px;
  border:1px solid rgba(216,227,247,.92);
  border-radius:24px;
  background:rgba(255,255,255,.88);
  box-shadow:0 18px 44px rgba(7,26,68,.07);
  backdrop-filter:blur(14px);
}

body[data-page="onboarding"] .onboarding-question > div:first-child{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}

body[data-page="onboarding"] .onboarding-question span{
  order:2;
  flex:0 0 auto;
  padding:7px 10px;
  border-radius:999px;
  background:#f4f7fc;
  color:#7d88a0;
  font-size:11px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
}

body[data-page="onboarding"] .onboarding-question h2{
  margin:0;
  color:var(--frame-ink);
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.025em;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-choice-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

body[data-page="onboarding"] .onboarding-choice-grid button{
  min-height:40px;
  padding:0 16px;
  border:1px solid #dbe4f3;
  border-radius:999px;
  background:#fff;
  color:#31405f;
  box-shadow:none;
  font:inherit;
  font-size:14px;
  line-height:1;
  font-weight:500;
  cursor:pointer;
  transition:background .18s ease-out, border-color .18s ease-out, color .18s ease-out, transform .18s ease-out, box-shadow .18s ease-out;
}

body[data-page="onboarding"] .onboarding-choice-grid.wide button{
  min-width:auto;
}

body[data-page="onboarding"] .onboarding-choice-grid button:hover{
  transform:translateY(-1px);
  border-color:#7aa7ff;
  box-shadow:0 8px 20px rgba(21,88,232,.09);
}

body[data-page="onboarding"] .onboarding-choice-grid button.selected{
  border-color:var(--frame-blue);
  background:var(--frame-blue-soft);
  color:var(--frame-blue);
  box-shadow:0 0 0 4px rgba(21,88,232,.08);
  transform:scale(1.015);
}

body[data-page="onboarding"] .onboarding-actions{
  position:relative;
  bottom:auto;
  z-index:4;
  margin-top:14px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(216,227,247,.9);
  border-radius:22px;
  background:rgba(255,255,255,.84);
  box-shadow:0 16px 42px rgba(7,26,68,.08);
  backdrop-filter:blur(18px);
}

body[data-page="onboarding"] .onboarding-action{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid transparent;
  padding:0 18px;
  font:inherit;
  font-size:14px;
  line-height:1;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  transition:background .18s ease-out, border-color .18s ease-out, color .18s ease-out, box-shadow .18s ease-out, transform .18s ease-out;
}

body[data-page="onboarding"] .onboarding-action.primary{
  margin-left:auto;
  background:var(--frame-blue);
  color:#fff;
  box-shadow:0 10px 24px rgba(21,88,232,.22);
}

body[data-page="onboarding"] .onboarding-action.primary:hover:not(:disabled){
  transform:translateY(-1px);
  background:#0f4ac7;
  box-shadow:0 14px 30px rgba(21,88,232,.28);
}

body[data-page="onboarding"] .onboarding-action.primary:disabled{
  cursor:not-allowed;
  background:#c9d8f3;
  color:#f7faff;
  box-shadow:none;
}

body[data-page="onboarding"] .onboarding-action.secondary{
  border-color:#dbe4f3;
  background:#fff;
  color:#53627d;
}

body[data-page="onboarding"] .onboarding-action.secondary:disabled{
  opacity:.45;
  cursor:not-allowed;
}

body[data-page="onboarding"] .onboarding-action.text{
  color:#697792;
  background:transparent;
}

body[data-page="onboarding"] .onboarding-action.text:hover{
  color:var(--frame-blue);
  background:#f2f6ff;
}

body[data-page="onboarding"] .onboarding-action[hidden]{
  display:none;
}

body[data-page="onboarding"] .onboarding-finish{
  align-self:auto;
  min-width:0;
  min-height:44px;
  margin-top:0;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-assistant-panel{
  position:relative;
  min-height:auto;
  padding:0;
  display:grid;
  place-items:center;
  background:transparent;
  border-left:0;
}

body[data-page="onboarding"] .onboarding-preview-card{
  position:relative;
  width:min(100%, 520px);
  overflow:hidden;
  padding:24px;
  border:1px solid rgba(178,203,246,.72);
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,251,255,.92));
  box-shadow:0 30px 80px rgba(7,26,68,.12);
  animation:onboardingPreviewIn .32s ease-out both;
}

body[data-page="onboarding"] .onboarding-preview-card::before{
  content:"";
  position:absolute;
  inset:-80px auto auto -90px;
  width:210px;
  height:210px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(47,123,255,.16),transparent 66%);
}

body[data-page="onboarding"] .onboarding-preview-orbit{
  position:absolute;
  right:-42px;
  top:-42px;
  width:150px;
  height:150px;
  border-radius:999px;
  border:1px solid rgba(21,88,232,.12);
  background:radial-gradient(circle at 36% 38%,rgba(21,88,232,.18),transparent 12%), rgba(238,245,255,.65);
}

body[data-page="onboarding"] .onboarding-preview-header,
body[data-page="onboarding"] .onboarding-preview-rows,
body[data-page="onboarding"] .onboarding-output-card{
  position:relative;
  z-index:1;
}

body[data-page="onboarding"] .onboarding-preview-header{
  padding:4px 4px 18px;
}

body[data-page="onboarding"] .onboarding-preview-header span,
body[data-page="onboarding"] .onboarding-output-card span{
  display:inline-flex;
  margin-bottom:10px;
  color:var(--frame-blue);
  font-size:12px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}

body[data-page="onboarding"] .onboarding-preview-header strong{
  display:block;
  max-width:340px;
  color:var(--frame-ink);
  font-size:28px;
  line-height:1.12;
  letter-spacing:-.035em;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-preview-header p{
  margin:10px 0 0;
  color:var(--frame-muted);
  font-size:15px;
  line-height:1.5;
}

body[data-page="onboarding"] .onboarding-preview-rows{
  display:grid;
  gap:10px;
  margin-top:10px;
}

body[data-page="onboarding"] .onboarding-preview-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 15px;
  border:1px solid #e3ebf8;
  border-radius:16px;
  background:#fff;
  transition:border-color .2s ease-out, background .2s ease-out, box-shadow .2s ease-out;
}

body[data-page="onboarding"] .onboarding-preview-row.is-updating{
  border-color:#94b9ff;
  background:#f4f8ff;
  box-shadow:0 0 0 4px rgba(21,88,232,.08);
}

body[data-page="onboarding"] .onboarding-preview-row span{
  color:#7a879d;
  font-size:13px;
  font-weight:500;
}

body[data-page="onboarding"] .onboarding-preview-row strong{
  color:#19305e;
  text-align:right;
  font-size:14px;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-preview-row strong.placeholder{
  min-width:96px;
  color:transparent;
  border-radius:999px;
  background:linear-gradient(90deg,#ecf2fb 0%,#f8fbff 50%,#ecf2fb 100%);
  background-size:220% 100%;
  animation:onboardingSkeleton 1.8s ease-in-out infinite;
}

body[data-page="onboarding"] .onboarding-output-card{
  margin-top:16px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(135deg,#071a44,#1558e8);
  color:#fff;
  box-shadow:0 20px 44px rgba(21,88,232,.18);
}

body[data-page="onboarding"] .onboarding-output-card span{
  color:#9fc1ff;
}

body[data-page="onboarding"] .onboarding-output-card strong{
  display:block;
  font-size:22px;
  line-height:1.16;
  letter-spacing:-.025em;
  font-weight:600;
}

body[data-page="onboarding"] .onboarding-output-card p{
  max-width:360px;
  margin:10px 0 0;
  color:#dbe8ff;
  font-size:14px;
  line-height:1.55;
}

body[data-page="onboarding"] .onboarding-bot,
body[data-page="onboarding"] .onboarding-speech,
body[data-page="onboarding"] .onboarding-skip{
  display:none;
}

@keyframes onboardingPreviewIn{
  from{
    opacity:0;
    transform:translateY(14px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes onboardingStepIn{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes onboardingSkeleton{
  0%{
    background-position:160% 0;
  }
  100%{
    background-position:-60% 0;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="onboarding"] *,
  body[data-page="onboarding"] *::before,
  body[data-page="onboarding"] *::after{
    animation:none !important;
    transition:none !important;
  }
}

@media (max-width: 980px){
  body[data-page="onboarding"] .onboarding-shell{
    grid-template-columns:1fr;
    align-items:start;
  }

  body[data-page="onboarding"] .onboarding-assistant-panel{
    order:-1;
  }

  body[data-page="onboarding"] .onboarding-preview-card{
    width:100%;
  }
}

@media (max-width: 680px){
  body[data-page="onboarding"] .auth-topbar{
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="onboarding"] .auth-logo{
    width:132px;
  }

  body[data-page="onboarding"] .onboarding-shell{
    padding:30px 18px 42px;
    gap:24px;
  }

  body[data-page="onboarding"] .onboarding-copy h1{
    font-size:34px;
  }

  body[data-page="onboarding"] .onboarding-copy p{
    font-size:16px;
  }

  body[data-page="onboarding"] .onboarding-question{
    padding:18px;
    border-radius:20px;
  }

  body[data-page="onboarding"] .onboarding-question > div:first-child{
    display:grid;
    gap:12px;
  }

  body[data-page="onboarding"] .onboarding-question span{
    order:0;
    justify-self:start;
  }

  body[data-page="onboarding"] .onboarding-choice-grid button,
  body[data-page="onboarding"] .onboarding-choice-grid.wide button{
    width:100%;
  }

  body[data-page="onboarding"] .onboarding-actions{
    flex-wrap:wrap;
    bottom:10px;
  }

  body[data-page="onboarding"] .onboarding-action.primary{
    width:100%;
    margin-left:0;
  }

body[data-page="onboarding"] .onboarding-action.text{
    margin-left:auto;
  }
}

/* Frame product/about page: polished product narrative, no legacy color surfaces. */
body[data-page="product"]{
  --frame-blue:#1457ff;
  --frame-blue-strong:#0b3fbd;
  --frame-blue-soft:#edf4ff;
  --frame-ink:#071a44;
  --frame-muted:#59677d;
  --frame-line:#dce6f8;
  min-height:100vh;
  background:radial-gradient(circle at 82% 8%, rgba(20,87,255,.11), transparent 32%), radial-gradient(circle at 12% 36%, rgba(70,132,255,.08), transparent 28%), linear-gradient(180deg,#f8fbff 0%,#f5f8fd 48%,#eef3fb 100%);
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
}

body[data-page="product"] .product-shell{
  max-width:none;
  padding:0;
}

body[data-page="product"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:minmax(180px,1fr) auto minmax(220px,1fr);
  min-height:76px;
  margin:0;
  padding:0 clamp(24px,4vw,56px);
  border:0;
  border-bottom:1px solid rgba(7,26,68,.07);
  border-radius:0;
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px rgba(7,26,68,.07);
  backdrop-filter:blur(18px);
}

body[data-page="product"] .site-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

body[data-page="product"] .site-brand-logo{
  width:auto;
  height:48px;
  max-width:190px;
  object-fit:contain;
}

body[data-page="product"] .site-brand-text{
  display:none;
}

body[data-page="product"] .site-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:30px;
}

body[data-page="product"] .site-nav a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:rgba(7,26,68,.7);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease-out;
}

body[data-page="product"] .site-nav a:hover,
body[data-page="product"] .site-auth-link:hover{
  color:var(--frame-blue);
}

body[data-page="product"] .site-nav-caret{
  color:rgba(7,26,68,.46);
  font-size:16px;
}

body[data-page="product"] .site-topbar-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

body[data-page="product"] .site-auth-link{
  color:rgba(7,26,68,.74);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="product"] .site-button.primary{
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  font-size:15px;
  font-weight:600;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
}

body[data-page="product"] .product-page{
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
  padding:72px 0 0;
}

body[data-page="product"] .product-hero{
  display:grid;
  grid-template-columns:minmax(0,.94fr) minmax(420px,1.06fr);
  gap:clamp(42px,6vw,86px);
  align-items:center;
  min-height:560px;
  padding:clamp(42px,6vw,72px);
  border:1px solid rgba(162,181,220,.36);
  border-radius:34px;
  background:radial-gradient(circle at 84% 12%, rgba(20,87,255,.12), transparent 32%), linear-gradient(135deg,#fff 0%,#fbfdff 50%,#eef5ff 100%);
  box-shadow:0 28px 80px rgba(19,42,82,.12);
}

body[data-page="product"] .product-hero-copy{
  max-width:760px;
}

body[data-page="product"] .product-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:32px;
  margin:0 0 18px;
  padding:0 13px;
  border:1px solid #cfe0ff;
  border-radius:999px;
  background:#eef5ff;
  color:var(--frame-blue-strong);
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}

body[data-page="product"] .product-hero h1{
  max-width:760px;
  margin:0;
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  font-size:clamp(44px,4.2vw,56px);
  line-height:1.12;
  letter-spacing:-.035em;
  font-weight:600;
}

body[data-page="product"] .product-lead{
  max-width:680px;
  margin:22px 0 0;
  color:#50617c;
  font-size:clamp(17px,1.22vw,20px);
  line-height:1.56;
  font-weight:400;
}

body[data-page="product"] .product-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

body[data-page="product"] .product-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:14px;
  border:1px solid var(--frame-line);
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:background .22s ease,border-color .22s ease,box-shadow .22s ease,transform .22s ease,color .22s ease;
}

body[data-page="product"] .product-button:hover{
  transform:translateY(-1px);
}

body[data-page="product"] .product-button.primary{
  border-color:transparent;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  box-shadow:0 16px 36px rgba(20,87,255,.24);
}

body[data-page="product"] .product-button.secondary{
  background:rgba(255,255,255,.86);
  color:var(--frame-ink);
}

body[data-page="product"] .product-button.secondary:hover{
  border-color:#abc2ef;
  color:var(--frame-blue-strong);
}

body[data-page="product"] .product-mockup{
  overflow:hidden;
  border:1px solid rgba(7,26,68,.08);
  border-radius:28px;
  background:rgba(255,255,255,.88);
  box-shadow:0 24px 70px rgba(7,26,68,.14);
}

body[data-page="product"] .product-mockup-top{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:52px;
  padding:0 20px;
  border-bottom:1px solid rgba(7,26,68,.07);
  background:#f8fbff;
}

body[data-page="product"] .product-mockup-top span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#a9b7cc;
}

body[data-page="product"] .product-mockup-top span:nth-child(3){
  background:#1457ff;
}

body[data-page="product"] .product-mockup-top strong{
  margin-left:8px;
  color:#40516b;
  font-size:13px;
  font-weight:650;
}

body[data-page="product"] .product-mockup-body{
  display:grid;
  gap:14px;
  padding:20px;
}

body[data-page="product"] .product-manuscript-card,
body[data-page="product"] .product-score-panel,
body[data-page="product"] .product-shortlist-card{
  border:1px solid #e0e8f5;
  border-radius:22px;
  background:#fff;
}

body[data-page="product"] .product-manuscript-card{
  padding:22px;
}

body[data-page="product"] .product-manuscript-card span,
body[data-page="product"] .product-shortlist-card span,
body[data-page="product"] .product-score-panel span{
  display:block;
  color:var(--frame-blue-strong);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="product"] .product-manuscript-card strong,
body[data-page="product"] .product-shortlist-card strong{
  display:block;
  margin-top:8px;
  color:var(--frame-ink);
  font-size:22px;
  line-height:1.15;
  font-weight:600;
}

body[data-page="product"] .product-profile-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
  margin-top:20px;
}

body[data-page="product"] .product-profile-grid em{
  min-height:34px;
  display:flex;
  align-items:center;
  padding:0 12px;
  border-radius:12px;
  background:#f2f6ff;
  color:#40516b;
  font-size:12px;
  font-style:normal;
  font-weight:600;
}

body[data-page="product"] .product-score-panel{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
}

body[data-page="product"] .product-score-panel div{
  min-height:98px;
  padding:18px;
  border-right:1px solid #e0e8f5;
}

body[data-page="product"] .product-score-panel div:last-child{
  border-right:0;
}

body[data-page="product"] .product-score-panel strong{
  display:block;
  margin-top:10px;
  color:var(--frame-ink);
  font-size:24px;
  font-weight:600;
}

body[data-page="product"] .product-shortlist-card{
  padding:20px;
  background:linear-gradient(135deg,#fff 0%,#f2f7ff 100%);
}

body[data-page="product"] .product-shortlist-card p{
  margin:10px 0 0;
  color:#5c6b80;
  font-size:14px;
  line-height:1.5;
}

body[data-page="product"] .product-section{
  margin-top:64px;
}

body[data-page="product"] .product-section-head{
  max-width:720px;
  margin-bottom:24px;
}

body[data-page="product"] .product-section h2,
body[data-page="product"] .product-final h2{
  margin:0;
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  font-size:clamp(32px,3vw,36px);
  line-height:1.18;
  letter-spacing:-.025em;
  font-weight:600;
}

body[data-page="product"] .product-principle-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

body[data-page="product"] .product-principle-grid article,
body[data-page="product"] .product-diff-table article{
  padding:22px;
  border:1px solid rgba(162,181,220,.42);
  border-radius:24px;
  background:rgba(255,255,255,.86);
  box-shadow:none;
  transition:border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

body[data-page="product"] .product-principle-grid article:hover,
body[data-page="product"] .product-diff-table article:hover{
  border-color:#abc2ef;
  box-shadow:0 18px 48px rgba(20,87,255,.08);
  transform:translateY(-2px);
}

body[data-page="product"] .product-principle-grid span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  min-height:28px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--frame-blue-strong);
  font-size:12px;
  font-weight:700;
}

body[data-page="product"] .product-principle-grid h3{
  margin:18px 0 0;
  color:var(--frame-ink);
  font-size:21px;
  line-height:1.2;
  font-weight:600;
}

body[data-page="product"] .product-principle-grid p{
  margin:10px 0 0;
  color:#5d6b80;
  font-size:15px;
  line-height:1.55;
}

body[data-page="product"] .product-diff{
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:linear-gradient(135deg,#fff 0%,#f5f9ff 100%);
}

body[data-page="product"] .product-diff-table{
  display:grid;
  gap:12px;
}

body[data-page="product"] .product-diff-table article{
  display:grid;
  grid-template-columns:160px minmax(180px,1fr) minmax(260px,1.2fr);
  gap:18px;
  align-items:center;
  padding:18px 20px;
}

body[data-page="product"] .product-diff-table span{
  color:#718095;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="product"] .product-diff-table p{
  margin:0;
  color:#5d6b80;
  font-size:16px;
}

body[data-page="product"] .product-diff-table strong{
  color:var(--frame-ink);
  font-size:17px;
  font-weight:600;
}

body[data-page="product"] .product-check-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

body[data-page="product"] .product-check-grid span{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 16px;
  border:1px solid #d8e4f7;
  border-radius:999px;
  background:#fff;
  color:#223452;
  font-size:15px;
  font-weight:600;
  transition:border-color .22s ease, background .22s ease, color .22s ease;
}

body[data-page="product"] .product-check-grid span:hover{
  border-color:#abc2ef;
  background:#eef5ff;
  color:var(--frame-blue-strong);
}

body[data-page="product"] .product-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:72px;
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at right, rgba(20,87,255,.12), transparent 38%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="product"] .product-final p{
  max-width:620px;
  margin:14px 0 0;
  color:#5d6b80;
  font-size:17px;
  line-height:1.56;
}

body[data-page="product"] .product-footer{
  margin:72px calc(50% - 50vw) 0;
  padding:56px max(24px,calc((100vw - 1180px) / 2)) 34px;
  background:#071a44;
  color:#dce7ff;
}

body[data-page="product"] .frame-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .8fr .7fr 1.1fr;
  gap:34px;
  align-items:start;
}

body[data-page="product"] .frame-footer-logo{
  width:128px;
  height:auto;
  filter:none;
  opacity:1;
}

body[data-page="product"] .frame-footer p{
  max-width:320px;
  margin:16px 0 0;
  color:#c2d0ea;
  font-size:15px;
  line-height:1.6;
}

body[data-page="product"] .frame-footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

body[data-page="product"] .frame-footer nav{
  display:grid;
  gap:10px;
}

body[data-page="product"] .frame-footer a{
  color:#c2d0ea;
  font-size:14px;
  text-decoration:none;
}

body[data-page="product"] .frame-footer a:hover{
  color:#fff;
}

body[data-page="product"] .frame-newsletter{
  display:flex;
  gap:8px;
}

body[data-page="product"] .frame-newsletter input{
  min-width:0;
  width:100%;
  height:44px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
}

body[data-page="product"] .frame-newsletter button{
  height:44px;
  padding:0 15px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:#0b3fbd;
  font:inherit;
  font-weight:650;
}

body[data-page="product"] .frame-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
}

body[data-page="product"] .frame-social-links{
  display:flex;
  gap:10px;
}

body[data-page="product"] .frame-social-links a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:12px;
  font-weight:650;
}

body[data-page="product"].motion-ready [data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .28s ease-out, transform .28s ease-out;
}

body[data-page="product"].motion-ready [data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

body[data-page="product"].motion-ready .product-mockup{
  animation:productMockupIn .36s ease-out .08s both;
}

@keyframes productMockupIn{
  from{opacity:0; transform:translateY(12px) scale(.985);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

@media (max-width:1100px){
  body[data-page="product"] .product-hero,
  body[data-page="product"] .product-principle-grid,
  body[data-page="product"] .frame-footer-grid{
    grid-template-columns:1fr;
  }

  body[data-page="product"] .product-diff-table article{
    grid-template-columns:1fr;
  }

  body[data-page="product"] .product-final{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:760px){
  body[data-page="product"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="product"] .site-nav,
  body[data-page="product"] .site-auth-link{
    display:none;
  }

  body[data-page="product"] .product-page{
    width:min(100% - 28px,1180px);
    padding-top:28px;
  }

  body[data-page="product"] .product-hero,
  body[data-page="product"] .product-diff,
  body[data-page="product"] .product-final{
    padding:26px 20px;
    border-radius:24px;
  }

  body[data-page="product"] .product-hero h1{
    font-size:40px;
  }

  body[data-page="product"] .product-score-panel,
  body[data-page="product"] .product-profile-grid{
    grid-template-columns:1fr;
  }

  body[data-page="product"] .product-score-panel div{
    border-right:0;
    border-bottom:1px solid #e0e8f5;
  }

  body[data-page="product"] .product-score-panel div:last-child{
    border-bottom:0;
  }

  body[data-page="product"] .frame-newsletter,
  body[data-page="product"] .frame-footer-bottom{
    flex-direction:column;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="product"] *,
  body[data-page="product"] *::before,
  body[data-page="product"] *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* Frame resources page: premium guide library for publication decisions. */
body[data-page="resources"]{
  --frame-blue:#1457ff;
  --frame-blue-strong:#0b3fbd;
  --frame-blue-soft:#edf4ff;
  --frame-ink:#071a44;
  --frame-muted:#59677d;
  --frame-line:#dce6f8;
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(20,87,255,.12), transparent 30%),
    radial-gradient(circle at 10% 42%, rgba(70,132,255,.08), transparent 28%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 46%,#eef3fb 100%);
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
}

body[data-page="resources"] .resources-shell{
  max-width:none;
  padding:0;
}

body[data-page="resources"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:minmax(180px,1fr) auto minmax(220px,1fr);
  min-height:76px;
  margin:0;
  padding:0 clamp(24px,4vw,56px);
  border:0;
  border-bottom:1px solid rgba(7,26,68,.07);
  border-radius:0;
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px rgba(7,26,68,.07);
  backdrop-filter:blur(18px);
}

body[data-page="resources"] .site-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

body[data-page="resources"] .site-brand-logo{
  width:auto;
  height:48px;
  max-width:190px;
  object-fit:contain;
}

body[data-page="resources"] .site-brand-text{
  display:none;
}

body[data-page="resources"] .site-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:30px;
}

body[data-page="resources"] .site-nav a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:rgba(7,26,68,.7);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease-out;
}

body[data-page="resources"] .site-nav a:hover,
body[data-page="resources"] .site-nav a.active,
body[data-page="resources"] .site-auth-link:hover{
  color:var(--frame-blue);
}

body[data-page="resources"] .site-nav-caret{
  color:rgba(7,26,68,.46);
  font-size:16px;
}

body[data-page="resources"] .site-topbar-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

body[data-page="resources"] .site-auth-link{
  color:rgba(7,26,68,.74);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="resources"] .site-button.primary{
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  font-size:15px;
  font-weight:600;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
}

body[data-page="resources"] .resources-page{
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
  padding:72px 0 0;
}

body[data-page="resources"] .resources-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(380px,.74fr);
  gap:clamp(42px,6vw,86px);
  align-items:center;
  min-height:500px;
  padding:clamp(42px,6vw,70px);
  border:1px solid rgba(162,181,220,.36);
  border-radius:34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(20,87,255,.12), transparent 34%),
    linear-gradient(135deg,#fff 0%,#fbfdff 50%,#eef5ff 100%);
  box-shadow:0 28px 80px rgba(19,42,82,.12);
}

body[data-page="resources"] .resources-hero-copy{
  max-width:760px;
}

body[data-page="resources"] .resources-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:32px;
  margin:0 0 18px;
  padding:0 13px;
  border:1px solid #cfe0ff;
  border-radius:999px;
  background:#eef5ff;
  color:var(--frame-blue-strong);
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}

body[data-page="resources"] .resources-hero h1{
  max-width:760px;
  margin:0;
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  font-size:clamp(44px,4.2vw,56px);
  line-height:1.12;
  letter-spacing:-.035em;
  font-weight:600;
}

body[data-page="resources"] .resources-lead{
  max-width:680px;
  margin:22px 0 0;
  color:#50617c;
  font-size:clamp(17px,1.22vw,20px);
  line-height:1.56;
  font-weight:400;
}

body[data-page="resources"] .resources-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

body[data-page="resources"] .resources-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:14px;
  border:1px solid var(--frame-line);
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:background .22s ease,border-color .22s ease,box-shadow .22s ease,transform .22s ease,color .22s ease;
}

body[data-page="resources"] .resources-button:hover{
  transform:translateY(-1px);
}

body[data-page="resources"] .resources-button.primary{
  border-color:transparent;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  box-shadow:0 16px 36px rgba(20,87,255,.24);
}

body[data-page="resources"] .resources-button.secondary{
  background:rgba(255,255,255,.86);
  color:var(--frame-ink);
}

body[data-page="resources"] .resources-button.secondary:hover{
  border-color:#abc2ef;
  color:var(--frame-blue-strong);
}

body[data-page="resources"] .resources-hero-panel{
  overflow:hidden;
  border:1px solid rgba(7,26,68,.08);
  border-radius:28px;
  background:rgba(255,255,255,.9);
  box-shadow:0 24px 70px rgba(7,26,68,.14);
}

body[data-page="resources"] .resources-panel-header{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:52px;
  padding:0 20px;
  border-bottom:1px solid rgba(7,26,68,.07);
  background:#f8fbff;
}

body[data-page="resources"] .resources-panel-header span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#a9b7cc;
}

body[data-page="resources"] .resources-panel-header span:nth-child(3){
  background:#1457ff;
}

body[data-page="resources"] .resources-panel-header strong{
  margin-left:8px;
  color:#40516b;
  font-size:13px;
  font-weight:650;
}

body[data-page="resources"] .resources-panel-body{
  display:grid;
  gap:14px;
  padding:20px;
}

body[data-page="resources"] .resources-panel-body article,
body[data-page="resources"] .resources-mini-grid div{
  border:1px solid #e0e8f5;
  border-radius:22px;
  background:#fff;
}

body[data-page="resources"] .resources-panel-body article{
  padding:22px;
}

body[data-page="resources"] .resources-panel-body article span,
body[data-page="resources"] .resources-mini-grid span{
  display:block;
  color:var(--frame-blue-strong);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="resources"] .resources-panel-body article strong{
  display:block;
  margin-top:8px;
  color:var(--frame-ink);
  font-size:22px;
  line-height:1.15;
  font-weight:600;
}

body[data-page="resources"] .resources-panel-body article p{
  margin:12px 0 0;
  color:#5d6b80;
  font-size:14px;
  line-height:1.5;
}

body[data-page="resources"] .resources-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

body[data-page="resources"] .resources-mini-grid div{
  padding:18px;
}

body[data-page="resources"] .resources-mini-grid strong{
  display:block;
  margin-top:10px;
  color:var(--frame-ink);
  font-size:20px;
  font-weight:600;
}

body[data-page="resources"] .resources-section,
body[data-page="resources"] .resources-methodology,
body[data-page="resources"] .resources-checklist{
  margin-top:72px;
}

body[data-page="resources"] .resources-section-head{
  max-width:760px;
  margin-bottom:24px;
}

body[data-page="resources"] .resources-section h2,
body[data-page="resources"] .resources-methodology h2,
body[data-page="resources"] .resources-checklist h2,
body[data-page="resources"] .resources-final h2{
  margin:0;
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  font-size:clamp(32px,3vw,36px);
  line-height:1.18;
  letter-spacing:-.025em;
  font-weight:600;
}

body[data-page="resources"] .resource-category-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

body[data-page="resources"] .resource-category-card,
body[data-page="resources"] .resource-guide-card{
  padding:24px;
  border:1px solid rgba(162,181,220,.42);
  border-radius:24px;
  background:rgba(255,255,255,.9);
  transition:border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

body[data-page="resources"] .resource-category-card:hover,
body[data-page="resources"] .resource-guide-card:hover{
  border-color:#abc2ef;
  box-shadow:0 18px 48px rgba(20,87,255,.08);
  transform:translateY(-2px);
}

body[data-page="resources"] .resource-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#eef5ff;
  color:var(--frame-blue-strong);
}

body[data-page="resources"] .resource-icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="resources"] .resource-category-card h3,
body[data-page="resources"] .resource-guide-card h3{
  margin:18px 0 0;
  color:var(--frame-ink);
  font-size:21px;
  line-height:1.22;
  font-weight:600;
}

body[data-page="resources"] .resource-category-card p,
body[data-page="resources"] .resource-guide-card p{
  margin:10px 0 0;
  color:#5d6b80;
  font-size:15px;
  line-height:1.56;
}

body[data-page="resources"] .resource-category-card a{
  display:inline-flex;
  margin-top:18px;
  color:var(--frame-blue-strong);
  font-size:14px;
  font-weight:650;
  text-decoration:none;
}

body[data-page="resources"] .resource-guide-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

body[data-page="resources"] .resource-guide-card span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--frame-blue-strong);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="resources"] .resource-guide-card em{
  display:block;
  margin-top:18px;
  color:#72819a;
  font-size:13px;
  font-style:normal;
  font-weight:650;
}

body[data-page="resources"] .resources-methodology{
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:linear-gradient(135deg,#fff 0%,#f5f9ff 100%);
}

body[data-page="resources"] .resources-signal-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

body[data-page="resources"] .resources-signal-grid span{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 16px;
  border:1px solid #d8e4f7;
  border-radius:999px;
  background:#fff;
  color:#223452;
  font-size:15px;
  font-weight:600;
}

body[data-page="resources"] .resources-checklist{
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(420px,1fr);
  gap:34px;
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:
    radial-gradient(circle at 12% 20%, rgba(20,87,255,.11), transparent 34%),
    #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.09);
}

body[data-page="resources"] .resources-checklist > div > p:not(.resources-eyebrow){
  max-width:420px;
  margin:14px 0 0;
  color:#5d6b80;
  font-size:16px;
  line-height:1.55;
}

body[data-page="resources"] .resources-checklist ul{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

body[data-page="resources"] .resources-checklist li{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:12px;
  align-items:center;
  min-height:52px;
  padding:12px 14px;
  border:1px solid #e0e8f5;
  border-radius:16px;
  background:#fbfdff;
}

body[data-page="resources"] .resources-checklist li span{
  width:22px;
  height:22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  position:relative;
}

body[data-page="resources"] .resources-checklist li span::after{
  content:"";
  position:absolute;
  left:7px;
  top:5px;
  width:6px;
  height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

body[data-page="resources"] .resources-checklist li p{
  margin:0;
  color:#23334d;
  font-size:15px;
  font-weight:600;
}

body[data-page="resources"] .resources-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:72px;
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at right, rgba(20,87,255,.12), transparent 38%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="resources"] .resources-final p{
  max-width:620px;
  margin:14px 0 0;
  color:#5d6b80;
  font-size:17px;
  line-height:1.56;
}

body[data-page="resources"] .resources-footer{
  margin:72px calc(50% - 50vw) 0;
  padding:56px max(24px,calc((100vw - 1180px) / 2)) 34px;
  background:#071a44;
  color:#dce7ff;
}

body[data-page="resources"] .frame-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .8fr .7fr 1.1fr;
  gap:34px;
  align-items:start;
}

body[data-page="resources"] .frame-footer-logo{
  width:128px;
  height:auto;
  opacity:1;
}

body[data-page="resources"] .frame-footer p{
  max-width:320px;
  margin:16px 0 0;
  color:#c2d0ea;
  font-size:15px;
  line-height:1.6;
}

body[data-page="resources"] .frame-footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

body[data-page="resources"] .frame-footer nav{
  display:grid;
  gap:10px;
}

body[data-page="resources"] .frame-footer a{
  color:#c2d0ea;
  font-size:14px;
  text-decoration:none;
}

body[data-page="resources"] .frame-footer a:hover{
  color:#fff;
}

body[data-page="resources"] .frame-newsletter{
  display:flex;
  gap:8px;
}

body[data-page="resources"] .frame-newsletter input{
  min-width:0;
  width:100%;
  height:44px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
}

body[data-page="resources"] .frame-newsletter button{
  height:44px;
  padding:0 15px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:#0b3fbd;
  font:inherit;
  font-weight:650;
}

body[data-page="resources"] .frame-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
}

body[data-page="resources"] .frame-social-links{
  display:flex;
  gap:10px;
}

body[data-page="resources"] .frame-social-links a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:12px;
  font-weight:650;
}

body[data-page="resources"].motion-ready [data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .28s ease-out, transform .28s ease-out;
}

body[data-page="resources"].motion-ready [data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

body[data-page="resources"].motion-ready .resources-hero-panel{
  animation:resourcesPanelIn .36s ease-out .08s both;
}

@keyframes resourcesPanelIn{
  from{opacity:0; transform:translateY(12px) scale(.985);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

@media (max-width:1100px){
  body[data-page="resources"] .resources-hero,
  body[data-page="resources"] .resource-category-grid,
  body[data-page="resources"] .resources-checklist,
  body[data-page="resources"] .frame-footer-grid{
    grid-template-columns:1fr;
  }

  body[data-page="resources"] .resource-guide-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body[data-page="resources"] .resources-final{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:760px){
  body[data-page="resources"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="resources"] .site-nav,
  body[data-page="resources"] .site-auth-link{
    display:none;
  }

  body[data-page="resources"] .resources-page{
    width:min(100% - 28px,1180px);
    padding-top:28px;
  }

  body[data-page="resources"] .resources-hero,
  body[data-page="resources"] .resources-methodology,
  body[data-page="resources"] .resources-checklist,
  body[data-page="resources"] .resources-final{
    padding:26px 20px;
    border-radius:24px;
  }

  body[data-page="resources"] .resources-hero h1{
    font-size:40px;
  }

  body[data-page="resources"] .resources-mini-grid,
  body[data-page="resources"] .resource-guide-grid{
    grid-template-columns:1fr;
  }

  body[data-page="resources"] .frame-newsletter,
  body[data-page="resources"] .frame-footer-bottom{
    flex-direction:column;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="resources"] *,
  body[data-page="resources"] *::before,
  body[data-page="resources"] *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* Frame pricing page: simple beta-aware SaaS pricing. */
body[data-page="pricing"]{
  --frame-blue:#1457ff;
  --frame-blue-strong:#0b3fbd;
  --frame-blue-soft:#edf4ff;
  --frame-ink:#071a44;
  --frame-muted:#59677d;
  --frame-line:#dce6f8;
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 84% 7%, rgba(20,87,255,.12), transparent 30%),
    radial-gradient(circle at 12% 38%, rgba(70,132,255,.08), transparent 28%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 46%,#eef3fb 100%);
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
}

body[data-page="pricing"] .pricing-shell{
  max-width:none;
  padding:0;
}

body[data-page="pricing"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:minmax(180px,1fr) auto minmax(220px,1fr);
  min-height:76px;
  margin:0;
  padding:0 clamp(24px,4vw,56px);
  border:0;
  border-bottom:1px solid rgba(7,26,68,.07);
  border-radius:0;
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px rgba(7,26,68,.07);
  backdrop-filter:blur(18px);
}

body[data-page="pricing"] .site-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

body[data-page="pricing"] .site-brand-logo{
  width:auto;
  height:48px;
  max-width:190px;
  object-fit:contain;
}

body[data-page="pricing"] .site-brand-text{
  display:none;
}

body[data-page="pricing"] .site-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:30px;
}

body[data-page="pricing"] .site-nav a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:rgba(7,26,68,.7);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease-out;
}

body[data-page="pricing"] .site-nav a:hover,
body[data-page="pricing"] .site-nav a.active,
body[data-page="pricing"] .site-auth-link:hover{
  color:var(--frame-blue);
}

body[data-page="pricing"] .site-nav-caret{
  color:rgba(7,26,68,.46);
  font-size:16px;
}

body[data-page="pricing"] .site-topbar-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

body[data-page="pricing"] .site-auth-link{
  color:rgba(7,26,68,.74);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="pricing"] .site-button.primary{
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  font-size:15px;
  font-weight:600;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
}

body[data-page="pricing"] .pricing-page{
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
  padding:34px 0 0;
}

body[data-page="pricing"] .pricing-hero{
  display:grid;
  justify-items:center;
  text-align:center;
  padding:clamp(28px,4.5vw,48px) 28px 38px;
}

body[data-page="pricing"] .pricing-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:32px;
  margin:0 0 18px;
  padding:0 13px;
  border:1px solid #cfe0ff;
  border-radius:999px;
  background:#eef5ff;
  color:var(--frame-blue-strong);
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}

body[data-page="pricing"] .pricing-hero h1{
  max-width:760px;
  margin:0;
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  font-size:clamp(44px,4.2vw,56px);
  line-height:1.12;
  letter-spacing:-.035em;
  font-weight:600;
}

body[data-page="pricing"] .pricing-lead{
  max-width:680px;
  margin:22px auto 0;
  color:#50617c;
  font-size:clamp(17px,1.22vw,20px);
  line-height:1.56;
  font-weight:400;
}

body[data-page="pricing"] .pricing-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:30px;
}

body[data-page="pricing"] .pricing-button,
body[data-page="pricing"] .pricing-card-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:14px;
  border:1px solid var(--frame-line);
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:background .22s ease,border-color .22s ease,box-shadow .22s ease,transform .22s ease,color .22s ease;
}

body[data-page="pricing"] .pricing-button:hover,
body[data-page="pricing"] .pricing-card-button:hover{
  transform:translateY(-1px);
}

body[data-page="pricing"] .pricing-button.primary,
body[data-page="pricing"] .pricing-card-button.primary{
  border-color:transparent;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  box-shadow:0 16px 36px rgba(20,87,255,.24);
}

body[data-page="pricing"] .pricing-button.secondary,
body[data-page="pricing"] .pricing-card-button{
  background:rgba(255,255,255,.86);
  color:var(--frame-ink);
}

body[data-page="pricing"] .pricing-button.secondary:hover,
body[data-page="pricing"] .pricing-card-button:hover{
  border-color:#abc2ef;
  color:var(--frame-blue-strong);
}

body[data-page="pricing"] .pricing-plans{
  padding:34px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(20,87,255,.1), transparent 38%),
    rgba(255,255,255,.72);
  box-shadow:0 28px 80px rgba(19,42,82,.1);
}

body[data-page="pricing"] .pricing-billing-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}

body[data-page="pricing"] .pricing-billing-row p{
  margin:0;
  color:#687891;
  font-size:14px;
  font-weight:600;
}

body[data-page="pricing"] .pricing-billing-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px;
  border:1px solid #d7e3f7;
  border-radius:999px;
  background:#fff;
}

body[data-page="pricing"] .pricing-billing-toggle button{
  min-height:40px;
  padding:0 17px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#5c6b80;
  font:inherit;
  font-size:14px;
  font-weight:650;
  cursor:pointer;
  transition:background .18s ease, color .18s ease, box-shadow .18s ease;
}

body[data-page="pricing"] .pricing-billing-toggle button.active{
  background:var(--frame-blue);
  color:#fff;
  box-shadow:0 10px 24px rgba(20,87,255,.2);
}

body[data-page="pricing"] .pricing-billing-toggle span{
  margin-left:6px;
  color:inherit;
  opacity:.78;
}

body[data-page="pricing"] .pricing-tier-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

body[data-page="pricing"] .pricing-tier{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:520px;
  padding:28px;
  border:1px solid rgba(162,181,220,.48);
  border-radius:28px;
  background:rgba(255,255,255,.94);
  transition:border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

body[data-page="pricing"] .pricing-tier:hover{
  border-color:#abc2ef;
  box-shadow:0 20px 54px rgba(20,87,255,.09);
  transform:translateY(-2px);
}

body[data-page="pricing"] .pricing-tier.featured{
  border-color:rgba(20,87,255,.55);
  background:linear-gradient(180deg,#fff 0%,#f4f8ff 100%);
  box-shadow:0 24px 70px rgba(20,87,255,.13);
}

body[data-page="pricing"] .pricing-tier.entry{
  border-color:rgba(162,181,220,.34);
  background:rgba(255,255,255,.72);
  box-shadow:none;
}

body[data-page="pricing"] .pricing-tier-badge{
  position:absolute;
  top:20px;
  right:20px;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  padding:0 11px;
  border-radius:999px;
  background:#eaf1ff;
  color:var(--frame-blue-strong);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="pricing"] .pricing-tier h3{
  margin:0;
  color:var(--frame-ink);
  font-size:24px;
  line-height:1.2;
  font-weight:600;
}

body[data-page="pricing"] .pricing-price{
  margin-top:24px;
  color:var(--frame-ink);
  font-size:42px;
  line-height:1;
  letter-spacing:-.035em;
  font-weight:600;
  transition:color .18s ease;
}

body[data-page="pricing"] .pricing-price-note{
  margin:10px 0 0 !important;
  color:#687891 !important;
  font-size:13px !important;
  line-height:1.45 !important;
}

body[data-page="pricing"] .pricing-tier > p:not(.pricing-price-note){
  min-height:48px;
  margin:18px 0 0;
  color:#5d6b80;
  font-size:15px;
  line-height:1.55;
}

body[data-page="pricing"] .pricing-tier > p.pricing-usage,
body[data-page="pricing"] .pricing-tier > p.pricing-trial-note{
  min-height:auto;
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  background:#f4f8ff;
  color:#29456f;
  font-size:14px;
  line-height:1.45;
  font-weight:600;
}

body[data-page="pricing"] .pricing-tier > p.pricing-trial-note{
  border:1px solid #cfe0ff;
  background:#eef5ff;
  color:var(--frame-blue-strong);
}

body[data-page="pricing"] .pricing-tier ul{
  display:grid;
  gap:12px;
  margin:24px 0;
  padding:0;
  list-style:none;
}

body[data-page="pricing"] .pricing-tier li{
  position:relative;
  padding-left:24px;
  color:#263a59;
  font-size:15px;
  line-height:1.45;
  font-weight:500;
}

body[data-page="pricing"] .pricing-tier li::before{
  content:"";
  position:absolute;
  left:0;
  top:.28em;
  width:14px;
  height:14px;
  border-radius:999px;
  background:var(--frame-blue);
  box-shadow:inset 0 0 0 4px #fff;
  outline:1px solid #cbdcff;
}

body[data-page="pricing"] .pricing-card-button{
  margin-top:auto;
}

body[data-page="pricing"] .pricing-comparison,
body[data-page="pricing"] .pricing-values,
body[data-page="pricing"] .pricing-faq{
  margin-top:72px;
}

body[data-page="pricing"] .pricing-section-head{
  max-width:760px;
  margin-bottom:24px;
}

body[data-page="pricing"] .pricing-section-head h2,
body[data-page="pricing"] .pricing-final h2{
  margin:0;
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  font-size:clamp(32px,3vw,36px);
  line-height:1.18;
  letter-spacing:-.025em;
  font-weight:600;
}

body[data-page="pricing"] .pricing-comparison-table{
  overflow:hidden;
  border:1px solid rgba(162,181,220,.42);
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 52px rgba(19,42,82,.07);
}

body[data-page="pricing"] .pricing-comparison-head,
body[data-page="pricing"] .pricing-comparison-row{
  display:grid;
  grid-template-columns:1.35fr repeat(3,1fr);
  gap:16px;
  align-items:center;
  padding:18px 22px;
  border-bottom:1px solid #e4ecf8;
}

body[data-page="pricing"] .pricing-comparison-head{
  background:#f4f8ff;
  color:var(--frame-blue-strong);
  font-size:12px;
  font-weight:750;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="pricing"] .pricing-comparison-row:last-child{
  border-bottom:0;
}

body[data-page="pricing"] .pricing-comparison-row strong{
  color:#223452;
  font-size:15px;
  font-weight:650;
}

body[data-page="pricing"] .pricing-comparison-row span{
  color:#5d6b80;
  font-size:15px;
  font-weight:600;
}

body[data-page="pricing"] .pricing-value-grid,
body[data-page="pricing"] .pricing-faq-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

body[data-page="pricing"] .pricing-value-card,
body[data-page="pricing"] .pricing-faq-item{
  padding:24px;
  border:1px solid rgba(162,181,220,.42);
  border-radius:24px;
  background:rgba(255,255,255,.9);
  transition:border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

body[data-page="pricing"] .pricing-value-card:hover,
body[data-page="pricing"] .pricing-faq-item:hover{
  border-color:#abc2ef;
  box-shadow:0 18px 48px rgba(20,87,255,.08);
  transform:translateY(-2px);
}

body[data-page="pricing"] .pricing-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#eef5ff;
  color:var(--frame-blue-strong);
}

body[data-page="pricing"] .pricing-icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="pricing"] .pricing-value-card h3,
body[data-page="pricing"] .pricing-faq-item h3{
  margin:18px 0 0;
  color:var(--frame-ink);
  font-size:20px;
  line-height:1.24;
  font-weight:600;
}

body[data-page="pricing"] .pricing-value-card p,
body[data-page="pricing"] .pricing-faq-item p{
  margin:10px 0 0;
  color:#5d6b80;
  font-size:15px;
  line-height:1.56;
}

body[data-page="pricing"] .pricing-faq-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

body[data-page="pricing"] .pricing-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:72px;
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at right, rgba(20,87,255,.12), transparent 38%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="pricing"] .pricing-final p{
  max-width:620px;
  margin:14px 0 0;
  color:#5d6b80;
  font-size:17px;
  line-height:1.56;
}

body[data-page="pricing"] .pricing-footer{
  margin:72px calc(50% - 50vw) 0;
  padding:56px max(24px,calc((100vw - 1180px) / 2)) 34px;
  background:#071a44;
  color:#dce7ff;
}

body[data-page="pricing"] .frame-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .8fr .7fr 1.1fr;
  gap:34px;
  align-items:start;
}

body[data-page="pricing"] .frame-footer-logo{
  width:128px;
  height:auto;
  opacity:1;
}

body[data-page="pricing"] .frame-footer p{
  max-width:320px;
  margin:16px 0 0;
  color:#c2d0ea;
  font-size:15px;
  line-height:1.6;
}

body[data-page="pricing"] .frame-footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

body[data-page="pricing"] .frame-footer nav{
  display:grid;
  gap:10px;
}

body[data-page="pricing"] .frame-footer a{
  color:#c2d0ea;
  font-size:14px;
  text-decoration:none;
}

body[data-page="pricing"] .frame-footer a:hover{
  color:#fff;
}

body[data-page="pricing"] .frame-newsletter{
  display:flex;
  gap:8px;
}

body[data-page="pricing"] .frame-newsletter input{
  min-width:0;
  width:100%;
  height:44px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
}

body[data-page="pricing"] .frame-newsletter button{
  height:44px;
  padding:0 15px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:#0b3fbd;
  font:inherit;
  font-weight:650;
}

body[data-page="pricing"] .frame-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
}

body[data-page="pricing"] .frame-social-links{
  display:flex;
  gap:10px;
}

body[data-page="pricing"] .frame-social-links a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:12px;
  font-weight:650;
}

body[data-page="pricing"].motion-ready [data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .28s ease-out, transform .28s ease-out;
}

body[data-page="pricing"].motion-ready [data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

body[data-page="pricing"].motion-ready .pricing-tier{
  animation:pricingCardIn .32s ease-out both;
}

body[data-page="pricing"].motion-ready .pricing-tier:nth-child(2){
  animation-delay:.08s;
}

body[data-page="pricing"].motion-ready .pricing-tier:nth-child(3){
  animation-delay:.16s;
}

@keyframes pricingCardIn{
  from{opacity:0; transform:translateY(12px) scale(.985);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

@media (max-width:1100px){
  body[data-page="pricing"] .pricing-tier-grid,
  body[data-page="pricing"] .pricing-value-grid,
  body[data-page="pricing"] .frame-footer-grid{
    grid-template-columns:1fr;
  }

  body[data-page="pricing"] .pricing-final{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:860px){
  body[data-page="pricing"] .pricing-faq-grid{
    grid-template-columns:1fr;
  }

  body[data-page="pricing"] .pricing-comparison-head,
  body[data-page="pricing"] .pricing-comparison-row{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  body[data-page="pricing"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="pricing"] .site-nav,
  body[data-page="pricing"] .site-auth-link{
    display:none;
  }

  body[data-page="pricing"] .pricing-page{
    width:min(100% - 28px,1180px);
    padding-top:28px;
  }

  body[data-page="pricing"] .pricing-hero{
    padding:34px 0 26px;
    text-align:left;
    justify-items:start;
  }

  body[data-page="pricing"] .pricing-hero h1{
    font-size:40px;
  }

  body[data-page="pricing"] .pricing-plans,
  body[data-page="pricing"] .pricing-final{
    padding:24px 20px;
    border-radius:24px;
  }

  body[data-page="pricing"] .pricing-billing-row{
    align-items:flex-start;
    flex-direction:column;
  }

  body[data-page="pricing"] .pricing-actions{
    justify-content:flex-start;
  }

  body[data-page="pricing"] .frame-newsletter,
  body[data-page="pricing"] .frame-footer-bottom{
    flex-direction:column;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="pricing"] *,
  body[data-page="pricing"] *::before,
  body[data-page="pricing"] *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* Features overview */
body[data-page="features"]{
  --frame-ink:#071a44;
  --frame-muted:#5e6f89;
  --frame-blue:#1457ff;
  --frame-blue-strong:#0a3cc9;
  --frame-blue-soft:#eef5ff;
  --frame-border:#d7e4ff;
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(20,87,255,.12), transparent 30%),
    radial-gradient(circle at 12% 46%, rgba(70,132,255,.08), transparent 28%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 48%,#eef3fb 100%);
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  overflow-x:hidden;
}

body[data-page="features"] .features-shell{
  max-width:none;
  padding:0;
}

body[data-page="features"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:minmax(180px,1fr) auto minmax(220px,1fr);
  min-height:76px;
  margin:0;
  padding:0 clamp(24px,4vw,56px);
  border:0;
  border-bottom:1px solid rgba(7,26,68,.07);
  border-radius:0;
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px rgba(7,26,68,.07);
  backdrop-filter:blur(18px);
}

body[data-page="features"] .site-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

body[data-page="features"] .site-brand-logo{
  width:auto;
  height:48px;
  max-width:190px;
  object-fit:contain;
}

body[data-page="features"] .site-brand-text{
  display:none;
}

body[data-page="features"] .site-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:30px;
}

body[data-page="features"] .site-nav a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:rgba(7,26,68,.7);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease-out;
}

body[data-page="features"] .site-nav a:hover,
body[data-page="features"] .site-nav a.active,
body[data-page="features"] .site-auth-link:hover{
  color:var(--frame-blue);
}

body[data-page="features"] .site-nav-caret{
  color:rgba(7,26,68,.46);
  font-size:16px;
}

body[data-page="features"] .site-topbar-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

body[data-page="features"] .site-auth-link{
  color:rgba(7,26,68,.74);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="features"] .site-button.primary{
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  font-size:15px;
  font-weight:600;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
}

body[data-page="features"] .features-page{
  width:min(100% - 48px,1180px);
  margin:0 auto;
  padding:54px 0 0;
}

body[data-page="features"] .features-hero{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(420px,1fr);
  align-items:center;
  gap:64px;
  min-height:620px;
  padding:48px 0 70px;
}

body[data-page="features"] .features-hero-copy{
  max-width:650px;
}

body[data-page="features"] .features-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin:0 0 18px;
  padding:8px 13px;
  border:1px solid rgba(20,87,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#0b3fbd;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body[data-page="features"] .features-hero h1{
  max-width:740px;
  margin:0;
  color:var(--frame-ink);
  font-size:clamp(48px,5vw,56px);
  line-height:1.08;
  font-weight:600;
  letter-spacing:-.045em;
}

body[data-page="features"] .features-lead{
  max-width:630px;
  margin:22px 0 0;
  color:var(--frame-muted);
  font-size:18px;
  line-height:1.55;
}

body[data-page="features"] .features-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:30px;
}

body[data-page="features"] .features-button{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:border-color .22s ease-out, background .22s ease-out, color .22s ease-out, transform .22s ease-out;
}

body[data-page="features"] .features-button:hover{
  transform:translateY(-1px);
}

body[data-page="features"] .features-button.primary{
  border:1px solid var(--frame-blue);
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  box-shadow:0 16px 34px rgba(20,87,255,.22);
}

body[data-page="features"] .features-button.secondary{
  border:1px solid rgba(7,26,68,.12);
  background:#fff;
  color:var(--frame-ink);
}

body[data-page="features"] .features-button.secondary:hover{
  border-color:rgba(20,87,255,.32);
  color:var(--frame-blue);
}

body[data-page="features"] .features-hero-mockup,
body[data-page="features"] .features-product-preview{
  overflow:hidden;
  border:1px solid rgba(162,181,220,.4);
  border-radius:30px;
  background:rgba(255,255,255,.86);
  box-shadow:0 28px 70px rgba(19,42,82,.14);
  backdrop-filter:blur(16px);
}

body[data-page="features"] .features-window-bar{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:54px;
  padding:0 20px;
  border-bottom:1px solid rgba(162,181,220,.28);
  background:#071a44;
  color:#fff;
}

body[data-page="features"] .features-window-bar span{
  width:11px;
  height:11px;
  border-radius:999px;
  background:#6b7890;
}

body[data-page="features"] .features-window-bar span:nth-child(3){
  background:#7ea8ff;
}

body[data-page="features"] .features-window-bar strong{
  margin-left:10px;
  font-size:13px;
  font-weight:600;
}

body[data-page="features"] .features-route-preview{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding:30px;
}

body[data-page="features"] .features-mini-panel{
  min-height:250px;
  padding:22px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:22px;
  background:linear-gradient(180deg,#fff,#f8fbff);
}

body[data-page="features"] .features-mini-panel span,
body[data-page="features"] .features-product-header span,
body[data-page="features"] .features-signal-grid span,
body[data-page="features"] .features-shortlist-preview span{
  display:block;
  color:#6b7890;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="features"] .features-mini-panel strong,
body[data-page="features"] .features-product-header strong{
  display:block;
  margin-top:10px;
  color:var(--frame-ink);
  font-size:23px;
  line-height:1.12;
  font-weight:600;
}

body[data-page="features"] .features-chip-row{
  display:grid;
  gap:10px;
  margin-top:26px;
}

body[data-page="features"] .features-chip-row em{
  display:block;
  padding:10px 12px;
  border-radius:999px;
  background:var(--frame-blue-soft);
  color:#0b3fbd;
  font-size:13px;
  font-style:normal;
  font-weight:600;
}

body[data-page="features"] .features-route-arrow{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  color:var(--frame-blue);
  font-size:22px;
  box-shadow:0 12px 32px rgba(20,87,255,.14);
}

body[data-page="features"] .features-journal-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:14px;
  padding:12px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:15px;
  background:#fff;
}

body[data-page="features"] .features-journal-row b{
  color:var(--frame-ink);
  font-size:14px;
  font-weight:600;
}

body[data-page="features"] .features-journal-row small{
  color:#0b3fbd;
  font-size:12px;
  font-weight:600;
}

body[data-page="features"] .features-section,
body[data-page="features"] .features-preview-section{
  margin-top:78px;
}

body[data-page="features"] .features-section-head{
  max-width:680px;
  margin-bottom:28px;
}

body[data-page="features"] .features-section h2,
body[data-page="features"] .features-preview-copy h2,
body[data-page="features"] .features-final h2{
  margin:0;
  color:var(--frame-ink);
  font-size:clamp(32px,3vw,36px);
  line-height:1.15;
  font-weight:600;
  letter-spacing:-.035em;
}

body[data-page="features"] .features-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

body[data-page="features"] .features-card{
  min-height:220px;
  padding:24px;
  border:1px solid rgba(162,181,220,.38);
  border-radius:24px;
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 44px rgba(19,42,82,.08);
  transition:border-color .22s ease-out, transform .22s ease-out, box-shadow .22s ease-out;
}

body[data-page="features"] .features-card:hover{
  transform:translateY(-2px);
  border-color:rgba(20,87,255,.42);
  box-shadow:0 22px 50px rgba(20,87,255,.12);
}

body[data-page="features"] .features-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:var(--frame-blue-soft);
  color:var(--frame-blue);
}

body[data-page="features"] .features-icon svg{
  width:23px;
  height:23px;
}

body[data-page="features"] .features-icon path{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="features"] .features-card h3{
  margin:22px 0 0;
  color:var(--frame-ink);
  font-size:21px;
  line-height:1.22;
  font-weight:600;
}

body[data-page="features"] .features-card p,
body[data-page="features"] .features-preview-copy p,
body[data-page="features"] .features-final p{
  max-width:620px;
  margin:10px 0 0;
  color:var(--frame-muted);
  font-size:15px;
  line-height:1.56;
}

body[data-page="features"] .features-card-link{
  display:inline-flex;
  align-items:center;
  margin-top:18px;
  color:var(--frame-blue);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="features"] .features-card-link:hover{
  text-decoration:underline;
}

body[data-page="features"] .features-preview-section{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  align-items:center;
  gap:46px;
  padding:38px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at 18% 12%, rgba(20,87,255,.1), transparent 32%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="features"] .features-product-preview{
  box-shadow:0 18px 50px rgba(19,42,82,.1);
}

body[data-page="features"] .features-product-header{
  padding:24px 24px 0;
}

body[data-page="features"] .features-signal-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  padding:22px 24px 0;
}

body[data-page="features"] .features-signal-grid article{
  min-height:92px;
  padding:16px;
  border:1px solid rgba(162,181,220,.34);
  border-radius:18px;
  background:#fff;
}

body[data-page="features"] .features-signal-grid strong{
  display:block;
  margin-top:10px;
  color:var(--frame-ink);
  font-size:18px;
  font-weight:600;
}

body[data-page="features"] .features-shortlist-preview{
  display:grid;
  gap:10px;
  padding:22px 24px 24px;
}

body[data-page="features"] .features-shortlist-preview div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border:1px solid rgba(162,181,220,.34);
  border-radius:16px;
  background:#f8fbff;
}

body[data-page="features"] .features-shortlist-preview b{
  color:var(--frame-ink);
  font-size:15px;
  font-weight:600;
}

body[data-page="features"] .features-shortlist-preview span{
  text-align:right;
  text-transform:none;
  letter-spacing:0;
}

body[data-page="features"] .features-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:76px;
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at right, rgba(20,87,255,.12), transparent 38%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="features"] .features-footer{
  margin:72px calc(50% - 50vw) 0;
  padding:56px max(24px,calc((100vw - 1180px) / 2)) 34px;
  background:#071a44;
  color:#dce7ff;
}

body[data-page="features"] .frame-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .8fr .7fr 1.1fr;
  gap:34px;
  align-items:start;
}

body[data-page="features"] .frame-footer-logo{
  width:128px;
  height:auto;
  opacity:1;
}

body[data-page="features"] .frame-footer p{
  max-width:320px;
  margin:16px 0 0;
  color:#c2d0ea;
  font-size:15px;
  line-height:1.6;
}

body[data-page="features"] .frame-footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

body[data-page="features"] .frame-footer nav{
  display:grid;
  gap:10px;
}

body[data-page="features"] .frame-footer a{
  color:#c2d0ea;
  font-size:14px;
  text-decoration:none;
}

body[data-page="features"] .frame-footer a:hover{
  color:#fff;
}

body[data-page="features"] .frame-newsletter{
  display:flex;
  gap:8px;
}

body[data-page="features"] .frame-newsletter input{
  min-width:0;
  width:100%;
  height:44px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
}

body[data-page="features"] .frame-newsletter button{
  height:44px;
  padding:0 15px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:#0b3fbd;
  font:inherit;
  font-weight:650;
}

body[data-page="features"] .frame-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
}

body[data-page="features"] .frame-social-links{
  display:flex;
  gap:10px;
}

body[data-page="features"] .frame-social-links a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:12px;
  font-weight:650;
}

body[data-page="features"].motion-ready [data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .28s ease-out, transform .28s ease-out;
}

body[data-page="features"].motion-ready [data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

body[data-page="features"].motion-ready .features-hero-mockup{
  animation:featuresMockupIn .36s ease-out both .08s;
}

@keyframes featuresMockupIn{
  from{opacity:0; transform:translateY(14px) scale(.985);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

@media (max-width:1100px){
  body[data-page="features"] .features-hero,
  body[data-page="features"] .features-preview-section,
  body[data-page="features"] .frame-footer-grid{
    grid-template-columns:1fr;
  }

  body[data-page="features"] .features-card-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body[data-page="features"] .features-final{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:760px){
  body[data-page="features"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="features"] .site-nav,
  body[data-page="features"] .site-auth-link{
    display:none;
  }

  body[data-page="features"] .features-page{
    width:min(100% - 28px,1180px);
    padding-top:28px;
  }

  body[data-page="features"] .features-hero{
    min-height:auto;
    padding:36px 0 54px;
  }

  body[data-page="features"] .features-hero h1{
    font-size:40px;
  }

  body[data-page="features"] .features-card-grid,
  body[data-page="features"] .features-route-preview,
  body[data-page="features"] .features-signal-grid{
    grid-template-columns:1fr;
  }

  body[data-page="features"] .features-route-arrow{
    transform:rotate(90deg);
    margin:auto;
  }

  body[data-page="features"] .features-preview-section,
  body[data-page="features"] .features-final{
    padding:24px 20px;
    border-radius:24px;
  }

  body[data-page="features"] .features-actions{
    justify-content:flex-start;
  }

  body[data-page="features"] .frame-newsletter,
  body[data-page="features"] .frame-footer-bottom{
    flex-direction:column;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="features"] *,
  body[data-page="features"] *::before,
  body[data-page="features"] *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* Feature detail: manuscript profiling */
body[data-page="feature-detail"]{
  --frame-ink:#071a44;
  --frame-muted:#5e6f89;
  --frame-blue:#1457ff;
  --frame-blue-strong:#0a3cc9;
  --frame-blue-soft:#eef5ff;
  --frame-border:#d7e4ff;
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 84% 8%, rgba(20,87,255,.14), transparent 30%),
    radial-gradient(circle at 8% 44%, rgba(92,150,255,.09), transparent 28%),
    linear-gradient(180deg,#f8fbff 0%,#f4f8ff 52%,#edf3fb 100%);
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
  overflow-x:hidden;
}

body[data-page="feature-detail"] .feature-detail-shell{
  max-width:none;
  padding:0;
}

body[data-page="feature-detail"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:minmax(180px,1fr) auto minmax(220px,1fr);
  min-height:76px;
  margin:0;
  padding:0 clamp(24px,4vw,56px);
  border:0;
  border-bottom:1px solid rgba(7,26,68,.07);
  border-radius:0;
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px rgba(7,26,68,.07);
  backdrop-filter:blur(18px);
}

body[data-page="feature-detail"] .site-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

body[data-page="feature-detail"] .site-brand-logo{
  width:auto;
  height:48px;
  max-width:190px;
  object-fit:contain;
}

body[data-page="feature-detail"] .site-brand-text{
  display:none;
}

body[data-page="feature-detail"] .site-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:30px;
}

body[data-page="feature-detail"] .site-nav a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:rgba(7,26,68,.7);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease-out;
}

body[data-page="feature-detail"] .site-nav a:hover,
body[data-page="feature-detail"] .site-nav a.active,
body[data-page="feature-detail"] .site-auth-link:hover{
  color:var(--frame-blue);
}

body[data-page="feature-detail"] .site-nav-caret{
  color:rgba(7,26,68,.46);
  font-size:16px;
}

body[data-page="feature-detail"] .site-topbar-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

body[data-page="feature-detail"] .site-auth-link{
  color:rgba(7,26,68,.74);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="feature-detail"] .site-button.primary{
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  font-size:15px;
  font-weight:600;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
}

body[data-page="feature-detail"] .feature-detail-page{
  width:min(100% - 48px,1180px);
  margin:0 auto;
  padding:54px 0 0;
}

body[data-page="feature-detail"] .feature-detail-hero{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(430px,1fr);
  align-items:center;
  gap:64px;
  min-height:610px;
  padding:46px 0 68px;
}

body[data-page="feature-detail"] .feature-detail-copy{
  max-width:640px;
}

body[data-page="feature-detail"] .feature-detail-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin:0 0 18px;
  padding:8px 13px;
  border:1px solid rgba(20,87,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#0b3fbd;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body[data-page="feature-detail"] .feature-detail-hero h1{
  max-width:720px;
  margin:0;
  color:var(--frame-ink);
  font-size:clamp(48px,5vw,56px);
  line-height:1.08;
  font-weight:600;
  letter-spacing:-.045em;
}

body[data-page="feature-detail"] .feature-detail-lead{
  max-width:610px;
  margin:22px 0 0;
  color:var(--frame-muted);
  font-size:18px;
  line-height:1.55;
}

body[data-page="feature-detail"] .feature-detail-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:30px;
}

body[data-page="feature-detail"] .feature-detail-button{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:border-color .22s ease-out, background .22s ease-out, color .22s ease-out, transform .22s ease-out;
}

body[data-page="feature-detail"] .feature-detail-button:hover{
  transform:translateY(-1px);
}

body[data-page="feature-detail"] .feature-detail-button.primary{
  border:1px solid var(--frame-blue);
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  box-shadow:0 16px 34px rgba(20,87,255,.22);
}

body[data-page="feature-detail"] .feature-detail-button.secondary{
  border:1px solid rgba(7,26,68,.12);
  background:#fff;
  color:var(--frame-ink);
}

body[data-page="feature-detail"] .feature-detail-button.secondary:hover{
  border-color:rgba(20,87,255,.32);
  color:var(--frame-blue);
}

body[data-page="feature-detail"] .feature-profile-preview{
  overflow:hidden;
  border:1px solid rgba(162,181,220,.4);
  border-radius:30px;
  background:rgba(255,255,255,.88);
  box-shadow:0 28px 70px rgba(19,42,82,.14);
  backdrop-filter:blur(16px);
}

body[data-page="feature-detail"] .feature-preview-bar{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:54px;
  padding:0 20px;
  border-bottom:1px solid rgba(162,181,220,.28);
  background:#071a44;
  color:#fff;
}

body[data-page="feature-detail"] .feature-preview-bar span{
  width:11px;
  height:11px;
  border-radius:999px;
  background:#6b7890;
}

body[data-page="feature-detail"] .feature-preview-bar span:nth-child(3){
  background:#7ea8ff;
}

body[data-page="feature-detail"] .feature-preview-bar strong{
  margin-left:10px;
  font-size:13px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-preview-flow{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding:30px;
}

body[data-page="feature-detail"] .feature-match-preview{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  align-items:stretch;
  gap:18px;
  padding:30px;
}

body[data-page="feature-detail"] .feature-trust-preview{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  gap:18px;
  padding:30px;
}

body[data-page="feature-detail"] .feature-compare-preview{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
  gap:14px;
  padding:30px;
}

body[data-page="feature-detail"] .feature-advisory-preview{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  align-items:stretch;
  gap:18px;
  padding:30px;
}

body[data-page="feature-detail"] .feature-manuscript-sheet,
body[data-page="feature-detail"] .feature-signal-panel,
body[data-page="feature-detail"] .feature-match-profile,
body[data-page="feature-detail"] .feature-shortlist-panel,
body[data-page="feature-detail"] .feature-trust-status,
body[data-page="feature-detail"] .feature-checklist-panel,
body[data-page="feature-detail"] .feature-compare-column,
body[data-page="feature-detail"] .feature-report-page,
body[data-page="feature-detail"] .feature-report-summary{
  min-height:276px;
  padding:22px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:22px;
  background:linear-gradient(180deg,#fff,#f8fbff);
}

body[data-page="feature-detail"] .feature-manuscript-sheet span,
body[data-page="feature-detail"] .feature-signal-panel > span,
body[data-page="feature-detail"] .feature-match-profile span,
body[data-page="feature-detail"] .feature-shortlist-panel > span,
body[data-page="feature-detail"] .feature-trust-status > span,
body[data-page="feature-detail"] .feature-checklist-panel > span,
body[data-page="feature-detail"] .feature-compare-column > span,
body[data-page="feature-detail"] .feature-report-page > span{
  display:block;
  color:#6b7890;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

body[data-page="feature-detail"] .feature-manuscript-sheet strong,
body[data-page="feature-detail"] .feature-match-profile strong,
body[data-page="feature-detail"] .feature-trust-status > strong,
body[data-page="feature-detail"] .feature-compare-column > strong,
body[data-page="feature-detail"] .feature-report-page > strong{
  display:block;
  margin-top:10px;
  color:var(--frame-ink);
  font-size:23px;
  line-height:1.12;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-compare-column{
  display:grid;
  align-content:start;
  gap:12px;
}

body[data-page="feature-detail"] .feature-compare-column div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:15px;
  background:#fff;
}

body[data-page="feature-detail"] .feature-compare-column b{
  color:var(--frame-muted);
  font-size:13px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-compare-column em{
  color:#0b3fbd;
  font-size:12px;
  font-style:normal;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-compare-column p{
  margin:4px 0 0;
  color:var(--frame-muted);
  font-size:13px;
  line-height:1.45;
}

body[data-page="feature-detail"] .feature-report-page{
  display:grid;
  align-content:start;
  gap:12px;
  background:
    linear-gradient(180deg,rgba(245,249,255,.94),rgba(255,255,255,.98)),
    radial-gradient(circle at 100% 0%,rgba(20,87,255,.12),transparent 42%);
}

body[data-page="feature-detail"] .feature-report-score{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 14px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:15px;
  background:#fff;
}

body[data-page="feature-detail"] .feature-report-score b{
  color:var(--frame-muted);
  font-size:13px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-report-score em{
  color:#0b3fbd;
  font-size:13px;
  font-style:normal;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-report-summary{
  display:grid;
  align-content:start;
  gap:12px;
}

body[data-page="feature-detail"] .feature-report-summary article{
  padding:16px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:16px;
  background:#fff;
}

body[data-page="feature-detail"] .feature-report-summary b{
  display:block;
  color:var(--frame-ink);
  font-size:14px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-report-summary p{
  margin:7px 0 0;
  color:var(--frame-muted);
  font-size:13px;
  line-height:1.45;
}

body[data-page="feature-detail"] .feature-trust-status{
  display:grid;
  align-content:start;
  gap:12px;
}

body[data-page="feature-detail"] .feature-trust-status div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:15px;
  background:#fff;
}

body[data-page="feature-detail"] .feature-trust-status b{
  color:var(--frame-muted);
  font-size:13px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-trust-status em{
  color:#0b3fbd;
  font-size:12px;
  font-style:normal;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-checklist-panel{
  display:grid;
  align-content:start;
  gap:12px;
}

body[data-page="feature-detail"] .feature-checklist-panel label{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:48px;
  padding:12px 13px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:15px;
  background:#fff;
  color:var(--frame-ink);
  font-size:14px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-checklist-panel i{
  width:18px;
  height:18px;
  flex:0 0 auto;
  border:2px solid rgba(20,87,255,.34);
  border-radius:6px;
  background:linear-gradient(135deg,rgba(20,87,255,.16),rgba(255,255,255,.8));
  box-shadow:inset 0 0 0 3px #fff;
}

body[data-page="feature-detail"] .feature-match-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}

body[data-page="feature-detail"] .feature-match-tags em{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  background:var(--frame-blue-soft);
  color:#0b3fbd;
  font-size:12px;
  font-style:normal;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-lines{
  display:grid;
  gap:11px;
  margin-top:28px;
}

body[data-page="feature-detail"] .feature-lines i{
  display:block;
  height:9px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(7,26,68,.28),rgba(20,87,255,.14));
}

body[data-page="feature-detail"] .feature-lines i:nth-child(2){width:86%;}
body[data-page="feature-detail"] .feature-lines i:nth-child(3){width:72%;}
body[data-page="feature-detail"] .feature-lines i:nth-child(4){width:54%;}

body[data-page="feature-detail"] .feature-manuscript-sheet em{
  display:inline-flex;
  margin-top:34px;
  padding:9px 12px;
  border-radius:999px;
  background:var(--frame-blue-soft);
  color:#0b3fbd;
  font-size:12px;
  font-style:normal;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-flow-arrow{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  color:var(--frame-blue);
  font-size:22px;
  box-shadow:0 12px 32px rgba(20,87,255,.14);
}

body[data-page="feature-detail"] .feature-signal-panel{
  display:grid;
  align-content:start;
  gap:12px;
}

body[data-page="feature-detail"] .feature-signal-panel div,
body[data-page="feature-detail"] .feature-shortlist-panel div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:13px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:15px;
  background:#fff;
}

body[data-page="feature-detail"] .feature-signal-panel b{
  color:var(--frame-muted);
  font-size:13px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-signal-panel strong,
body[data-page="feature-detail"] .feature-shortlist-panel strong{
  color:#0b3fbd;
  font-size:13px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-shortlist-panel{
  display:grid;
  align-content:start;
  gap:12px;
}

body[data-page="feature-detail"] .feature-shortlist-panel div{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
}

body[data-page="feature-detail"] .feature-shortlist-panel b{
  color:var(--frame-ink);
  font-size:14px;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-shortlist-panel small{
  grid-column:1 / -1;
  width:100%;
  color:var(--frame-muted);
  font-size:12px;
  line-height:1.4;
}

body[data-page="feature-detail"] .feature-detail-section{
  margin-top:76px;
}

body[data-page="feature-detail"] .feature-detail-section-head{
  max-width:680px;
  margin-bottom:28px;
}

body[data-page="feature-detail"] .feature-detail-section h2,
body[data-page="feature-detail"] .feature-detail-final h2{
  margin:0;
  color:var(--frame-ink);
  font-size:clamp(32px,3vw,36px);
  line-height:1.15;
  font-weight:600;
  letter-spacing:-.035em;
}

body[data-page="feature-detail"] .feature-detail-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

body[data-page="feature-detail"] .feature-detail-grid-three{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

body[data-page="feature-detail"] .feature-detail-card{
  min-height:210px;
  padding:24px;
  border:1px solid rgba(162,181,220,.38);
  border-radius:24px;
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 44px rgba(19,42,82,.08);
  transition:border-color .22s ease-out, transform .22s ease-out, box-shadow .22s ease-out;
}

body[data-page="feature-detail"] .feature-detail-card:hover{
  transform:translateY(-2px);
  border-color:rgba(20,87,255,.42);
  box-shadow:0 22px 50px rgba(20,87,255,.12);
}

body[data-page="feature-detail"] .feature-detail-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:var(--frame-blue-soft);
  color:var(--frame-blue);
}

body[data-page="feature-detail"] .feature-detail-icon svg{
  width:23px;
  height:23px;
}

body[data-page="feature-detail"] .feature-detail-icon path{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="feature-detail"] .feature-detail-card h3{
  margin:22px 0 0;
  color:var(--frame-ink);
  font-size:21px;
  line-height:1.22;
  font-weight:600;
}

body[data-page="feature-detail"] .feature-detail-card p,
body[data-page="feature-detail"] .feature-detail-final p{
  max-width:620px;
  margin:10px 0 0;
  color:var(--frame-muted);
  font-size:15px;
  line-height:1.56;
}

body[data-page="feature-detail"] .feature-detail-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:76px;
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at right, rgba(20,87,255,.12), transparent 38%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="feature-detail"] .feature-detail-footer{
  margin:72px calc(50% - 50vw) 0;
  padding:56px max(24px,calc((100vw - 1180px) / 2)) 34px;
  background:#071a44;
  color:#dce7ff;
}

body[data-page="feature-detail"] .frame-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .8fr .7fr 1.1fr;
  gap:34px;
  align-items:start;
}

body[data-page="feature-detail"] .frame-footer-logo{
  width:128px;
  height:auto;
  opacity:1;
}

body[data-page="feature-detail"] .frame-footer p{
  max-width:320px;
  margin:16px 0 0;
  color:#c2d0ea;
  font-size:15px;
  line-height:1.6;
}

body[data-page="feature-detail"] .frame-footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

body[data-page="feature-detail"] .frame-footer nav{
  display:grid;
  gap:10px;
}

body[data-page="feature-detail"] .frame-footer a{
  color:#c2d0ea;
  font-size:14px;
  text-decoration:none;
}

body[data-page="feature-detail"] .frame-footer a:hover{
  color:#fff;
}

body[data-page="feature-detail"] .frame-newsletter{
  display:flex;
  gap:8px;
}

body[data-page="feature-detail"] .frame-newsletter input{
  min-width:0;
  width:100%;
  height:44px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
}

body[data-page="feature-detail"] .frame-newsletter button{
  height:44px;
  padding:0 15px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:#0b3fbd;
  font:inherit;
  font-weight:650;
}

body[data-page="feature-detail"] .frame-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
}

body[data-page="feature-detail"] .frame-social-links{
  display:flex;
  gap:10px;
}

body[data-page="feature-detail"] .frame-social-links a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:12px;
  font-weight:650;
}

body[data-page="feature-detail"].motion-ready [data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .28s ease-out, transform .28s ease-out;
}

body[data-page="feature-detail"].motion-ready [data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

body[data-page="feature-detail"].motion-ready .feature-profile-preview{
  animation:featureDetailPreviewIn .36s ease-out both .08s;
}

@keyframes featureDetailPreviewIn{
  from{opacity:0; transform:translateY(14px) scale(.985);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

@media (max-width:1100px){
  body[data-page="feature-detail"] .feature-detail-hero,
  body[data-page="feature-detail"] .frame-footer-grid{
    grid-template-columns:1fr;
  }

  body[data-page="feature-detail"] .feature-detail-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body[data-page="feature-detail"] .feature-detail-final{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:760px){
  body[data-page="feature-detail"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="feature-detail"] .site-nav,
  body[data-page="feature-detail"] .site-auth-link{
    display:none;
  }

  body[data-page="feature-detail"] .feature-detail-page{
    width:min(100% - 28px,1180px);
    padding-top:28px;
  }

  body[data-page="feature-detail"] .feature-detail-hero{
    min-height:auto;
    padding:36px 0 54px;
  }

  body[data-page="feature-detail"] .feature-detail-hero h1{
    font-size:40px;
  }

  body[data-page="feature-detail"] .feature-preview-flow,
  body[data-page="feature-detail"] .feature-match-preview,
  body[data-page="feature-detail"] .feature-trust-preview,
  body[data-page="feature-detail"] .feature-compare-preview,
  body[data-page="feature-detail"] .feature-advisory-preview,
  body[data-page="feature-detail"] .feature-detail-grid{
    grid-template-columns:1fr;
  }

  body[data-page="feature-detail"] .feature-flow-arrow{
    transform:rotate(90deg);
    margin:auto;
  }

  body[data-page="feature-detail"] .feature-detail-final{
    padding:24px 20px;
    border-radius:24px;
  }

  body[data-page="feature-detail"] .feature-detail-actions,
  body[data-page="feature-detail"] .frame-newsletter,
  body[data-page="feature-detail"] .frame-footer-bottom{
    flex-direction:column;
    align-items:stretch;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="feature-detail"] *,
  body[data-page="feature-detail"] *::before,
  body[data-page="feature-detail"] *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* Solutions by user type */
body[data-page="solutions"]{
  --frame-ink:#071a44;
  --frame-muted:#5e6f89;
  --frame-blue:#1457ff;
  --frame-blue-strong:#0a3cc9;
  --frame-blue-soft:#eef5ff;
  --frame-border:#d7e4ff;
  margin:0;
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(20,87,255,.12), transparent 30%),
    radial-gradient(circle at 12% 42%, rgba(70,132,255,.08), transparent 28%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 46%,#eef3fb 100%);
  color:var(--frame-ink);
  font-family:var(--site-font-ui);
}

body[data-page="solutions"] .solutions-shell{
  max-width:none;
  padding:0;
}

body[data-page="solutions"] .landing-topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:minmax(180px,1fr) auto minmax(220px,1fr);
  min-height:76px;
  margin:0;
  padding:0 clamp(24px,4vw,56px);
  border:0;
  border-bottom:1px solid rgba(7,26,68,.07);
  border-radius:0;
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px rgba(7,26,68,.07);
  backdrop-filter:blur(18px);
}

body[data-page="solutions"] .site-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

body[data-page="solutions"] .site-brand-logo{
  width:auto;
  height:48px;
  max-width:190px;
  object-fit:contain;
}

body[data-page="solutions"] .site-brand-text{
  display:none;
}

body[data-page="solutions"] .site-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:30px;
}

body[data-page="solutions"] .site-nav a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:rgba(7,26,68,.7);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease-out;
}

body[data-page="solutions"] .site-nav a:hover,
body[data-page="solutions"] .site-nav a.active,
body[data-page="solutions"] .site-auth-link:hover{
  color:var(--frame-blue);
}

body[data-page="solutions"] .site-nav-caret{
  color:rgba(7,26,68,.46);
  font-size:16px;
}

body[data-page="solutions"] .site-topbar-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:18px;
}

body[data-page="solutions"] .site-auth-link{
  color:rgba(7,26,68,.74);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="solutions"] .site-button.primary{
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  font-size:15px;
  font-weight:600;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
}

body[data-page="solutions"] .solutions-page{
  width:min(100% - 48px,1180px);
  margin:0 auto;
  padding:54px 0 0;
}

body[data-page="solutions"] .solutions-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  align-items:center;
  gap:58px;
  min-height:500px;
  padding:42px 0 62px;
}

body[data-page="solutions"] .solutions-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin:0 0 18px;
  padding:8px 13px;
  border:1px solid rgba(20,87,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#0b3fbd;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}

body[data-page="solutions"] .solutions-hero h1{
  max-width:820px;
  margin:0;
  color:var(--frame-ink);
  font-size:clamp(48px,5vw,56px);
  line-height:1.08;
  font-weight:600;
  letter-spacing:-.045em;
}

body[data-page="solutions"] .solutions-lead{
  max-width:620px;
  margin:22px 0 0;
  color:var(--frame-muted);
  font-size:18px;
  line-height:1.55;
}

body[data-page="solutions"] .solutions-route-card{
  position:relative;
  overflow:hidden;
  padding:30px;
  border:1px solid rgba(162,181,220,.4);
  border-radius:30px;
  background:rgba(255,255,255,.88);
  box-shadow:0 28px 70px rgba(19,42,82,.14);
}

body[data-page="solutions"] .solutions-route-card::before{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:210px;
  height:210px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(20,87,255,.16),transparent 68%);
}

body[data-page="solutions"] .solutions-route-card span{
  display:block;
  color:#6b7890;
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}

body[data-page="solutions"] .solutions-route-card strong{
  position:relative;
  z-index:1;
  display:block;
  margin-top:12px;
  color:var(--frame-ink);
  font-size:27px;
  line-height:1.12;
  font-weight:600;
}

body[data-page="solutions"] .solutions-route-card div{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:26px;
}

body[data-page="solutions"] .solutions-route-card em{
  padding:12px;
  border:1px solid rgba(162,181,220,.32);
  border-radius:16px;
  background:#fff;
  color:#0b3fbd;
  font-style:normal;
  font-size:13px;
  font-weight:600;
}

body[data-page="solutions"] .solutions-section,
body[data-page="solutions"] .solutions-workflow{
  margin-top:72px;
}

body[data-page="solutions"] .solutions-section-head{
  max-width:660px;
  margin-bottom:28px;
}

body[data-page="solutions"] .solutions-section h2,
body[data-page="solutions"] .solutions-workflow h2,
body[data-page="solutions"] .solutions-final h2{
  margin:0;
  color:var(--frame-ink);
  font-size:clamp(32px,3vw,36px);
  line-height:1.15;
  font-weight:600;
  letter-spacing:-.035em;
}

body[data-page="solutions"] .solutions-use-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

body[data-page="solutions"] .solutions-use-card{
  min-height:245px;
  padding:24px;
  border:1px solid rgba(162,181,220,.38);
  border-radius:24px;
  background:rgba(255,255,255,.88);
  box-shadow:0 18px 44px rgba(19,42,82,.08);
  transition:border-color .22s ease-out, transform .22s ease-out, box-shadow .22s ease-out;
}

body[data-page="solutions"] .solutions-use-card:hover{
  transform:translateY(-2px);
  border-color:rgba(20,87,255,.42);
  box-shadow:0 22px 50px rgba(20,87,255,.12);
}

body[data-page="solutions"] .solutions-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:var(--frame-blue-soft);
  color:var(--frame-blue);
}

body[data-page="solutions"] .solutions-icon svg{
  width:23px;
  height:23px;
}

body[data-page="solutions"] .solutions-icon path{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body[data-page="solutions"] .solutions-use-card h3{
  margin:22px 0 0;
  color:var(--frame-ink);
  font-size:21px;
  line-height:1.22;
  font-weight:600;
}

body[data-page="solutions"] .solutions-use-card p{
  margin:10px 0 0;
  color:var(--frame-muted);
  font-size:15px;
  line-height:1.56;
}

body[data-page="solutions"] .solutions-use-card a{
  display:inline-flex;
  margin-top:22px;
  color:var(--frame-blue);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}

body[data-page="solutions"] .solutions-workflow{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  align-items:start;
  gap:34px;
  padding:38px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at 15% 12%, rgba(20,87,255,.1), transparent 34%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="solutions"] .solutions-step-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

body[data-page="solutions"] .solutions-step{
  min-height:170px;
  padding:20px;
  border:1px solid rgba(162,181,220,.34);
  border-radius:20px;
  background:#fff;
}

body[data-page="solutions"] .solutions-step span{
  color:#0b3fbd;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
}

body[data-page="solutions"] .solutions-step h3{
  margin:20px 0 0;
  color:var(--frame-ink);
  font-size:20px;
  line-height:1.2;
  font-weight:600;
}

body[data-page="solutions"] .solutions-step p{
  margin:10px 0 0;
  color:var(--frame-muted);
  font-size:14px;
  line-height:1.5;
}

body[data-page="solutions"] .solutions-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:76px;
  padding:42px;
  border:1px solid rgba(162,181,220,.36);
  border-radius:32px;
  background:radial-gradient(circle at right, rgba(20,87,255,.12), transparent 38%), #fff;
  box-shadow:0 22px 60px rgba(19,42,82,.1);
}

body[data-page="solutions"] .solutions-final p{
  max-width:620px;
  margin:10px 0 0;
  color:var(--frame-muted);
  font-size:16px;
  line-height:1.55;
}

body[data-page="solutions"] .solutions-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}

body[data-page="solutions"] .solutions-button{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:border-color .22s ease-out, background .22s ease-out, color .22s ease-out, transform .22s ease-out;
}

body[data-page="solutions"] .solutions-button:hover{
  transform:translateY(-1px);
}

body[data-page="solutions"] .solutions-button.primary{
  border:1px solid var(--frame-blue);
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;
  box-shadow:0 16px 34px rgba(20,87,255,.22);
}

body[data-page="solutions"] .solutions-button.secondary{
  border:1px solid rgba(7,26,68,.12);
  background:#fff;
  color:var(--frame-ink);
}

body[data-page="solutions"] .solutions-button.secondary:hover{
  border-color:rgba(20,87,255,.32);
  color:var(--frame-blue);
}

body[data-page="solutions"] .solutions-footer{
  margin:72px calc(50% - 50vw) 0;
  padding:56px max(24px,calc((100vw - 1180px) / 2)) 34px;
  background:#071a44;
  color:#dce7ff;
}

body[data-page="solutions"] .frame-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .8fr .7fr 1.1fr;
  gap:34px;
  align-items:start;
}

body[data-page="solutions"] .frame-footer-logo{
  width:128px;
  height:auto;
  opacity:1;
}

body[data-page="solutions"] .frame-footer p{
  max-width:320px;
  margin:16px 0 0;
  color:#c2d0ea;
  font-size:15px;
  line-height:1.6;
}

body[data-page="solutions"] .frame-footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

body[data-page="solutions"] .frame-footer nav{
  display:grid;
  gap:10px;
}

body[data-page="solutions"] .frame-footer a{
  color:#c2d0ea;
  font-size:14px;
  text-decoration:none;
}

body[data-page="solutions"] .frame-footer a:hover{
  color:#fff;
}

body[data-page="solutions"] .frame-newsletter{
  display:flex;
  gap:8px;
}

body[data-page="solutions"] .frame-newsletter input{
  min-width:0;
  width:100%;
  height:44px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
}

body[data-page="solutions"] .frame-newsletter button{
  height:44px;
  padding:0 15px;
  border:0;
  border-radius:12px;
  background:#fff;
  color:#0b3fbd;
  font:inherit;
  font-weight:650;
}

body[data-page="solutions"] .frame-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
}

body[data-page="solutions"] .frame-social-links{
  display:flex;
  gap:10px;
}

body[data-page="solutions"] .frame-social-links a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:12px;
  font-weight:650;
}

body[data-page="solutions"].motion-ready [data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .28s ease-out, transform .28s ease-out;
}

body[data-page="solutions"].motion-ready [data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

body[data-page="solutions"].motion-ready .solutions-use-card{
  animation:solutionsCardIn .32s ease-out both;
}

body[data-page="solutions"].motion-ready .solutions-use-card:nth-child(2){animation-delay:.06s;}
body[data-page="solutions"].motion-ready .solutions-use-card:nth-child(3){animation-delay:.12s;}
body[data-page="solutions"].motion-ready .solutions-use-card:nth-child(4){animation-delay:.18s;}

@keyframes solutionsCardIn{
  from{opacity:0; transform:translateY(12px) scale(.985);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

@media (max-width:1100px){
  body[data-page="solutions"] .solutions-hero,
  body[data-page="solutions"] .solutions-workflow,
  body[data-page="solutions"] .frame-footer-grid{
    grid-template-columns:1fr;
  }

  body[data-page="solutions"] .solutions-use-grid,
  body[data-page="solutions"] .solutions-step-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body[data-page="solutions"] .solutions-final{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:760px){
  body[data-page="solutions"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:68px;
    padding:0 18px;
  }

  body[data-page="solutions"] .site-nav,
  body[data-page="solutions"] .site-auth-link{
    display:none;
  }

  body[data-page="solutions"] .solutions-page{
    width:min(100% - 28px,1180px);
    padding-top:28px;
  }

  body[data-page="solutions"] .solutions-hero{
    min-height:auto;
    padding:36px 0 54px;
  }

  body[data-page="solutions"] .solutions-hero h1{
    font-size:40px;
  }

  body[data-page="solutions"] .solutions-use-grid,
  body[data-page="solutions"] .solutions-step-grid{
    grid-template-columns:1fr;
  }

  body[data-page="solutions"] .solutions-workflow,
  body[data-page="solutions"] .solutions-final{
    padding:24px 20px;
    border-radius:24px;
  }

  body[data-page="solutions"] .solutions-actions,
  body[data-page="solutions"] .frame-newsletter,
  body[data-page="solutions"] .frame-footer-bottom{
    flex-direction:column;
    align-items:stretch;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="solutions"] *,
  body[data-page="solutions"] *::before,
  body[data-page="solutions"] *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* Landing brand scale adjustment: make the Frame mark read clearly in the navbar. */
body[data-page="landing"] .landing-topbar{
  grid-template-columns:minmax(334px,1fr) auto minmax(220px,1fr);
  min-height:98px;
}

body[data-page="landing"] .site-brand{
  min-width:329px;
}

body[data-page="landing"] .site-brand-logo{
  height:83px;
  max-width:329px;
}

@media (max-width:760px){
  body[data-page="landing"] .landing-topbar{
    grid-template-columns:1fr auto;
    min-height:74px;
  }

  body[data-page="landing"] .site-brand{
    min-width:0;
  }

body[data-page="landing"] .site-brand-logo{
    height:58px;
    max-width:228px;
  }
}

/* Faz 2 minor UI polish: keep the current layouts, but align active pages with Frame blue. */
:root{
  --frame-polish-blue:#1e63ff;
  --frame-polish-blue-strong:#0d45c7;
  --frame-polish-blue-soft:#eef5ff;
  --frame-polish-navy:#061b4f;
  --frame-polish-line:rgba(18,42,82,.10);
  --frame-polish-shadow:0 16px 40px rgba(15,35,75,.10);
}

.site-button.primary,
.auth-topbar-button,
.auth-main-submit,
.plan-button,
.onboarding-action.primary,
.onboarding-finish,
body[data-page="pricing"] .pricing-button.primary,
body[data-page="product"] .product-button.primary,
body[data-page="resources"] .resources-button.primary,
body[data-page="features"] .features-button.primary,
body[data-page="solutions"] .solutions-button.primary{
  background:linear-gradient(135deg,var(--frame-polish-blue),var(--frame-polish-blue-strong)) !important;
  border-color:transparent !important;
  color:#fff !important;
  box-shadow:0 14px 30px rgba(30,99,255,.18) !important;
  font-weight:700 !important;
  letter-spacing:-.01em !important;
}

.site-button.primary:hover,
.auth-topbar-button:hover,
.auth-main-submit:hover,
.plan-button:hover,
.onboarding-action.primary:hover,
.onboarding-finish:hover,
body[data-page="pricing"] .pricing-button.primary:hover,
body[data-page="product"] .product-button.primary:hover,
body[data-page="resources"] .resources-button.primary:hover,
body[data-page="features"] .features-button.primary:hover,
body[data-page="solutions"] .solutions-button.primary:hover{
  box-shadow:0 18px 36px rgba(30,99,255,.22) !important;
}

.site-button.subtle,
.plan-button.secondary,
.onboarding-action.secondary,
.auth-google-button{
  border-color:rgba(30,99,255,.18) !important;
  background:#fff !important;
  color:var(--frame-polish-blue-strong) !important;
  font-weight:650 !important;
}

.site-button.subtle:hover,
.plan-button.secondary:hover,
.onboarding-action.secondary:hover,
.auth-google-button:hover{
  border-color:rgba(30,99,255,.34) !important;
  background:#f8fbff !important;
  color:var(--frame-polish-blue) !important;
}

.auth-trial-panel h1,
.auth-form-wrap h2,
.plan-select-wrap h2,
.onboarding-copy h1,
body[data-page="pricing"] .pricing-hero h1,
body[data-page="product"] .product-hero h1,
body[data-page="resources"] .resources-hero h1{
  font-weight:600 !important;
  letter-spacing:-.035em !important;
}

.auth-form label,
.auth-tab,
.auth-stepper li,
.plan-label,
.plan-card h3,
.onboarding-question h2,
.onboarding-choice-grid button{
  font-weight:650 !important;
}

.auth-trial-panel,
.auth-form-panel,
.plan-card,
.onboarding-question,
.onboarding-preview-card{
  border-color:var(--frame-polish-line) !important;
  box-shadow:var(--frame-polish-shadow) !important;
}

.auth-timeline-icon,
.auth-stepper li.active span,
.auth-stepper li.done span,
.plan-billing-toggle button.active,
.plan-bell,
.plan-avatar{
  background:var(--frame-polish-blue) !important;
  color:#fff !important;
}

.auth-tab.active,
.onboarding-choice-grid button.selected{
  border-color:var(--frame-polish-blue) !important;
  background:var(--frame-polish-blue-soft) !important;
  color:var(--frame-polish-blue-strong) !important;
}

.onboarding-action.text,
.auth-switch-line button{
  color:var(--frame-polish-blue-strong) !important;
}

.auth-main-submit:disabled,
.onboarding-action.primary:disabled,
.onboarding-finish:disabled{
  background:#d8e1ef !important;
  color:#7a8798 !important;
  box-shadow:none !important;
}

/* Auth load stability: keep the signed-in notice from pushing the form after hydration. */
body[data-page="auth"] .auth-page-shell{
  grid-template-columns:minmax(340px,.82fr) minmax(460px,1fr) !important;
  gap:clamp(44px,6vw,96px) !important;
  align-items:center !important;
}

body[data-page="auth"] .auth-trial-panel{
  max-width:470px !important;
  padding:38px !important;
  border:1px solid rgba(18,93,255,.08) !important;
  border-radius:30px !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(18,93,255,.08), transparent 34%),
    rgba(255,255,255,.62) !important;
  box-shadow:0 24px 70px rgba(7,26,68,.07) !important;
  backdrop-filter:blur(16px) !important;
}

body[data-page="auth"] .auth-trial-panel h1{
  max-width:410px !important;
  font-size:clamp(36px,3.8vw,50px) !important;
  line-height:1.06 !important;
}

body[data-page="auth"] .auth-side-note{
  max-width:360px !important;
  margin-top:18px !important;
}

body[data-page="auth"] .auth-value-list{
  gap:12px !important;
  margin-top:30px !important;
}

body[data-page="auth"] .auth-value-list li{
  padding-left:28px !important;
  font-size:15px !important;
}

body[data-page="auth"] .auth-value-list li::before{
  width:16px !important;
  height:16px !important;
  box-shadow:0 0 0 5px rgba(18,93,255,.07) !important;
}

body[data-page="auth"] .auth-form-panel{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  box-shadow:none !important;
}

body[data-page="auth"] .auth-side-v2,
body[data-page="auth"] .auth-card-v2{
  opacity:1 !important;
  transform:none !important;
  transition:none !important;
}

body[data-page="auth"] .auth-stepper{
  width:min(100%,620px) !important;
  margin:0 auto 34px !important;
  justify-content:center !important;
}

body[data-page="auth"] .auth-form-wrap{
  width:min(100%,500px) !important;
  padding:38px !important;
}

body[data-page="auth"] .auth-form-wrap h2{
  margin-bottom:22px !important;
  font-size:clamp(30px,2.8vw,36px) !important;
}

body[data-page="auth"] .auth-banner-slot{
  display:block !important;
  min-height:72px !important;
  margin:0 0 18px !important;
  padding:14px 16px !important;
  border:1px solid #bdd0ff !important;
  border-radius:14px !important;
  line-height:1.45 !important;
  transition:opacity .18s ease, visibility .18s ease, border-color .18s ease, background .18s ease;
}

body[data-page="auth"] .auth-banner-slot.is-empty{
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

body[data-page="auth"] .auth-form input{
  min-height:58px !important;
}

body[data-page="auth"] .auth-main-submit{
  min-height:58px !important;
}

body[data-page="auth"] .auth-main-submit:disabled{
  cursor:wait !important;
  opacity:.72 !important;
  transform:none !important;
  filter:none !important;
  box-shadow:none !important;
}

body[data-page="auth"] .auth-topbar{
  min-height:92px !important;
}

body[data-page="auth"] .auth-logo{
  width:220px !important;
  height:72px !important;
}

body[data-page="auth"] .auth-route-animation{
  position:relative;
  width:min(100%, 360px);
  height:92px;
  margin-top:30px;
  border:1px solid rgba(30,99,255,.10);
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(246,250,255,.84));
  overflow:hidden;
}

body[data-page="auth"] .auth-route-animation::before{
  content:"";
  position:absolute;
  inset:14px 18px;
  border-radius:16px;
  background:
    linear-gradient(90deg, rgba(30,99,255,.10) 0 1px, transparent 1px 100%) 0 0 / 42px 100%,
    linear-gradient(0deg, rgba(30,99,255,.08) 0 1px, transparent 1px 100%) 0 0 / 100% 28px;
  opacity:.65;
}

body[data-page="auth"] .auth-route-track{
  position:absolute;
  left:44px;
  right:44px;
  top:46px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(30,99,255,.18), rgba(30,99,255,.46), rgba(30,99,255,.18));
}

body[data-page="auth"] .auth-route-node{
  position:absolute;
  top:35px;
  width:22px;
  height:22px;
  border:2px solid rgba(30,99,255,.34);
  border-radius:8px;
  background:#fff;
  box-shadow:0 8px 20px rgba(30,99,255,.10);
}

body[data-page="auth"] .auth-route-node::after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:4px;
  background:#1e63ff;
}

body[data-page="auth"] .auth-route-node.node-one{ left:34px; }
body[data-page="auth"] .auth-route-node.node-two{ left:calc(50% - 11px); }
body[data-page="auth"] .auth-route-node.node-three{ right:34px; }

body[data-page="auth"] .auth-route-scan{
  position:absolute;
  top:40px;
  left:42px;
  width:28px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(30,99,255,.72), transparent);
  filter:blur(1px);
  animation:authRouteScan 3.4s ease-in-out infinite;
}

body[data-page="auth"] .auth-route-card{
  position:absolute;
  width:58px;
  height:12px;
  border-radius:999px;
  background:rgba(30,99,255,.13);
}

body[data-page="auth"] .auth-route-card.card-one{
  left:28px;
  bottom:18px;
  animation:authRouteLift 4.4s ease-in-out infinite;
}

body[data-page="auth"] .auth-route-card.card-two{
  right:28px;
  top:18px;
  width:72px;
  animation:authRouteLift 4.4s ease-in-out infinite reverse;
}

@keyframes authRouteScan{
  0%, 14%{ transform:translateX(0); opacity:.25; }
  48%{ opacity:.88; }
  86%, 100%{ transform:translateX(250px); opacity:.25; }
}

@keyframes authRouteLift{
  0%, 100%{ transform:translateY(0); opacity:.60; }
  50%{ transform:translateY(-5px); opacity:.92; }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="auth"] .auth-route-scan,
  body[data-page="auth"] .auth-route-card{
    animation:none !important;
  }
}

@media (max-width: 980px){
  body[data-page="auth"] .auth-page-shell{
    grid-template-columns:1fr !important;
  }

  body[data-page="auth"] .auth-trial-panel{
    max-width:620px !important;
    padding:32px !important;
  }

  body[data-page="auth"] .auth-logo{
    width:190px !important;
    height:64px !important;
  }
}

@media (max-width: 680px){
  body[data-page="auth"] .auth-topbar{
    min-height:78px !important;
  }

  body[data-page="auth"] .auth-logo{
    width:168px !important;
    height:56px !important;
  }

  body[data-page="auth"] .auth-trial-panel{
    padding:26px 22px !important;
  }

  body[data-page="auth"] .auth-form-wrap{
    padding:28px 20px !important;
  }

  body[data-page="auth"] .auth-banner-slot{
    min-height:88px !important;
  }
}

/* Landing polish pass: compact footer and clearer decision signal layer. */
body[data-page="landing"] .frame-footer{
  padding:34px 80px 24px !important;
  min-height:0 !important;
}

body[data-page="landing"] .frame-footer-grid{
  gap:32px !important;
  align-items:start !important;
}

body[data-page="landing"] .frame-footer-logo{
  width:180px !important;
  max-width:100% !important;
}

body[data-page="landing"] .frame-footer p{
  max-width:270px !important;
  margin-top:12px !important;
  font-size:16px !important;
  line-height:1.45 !important;
}

body[data-page="landing"] .frame-footer nav{
  gap:9px !important;
}

body[data-page="landing"] .frame-footer-bottom{
  margin-top:26px !important;
  padding-top:12px !important;
}

body[data-page="landing"] .frame-signal-system{
  position:relative;
  display:grid !important;
  gap:18px !important;
  padding:24px !important;
  border:1px solid rgba(156,194,255,.54) !important;
  border-radius:34px !important;
  background:
    radial-gradient(circle at 16% 18%, rgba(30,99,255,.14), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(42,165,134,.13), transparent 28%),
    linear-gradient(135deg, rgba(242,247,255,.96), rgba(249,252,255,.98)) !important;
  box-shadow:0 24px 60px rgba(7,26,68,.10) !important;
}

body[data-page="landing"] .frame-signal-system::before{
  content:"";
  position:absolute;
  inset:13px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.70);
  pointer-events:none;
}

body[data-page="landing"] .frame-signal-wall{
  position:relative;
  z-index:1;
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:12px !important;
}

body[data-page="landing"] .frame-signal-wall span,
body[data-page="landing"] .frame-signal-wall span:nth-child(2),
body[data-page="landing"] .frame-signal-wall span:nth-child(5){
  min-height:124px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:9px !important;
  padding:18px 14px !important;
  border:1px solid rgba(174,196,235,.46) !important;
  border-radius:24px !important;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(239,246,255,.90)) !important;
  color:#071a44 !important;
  text-align:center !important;
  box-shadow:0 14px 30px rgba(7,26,68,.07) !important;
}

body[data-page="landing"] .frame-signal-wall span:nth-child(1){
  background:linear-gradient(180deg, #ffffff, #edf6ff) !important;
}

body[data-page="landing"] .frame-signal-wall span:nth-child(2){
  background:linear-gradient(180deg, #ffffff, #f0fbf7) !important;
}

body[data-page="landing"] .frame-signal-wall span:nth-child(3){
  background:linear-gradient(180deg, #ffffff, #f3f1ff) !important;
}

body[data-page="landing"] .frame-signal-wall span:nth-child(4){
  background:linear-gradient(180deg, #ffffff, #eef8f3) !important;
}

body[data-page="landing"] .frame-signal-wall span:nth-child(5){
  background:linear-gradient(180deg, #ffffff, #fff7ed) !important;
}

body[data-page="landing"] .frame-signal-wall span i{
  width:38px !important;
  height:38px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:14px !important;
  background:#eaf3ff !important;
  color:#1e63ff !important;
  font-size:17px !important;
  line-height:1 !important;
  font-style:normal !important;
  grid-row:auto !important;
  align-self:center !important;
}

body[data-page="landing"] .frame-signal-wall span b{
  min-height:34px !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
  color:#071a44 !important;
  font-size:16px !important;
  line-height:1.12 !important;
  font-weight:700 !important;
  letter-spacing:0 !important;
}

body[data-page="landing"] .frame-signal-wall span small{
  min-height:30px !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:center !important;
  max-width:150px !important;
  color:#5c6c84 !important;
  font-size:13px !important;
  line-height:1.28 !important;
  font-weight:500 !important;
}

body[data-page="landing"] .frame-compare-preview{
  position:relative;
  z-index:1;
  padding:24px !important;
  border:1px solid rgba(174,196,235,.50) !important;
  background:rgba(255,255,255,.90) !important;
  box-shadow:0 18px 42px rgba(7,26,68,.08) !important;
}

body[data-page="landing"] .frame-compare-row{
  grid-template-columns:minmax(180px,1fr) minmax(92px,auto) minmax(118px,auto) minmax(112px,auto) !important;
  align-items:center !important;
}

@media (max-width:1120px){
  body[data-page="landing"] .frame-signal-wall{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:760px){
  body[data-page="landing"] .frame-footer{
    padding:30px 24px 22px !important;
  }

  body[data-page="landing"] .frame-signal-system{
    padding:18px !important;
  }

  body[data-page="landing"] .frame-signal-wall{
    grid-template-columns:1fr !important;
  }
}

/* Site topbar logo consistency: match landing scale across all marketing pages. */
body[data-page="landing"] .landing-topbar,
body[data-page="product"] .landing-topbar,
body[data-page="resources"] .landing-topbar,
body[data-page="pricing"] .landing-topbar,
body[data-page="features"] .landing-topbar,
body[data-page="feature-detail"] .landing-topbar,
body[data-page="solutions"] .landing-topbar{
  grid-template-columns:minmax(334px,1fr) auto minmax(220px,1fr) !important;
  min-height:98px !important;
}

body[data-page="landing"] .site-brand,
body[data-page="product"] .site-brand,
body[data-page="resources"] .site-brand,
body[data-page="pricing"] .site-brand,
body[data-page="features"] .site-brand,
body[data-page="feature-detail"] .site-brand,
body[data-page="solutions"] .site-brand{
  min-width:329px !important;
}

body[data-page="landing"] .site-brand-logo,
body[data-page="product"] .site-brand-logo,
body[data-page="resources"] .site-brand-logo,
body[data-page="pricing"] .site-brand-logo,
body[data-page="features"] .site-brand-logo,
body[data-page="feature-detail"] .site-brand-logo,
body[data-page="solutions"] .site-brand-logo{
  width:auto !important;
  height:83px !important;
  max-width:329px !important;
  object-fit:contain !important;
}

@media (max-width:760px){
  body[data-page="landing"] .landing-topbar,
  body[data-page="product"] .landing-topbar,
  body[data-page="resources"] .landing-topbar,
  body[data-page="pricing"] .landing-topbar,
  body[data-page="features"] .landing-topbar,
  body[data-page="feature-detail"] .landing-topbar,
  body[data-page="solutions"] .landing-topbar{
    grid-template-columns:1fr auto !important;
    min-height:74px !important;
  }

  body[data-page="landing"] .site-brand,
  body[data-page="product"] .site-brand,
  body[data-page="resources"] .site-brand,
  body[data-page="pricing"] .site-brand,
  body[data-page="features"] .site-brand,
  body[data-page="feature-detail"] .site-brand,
  body[data-page="solutions"] .site-brand{
    min-width:0 !important;
  }

  body[data-page="landing"] .site-brand-logo,
  body[data-page="product"] .site-brand-logo,
  body[data-page="resources"] .site-brand-logo,
  body[data-page="pricing"] .site-brand-logo,
  body[data-page="features"] .site-brand-logo,
  body[data-page="feature-detail"] .site-brand-logo,
  body[data-page="solutions"] .site-brand-logo{
    height:58px !important;
    max-width:228px !important;
  }
}

/* Landing-only navbar logo scale adjustment. */
@media (min-width:761px){
  body[data-page="landing"] .landing-topbar{
    grid-template-columns:minmax(360px,1fr) auto minmax(220px,1fr) !important;
  }

  body[data-page="landing"] .site-brand{
    min-width:357px !important;
  }

  body[data-page="landing"] .site-brand-logo{
    height:90px !important;
    max-width:357px !important;
  }
}

/* Landing hero and navbar final polish. */
body[data-page="landing"] .site-nav-item.has-dropdown > a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding-right:15px;
}

body[data-page="landing"] .site-nav-item.has-dropdown > a::after{
  content:"";
  width:6px;
  height:6px;
  flex:0 0 auto;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
}

body[data-page="landing"] .site-nav-item.has-dropdown .site-nav-toggle{
  position:absolute;
  right:0;
  top:50%;
  width:18px;
  height:24px;
  min-width:0;
  margin:0;
  padding:0;
  border:0;
  background:transparent !important;
  transform:translateY(-50%);
  opacity:0;
  z-index:2;
}

body[data-page="landing"] .site-nav-item.has-dropdown .site-nav-caret{
  display:none;
}

body[data-page="landing"] .site-nav > a:last-child{
  margin-left:12px;
}

body[data-page="landing"] .frame-hero{
  background:
    radial-gradient(circle at 10% 8%, rgba(18,93,255,.10), transparent 24%),
    radial-gradient(circle at 82% 26%, rgba(18,93,255,.20), transparent 30%),
    linear-gradient(135deg,#ffffff 0%,#f8fbff 52%,#eef5ff 100%);
}

body[data-page="landing"] .frame-hero-copy{
  position:relative;
  left:50px;
  text-align:center;
}

body[data-page="landing"] .frame-eyebrow{
  display:flex;
  width:max-content;
  margin-left:auto;
  margin-right:auto;
  background:#061b4f;
  border-color:#061b4f;
  color:#ffffff;
}

body[data-page="landing"] .frame-hero h1,
body[data-page="landing"] .frame-lead,
body[data-page="landing"] .frame-coverage-note{
  margin-left:auto;
  margin-right:auto;
}

body[data-page="landing"] .frame-hero-actions{
  justify-content:center;
}

/* Landing route builder final polish. */
body[data-page="landing"] .frame-preview-glow{
  width:min(760px,96%);
  height:420px;
  background:
    radial-gradient(
      circle,
      rgba(18,93,255,.34) 0%,
      rgba(18,93,255,.18) 38%,
      rgba(18,93,255,.07) 58%,
      transparent 76%
    );
  filter:blur(14px);
  opacity:1;
}

body[data-page="landing"] .frame-preview-window{
  border:1px solid rgba(66,123,255,.32);
  border-radius:30px;
  background:linear-gradient(145deg,#ffffff 0%,#f3f7ff 100%);
  box-shadow:
    0 42px 110px rgba(7,26,68,.22),
    0 0 0 1px rgba(18,93,255,.06),
    0 0 46px rgba(18,93,255,.13);
}

body[data-page="landing"] .frame-preview-top{
  min-height:66px;
  padding:0 20px;
  background:
    radial-gradient(circle at 72% 0%,rgba(92,150,255,.34),transparent 38%),
    linear-gradient(100deg,#020b26 0%,#061b4f 48%,#0d45c7 100%);
  border-bottom:1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,.10),
    0 8px 22px rgba(7,26,68,.14);
}

body[data-page="landing"] .frame-preview-top strong{
  margin-left:10px;
  color:#fff;
  font-size:16px;
  line-height:1;
  font-weight:700;
  letter-spacing:.01em;
}

body[data-page="landing"] .frame-preview-top > span{
  width:8px;
  height:8px;
  opacity:.72;
  animation:framePreviewDotPulse 1.35s ease-in-out infinite;
  transform-origin:center;
}

body[data-page="landing"] .frame-preview-top > span:nth-child(2){
  animation-delay:.16s;
}

body[data-page="landing"] .frame-preview-top > span:nth-child(3){
  animation-delay:.32s;
}

@keyframes framePreviewDotPulse{
  0%,70%,100%{
    opacity:.38;
    transform:translateY(0) scale(.9);
  }
  35%{
    opacity:1;
    transform:translateY(-2px) scale(1.12);
  }
}

body[data-page="landing"] .frame-preview-body{
  gap:18px;
  padding:24px;
  background:
    radial-gradient(circle at 88% 10%,rgba(18,93,255,.055),transparent 34%),
    linear-gradient(180deg,rgba(250,252,255,.88),rgba(245,249,255,.92));
}

body[data-page="landing"] .frame-preview-doc,
body[data-page="landing"] .frame-preview-panel{
  border:1px solid rgba(18,93,255,.16);
  border-radius:24px;
  background:#fff;
  box-shadow:
    0 12px 30px rgba(7,26,68,.055),
    inset 0 1px 0 rgba(255,255,255,.9);
}

body[data-page="landing"] .frame-preview-doc{
  padding:28px 26px;
  background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
  border-color:rgba(18,93,255,.18);
}

body[data-page="landing"] .frame-preview-panel{
  gap:12px;
  padding:18px;
}

body[data-page="landing"] .frame-preview-doc > p,
body[data-page="landing"] .frame-preview-doc > h3{
  text-align:center;
}

body[data-page="landing"] .frame-preview-doc h3{
  color:#061b4f;
  font-size:24px;
  font-weight:700;
}

body[data-page="landing"] .frame-signal-chips{
  display:none;
}

body[data-page="landing"] .frame-doc-lines{
  width:100%;
  max-width:250px;
  margin:38px auto 0;
  gap:10px;
  justify-items:center;
}

body[data-page="landing"] .frame-doc-lines i{
  height:10px;
  margin:0 auto;
  animation:frameLoadingShimmer 2.6s ease-in-out infinite alternate;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(1){width:88%;}
body[data-page="landing"] .frame-doc-lines i:nth-child(2){width:72%;animation-delay:.18s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(3){width:94%;animation-delay:.34s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(4){width:64%;animation-delay:.18s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(5){width:82%;}
body[data-page="landing"] .frame-doc-lines i:nth-child(6){width:58%;animation-delay:.34s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(7){width:90%;}
body[data-page="landing"] .frame-doc-lines i:nth-child(8){width:69%;animation-delay:.18s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(9){width:80%;animation-delay:.34s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(10){width:52%;animation-delay:.18s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(11){width:86%;}
body[data-page="landing"] .frame-doc-lines i:nth-child(12){width:62%;animation-delay:.34s;}
body[data-page="landing"] .frame-doc-lines i:nth-child(13){width:76%;}

body[data-page="landing"] .frame-score-grid article{
  min-height:82px;
  padding:14px;
  border:1px solid rgba(18,93,255,.18);
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%,#edf4ff 100%);
  box-shadow:0 8px 20px rgba(18,93,255,.055);
}

body[data-page="landing"] .frame-score-grid article > span{
  display:block;
  padding-bottom:6px;
  margin-bottom:4px;
  border-bottom:1px solid rgba(18,93,255,.16);
  text-align:center;
  font-weight:700;
}

body[data-page="landing"] .frame-score-grid strong{
  display:block;
  margin-top:14px;
  color:#071a44;
  font-size:18px;
  font-weight:650;
  text-align:center;
}

body[data-page="landing"] .frame-score-grid article:nth-child(2) strong{
  position:relative;
  left:-3px;
}

body[data-page="landing"] .frame-score-grid article:nth-child(3) strong{
  position:relative;
  left:-1px;
}

body[data-page="landing"] .frame-journal-row{
  padding:15px 16px;
  border:1px solid rgba(18,93,255,.14);
  border-radius:18px;
  background:#fff;
  box-shadow:0 7px 18px rgba(7,26,68,.035);
}

body[data-page="landing"] .frame-journal-row b{
  color:#071a44;
  font-weight:650;
}

body[data-page="landing"] .frame-journal-row span{
  margin-left:5px;
  color:#6a7890;
}

@media (prefers-reduced-motion: reduce){
  body[data-page="landing"] .frame-preview-top > span{
    animation:none;
    opacity:.72;
    transform:none;
  }
}

/* Landing navbar explicit item order. */
body[data-page="landing"] .site-nav > .site-nav-item:nth-of-type(1){
  order:1;
}

body[data-page="landing"] .site-nav > .site-nav-item:nth-of-type(2){
  order:2;
}

body[data-page="landing"] .site-nav > .site-nav-item:has(> a[href="/resources"]){
  order:3;
}

body[data-page="landing"] .site-nav > a[href="/pricing"]{
  order:4;
}

body[data-page="landing"] .site-nav > a[href="/resources#contact"]{
  order:5;
}

/* Hide landing shortlist action card. */
body[data-page="landing"] .frame-compare-card{
  display:none !important;
}

/* Landing trust label: Source-based -> Sourced. */
body[data-page="landing"] .frame-score-grid article:nth-child(3) strong{
  font-size:0;
}

body[data-page="landing"] .frame-score-grid article:nth-child(3) strong::after{
  content:"Sourced";
  font-size:18px;
}

/* Landing preview title capitalization. */
body[data-page="landing"] .frame-preview-doc > h3{
  font-size:0;
}

body[data-page="landing"] .frame-preview-doc > h3::after{
  content:"Journal Route Ready";
  font-size:24px;
}

/* Landing route builder title capitalization. */
body[data-page="landing"] .frame-preview-top strong{
  text-transform:capitalize;
}

/* Landing manuscript loader: fixed 10 visible bars. */
body[data-page="landing"] .frame-doc-lines{
  position:relative;
  display:block;
  height:190px;
  min-height:190px;
}

body[data-page="landing"] .frame-doc-lines i{
  position:absolute;
  left:0;
  right:0;
  margin:0 auto;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(1){top:0;}
body[data-page="landing"] .frame-doc-lines i:nth-child(2){top:20px;}
body[data-page="landing"] .frame-doc-lines i:nth-child(3){top:40px;}
body[data-page="landing"] .frame-doc-lines i:nth-child(4){top:60px;}

body[data-page="landing"] .frame-doc-lines i:nth-child(n+5){
  display:none;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(-n+4)::before,
body[data-page="landing"] .frame-doc-lines i:nth-child(-n+2)::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:10px;
  margin:0 auto;
  border-radius:inherit;
  background:inherit;
  animation:frameLoadingShimmer 2.6s ease-in-out infinite alternate;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(1)::before{
  top:80px;
  width:93%;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(2)::before{
  top:80px;
  width:80%;
  animation-delay:.18s;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(3)::before{
  top:80px;
  width:96%;
  animation-delay:.34s;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(4)::before{
  top:80px;
  width:108%;
  animation-delay:.18s;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(1)::after{
  top:160px;
  width:91%;
  animation-delay:.34s;
}

body[data-page="landing"] .frame-doc-lines i:nth-child(2)::after{
  top:160px;
  width:72%;
  animation-delay:.18s;
}

/* Landing viewport-stable hero layout. */

/* Owner access remains available by URL, but never occupies public navbar space. */
#ownerPanelLink{
  display:none !important;
}

/* Desktop / laptop: keep both hero columns centered and proportional. */
body[data-page="landing"] .frame-hero{
  grid-template-columns:minmax(400px,.94fr) minmax(540px,1.06fr) !important;
  column-gap:clamp(36px,4.5vw,78px) !important;
  align-items:center !important;
  padding-left:clamp(32px,5vw,88px) !important;
  padding-right:clamp(32px,5vw,88px) !important;
}

body[data-page="landing"] .frame-hero-copy{
  position:relative !important;
  left:0 !important;
  width:min(100%,620px) !important;
  max-width:620px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-self:center !important;
}

body[data-page="landing"] .frame-product-preview{
  width:min(100%,720px) !important;
  max-width:720px !important;
  min-width:0 !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-self:center !important;
}

body[data-page="landing"] .frame-preview-window{
  width:100% !important;
  max-width:720px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Smaller laptops: preserve the same composition without horizontal drift. */
@media (min-width:981px) and (max-width:1280px){
  body[data-page="landing"] .frame-hero{
    grid-template-columns:minmax(360px,.92fr) minmax(500px,1.08fr) !important;
    column-gap:clamp(24px,3vw,42px) !important;
    padding-left:32px !important;
    padding-right:32px !important;
  }

  body[data-page="landing"] .frame-hero-copy{
    max-width:560px !important;
  }

  body[data-page="landing"] .frame-product-preview,
  body[data-page="landing"] .frame-preview-window{
    max-width:640px !important;
  }
}

/* Tablet / narrow viewport: switch cleanly to one centered column. */
@media (max-width:980px){
  body[data-page="landing"] .frame-hero{
    grid-template-columns:1fr !important;
    row-gap:40px !important;
    padding-left:28px !important;
    padding-right:28px !important;
  }

  body[data-page="landing"] .frame-hero-copy,
  body[data-page="landing"] .frame-product-preview{
    width:100% !important;
    max-width:680px !important;
    justify-self:center !important;
  }

  body[data-page="landing"] .frame-hero-copy{
    left:0 !important;
  }

  body[data-page="landing"] .frame-preview-window{
    width:100% !important;
    max-width:680px !important;
  }
}

/* Mobile. */
@media (max-width:760px){
  body[data-page="landing"] .frame-hero{
    padding-left:20px !important;
    padding-right:20px !important;
    row-gap:30px !important;
  }

  body[data-page="landing"] .frame-hero-copy,
  body[data-page="landing"] .frame-product-preview,
  body[data-page="landing"] .frame-preview-window{
    width:100% !important;
    max-width:100% !important;
  }
}

/* Landing hero fixed desktop composition. */
@media (min-width:1241px){
  body[data-page="landing"] .frame-hero{
    width:100% !important;
    max-width:1320px !important;
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:40px !important;
    padding-right:40px !important;

    grid-template-columns:520px 640px !important;
    column-gap:48px !important;
    justify-content:center !important;
    align-items:center !important;
  }

  body[data-page="landing"] .frame-hero-copy{
    position:static !important;
    left:auto !important;

    width:520px !important;
    min-width:520px !important;
    max-width:520px !important;

    margin:0 !important;
    justify-self:start !important;
    align-self:center !important;
  }

  body[data-page="landing"] .frame-product-preview{
    position:relative !important;

    width:640px !important;
    min-width:640px !important;
    max-width:640px !important;

    margin:0 !important;
    justify-self:start !important;
    align-self:center !important;
  }

  body[data-page="landing"] .frame-preview-window{
    width:640px !important;
    min-width:640px !important;
    max-width:640px !important;

    margin:0 !important;
  }

  body[data-page="landing"] .frame-preview-glow{
    left:50% !important;
    transform:translateX(-50%) !important;
  }
}

/* Smaller laptop/tablet: stop squeezing the desktop composition. */
@media (max-width:1240px){
  body[data-page="landing"] .frame-hero{
    grid-template-columns:1fr !important;
    justify-items:center !important;
    row-gap:42px !important;

    padding-left:28px !important;
    padding-right:28px !important;
  }

  body[data-page="landing"] .frame-hero-copy{
    position:static !important;
    left:auto !important;

    width:100% !important;
    max-width:620px !important;

    margin-left:auto !important;
    margin-right:auto !important;
    justify-self:center !important;
  }

  body[data-page="landing"] .frame-product-preview,
  body[data-page="landing"] .frame-preview-window{
    width:100% !important;
    max-width:680px !important;
    min-width:0 !important;

    margin-left:auto !important;
    margin-right:auto !important;
    justify-self:center !important;
  }
}

/* Mobile remains centered and fluid. */
@media (max-width:760px){
  body[data-page="landing"] .frame-hero{
    padding-left:18px !important;
    padding-right:18px !important;
    row-gap:30px !important;
  }

  body[data-page="landing"] .frame-hero-copy,
  body[data-page="landing"] .frame-product-preview,
  body[data-page="landing"] .frame-preview-window{
    width:100% !important;
    max-width:100% !important;
  }
}

/* Keep landing score cards from shrinking. */
body[data-page="landing"] .frame-score-grid{
  grid-template-columns:repeat(3, minmax(120px, 1fr)) !important;
  gap:10px !important;
}

body[data-page="landing"] .frame-score-grid article{
  min-width:120px !important;
  width:auto !important;
  flex-shrink:0 !important;
}

/* On very narrow mobile screens, stack instead of squeezing. */
@media (max-width:520px){
  body[data-page="landing"] .frame-score-grid{
    grid-template-columns:1fr !important;
  }

  body[data-page="landing"] .frame-score-grid article{
    width:100% !important;
    min-width:0 !important;
  }
}

/* Keep landing mobile navigation visible. */
@media (max-width:760px){

  body[data-page="landing"] .landing-topbar{
    display:grid !important;
    grid-template-columns:1fr auto !important;
    grid-template-rows:auto auto !important;
    align-items:center !important;
    row-gap:8px !important;
    padding-bottom:12px !important;
  }

  body[data-page="landing"] .site-brand{
    grid-column:1 !important;
    grid-row:1 !important;
  }

  body[data-page="landing"] .site-topbar-actions{
    grid-column:2 !important;
    grid-row:1 !important;
  }

  body[data-page="landing"] .site-nav{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    grid-column:1 / -1 !important;
    grid-row:2 !important;

    width:100% !important;
    max-width:none !important;

    flex-wrap:wrap !important;
    align-items:center !important;
    justify-content:center !important;

    gap:6px 14px !important;
    margin:0 !important;
    padding:4px 8px 0 !important;

    overflow:visible !important;
  }

  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav > .site-nav-item{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    flex:0 0 auto !important;
  }

  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav-item > a{
    font-size:14px !important;
    white-space:nowrap !important;
  }
}

/* Unified responsive navigation dropdowns. */

/* One trigger only: text + caret are one clickable area. */
body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-toggle{
  display:none !important;
}

body[data-page="landing"] .site-nav-item.has-dropdown > a{
  display:inline-flex !important;
  align-items:center !important;
  gap:7px !important;
  padding-right:0 !important;
  cursor:pointer !important;
  user-select:none !important;
}

body[data-page="landing"] .site-nav-item.has-dropdown > a::after{
  position:static !important;
  display:block !important;
  flex:0 0 auto !important;
  margin-left:2px !important;
}

body[data-page="landing"] .landing-topbar,
body[data-page="landing"] .site-nav{
  overflow:visible !important;
}

/* Desktop dropdowns stay inside the usable viewport. */
@media (min-width:761px){
  body[data-page="landing"] .site-nav-item.has-dropdown{
    position:relative !important;
  }

  body[data-page="landing"] .site-nav-menu{
    width:300px !important;
    max-width:calc(100vw - 32px) !important;
    box-sizing:border-box !important;
    z-index:1000 !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-menu{
    left:0 !important;
    right:auto !important;
    transform:none !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown:has(> a[href="/resources"]) > .site-nav-menu{
    left:auto !important;
    right:0 !important;
  }
}

/* Mobile: dropdown becomes a full-width panel below the nav row. */
@media (max-width:760px){
  body[data-page="landing"] .site-nav{
    position:relative !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown{
    position:static !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-menu{
    position:absolute !important;

    left:8px !important;
    right:8px !important;
    top:calc(100% + 8px) !important;

    width:auto !important;
    min-width:0 !important;
    max-width:none !important;

    transform:none !important;
    box-sizing:border-box !important;

    max-height:min(60vh,420px) !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;

    z-index:2000 !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown > a{
    min-height:36px !important;
    padding:7px 2px !important;
  }
}

/* Force dropdown-only primary navigation triggers. */
body[data-page="landing"] .site-nav-item.has-dropdown{
  position:relative !important;
}

/* Visible label is no longer clickable as a link. */
body[data-page="landing"] .site-nav-item.has-dropdown > a{
  pointer-events:none !important;
  position:relative !important;
  z-index:1 !important;
}

/* Existing real button covers the complete visible trigger area. */
body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-toggle{
  display:block !important;
  position:absolute !important;
  inset:0 !important;

  width:100% !important;
  height:100% !important;
  min-width:100% !important;

  margin:0 !important;
  padding:0 !important;
  border:0 !important;

  opacity:0 !important;
  background:transparent !important;

  cursor:pointer !important;
  z-index:5 !important;
}

/* Keep the visual caret on the text itself. */
body[data-page="landing"] .site-nav-item.has-dropdown > a::after{
  display:block !important;
}

/* Keep manuscript loading bars full-width on mobile. */
body[data-page="landing"] .frame-doc-lines{
  width:250px !important;
  min-width:250px !important;
  max-width:250px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media (max-width:340px){
  body[data-page="landing"] .frame-doc-lines{
    width:calc(100vw - 72px) !important;
    min-width:0 !important;
    max-width:250px !important;
  }
}

/* Mobile dropdown menu full-width rows. */
@media (max-width:760px){

  body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-menu{
    left:10px !important;
    right:10px !important;
    width:calc(100% - 20px) !important;
    min-width:0 !important;
    max-width:none !important;
    padding:8px !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .site-nav-menu-link{
    display:flex !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    box-sizing:border-box !important;

    padding:13px 16px !important;
    margin:0 !important;

    white-space:normal !important;
  }

  body[data-page="landing"] .site-nav-menu-link strong{
    display:block !important;
    width:100% !important;
    min-width:0 !important;
  }
}

/* Mobile dropdown viewport panel fix. */
@media (max-width:760px){

  body[data-page="landing"] .landing-topbar{
    position:relative !important;
    z-index:3000 !important;
  }

  body[data-page="landing"] .site-nav{
    position:static !important;
    width:100% !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown{
    position:static !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-menu{
    position:fixed !important;

    left:12px !important;
    right:12px !important;
    top:112px !important;

    width:auto !important;
    min-width:0 !important;
    max-width:none !important;

    margin:0 !important;
    padding:10px !important;

    box-sizing:border-box !important;

    transform:none !important;

    border-radius:16px !important;

    max-height:calc(100vh - 130px) !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;

    z-index:5000 !important;
  }

  body[data-page="landing"] .site-nav-menu-link{
    display:flex !important;
    align-items:center !important;

    width:100% !important;
    min-width:0 !important;

    padding:14px 16px !important;
    margin:0 !important;

    box-sizing:border-box !important;

    white-space:normal !important;
  }

  body[data-page="landing"] .site-nav-menu-link + .site-nav-menu-link{
    margin-top:4px !important;
  }

  body[data-page="landing"] .site-nav-menu-link strong{
    width:100% !important;
    line-height:1.25 !important;
  }
}

/* Center landing hero actions on mobile. */
@media (max-width:760px){
  body[data-page="landing"] .frame-hero-actions{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  body[data-page="landing"] .frame-hero-actions .frame-button{
    width:min(100%,280px) !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
    justify-content:center !important;
  }
}

/* Keep auth actions visible on mobile. */
@media (max-width:760px){

  body[data-page="landing"] .landing-topbar{
    grid-template-columns:minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;
  }

  body[data-page="landing"] .site-topbar-actions{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    grid-column:2 !important;
    grid-row:1 !important;

    align-items:center !important;
    justify-content:flex-end !important;

    gap:6px !important;
    margin:0 !important;
    padding:0 !important;

    white-space:nowrap !important;
  }

  body[data-page="landing"] .site-topbar-actions .site-auth-link{
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;

    padding:7px 8px !important;
    font-size:12px !important;
    line-height:1 !important;
  }

  body[data-page="landing"] .site-topbar-actions .site-button{
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;

    min-height:34px !important;
    padding:7px 11px !important;

    font-size:12px !important;
    line-height:1 !important;

    border-radius:10px !important;
  }

  body[data-page="landing"] .site-nav{
    grid-column:1 / -1 !important;
    grid-row:2 !important;
  }
}

@media (max-width:420px){
  body[data-page="landing"] .site-brand-logo{
    height:48px !important;
    max-width:175px !important;
  }

  body[data-page="landing"] .site-topbar-actions{
    gap:4px !important;
  }

  body[data-page="landing"] .site-topbar-actions .site-auth-link{
    padding:6px !important;
    font-size:11px !important;
  }

  body[data-page="landing"] .site-topbar-actions .site-button{
    min-height:32px !important;
    padding:6px 9px !important;
    font-size:11px !important;
  }
}

/* Mobile Frame Route Builder fit fix. */
@media (max-width:760px){

  body[data-page="landing"] .frame-product-preview{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    padding:0 !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-preview-window{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
    border-radius:22px !important;
  }

  body[data-page="landing"] .frame-preview-top{
    width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
    padding:0 14px !important;
  }

  body[data-page="landing"] .frame-preview-top strong{
    min-width:0 !important;
    font-size:14px !important;
    white-space:normal !important;
  }

  body[data-page="landing"] .frame-preview-body{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    min-width:0 !important;
    gap:14px !important;
    padding:14px !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-preview-doc,
  body[data-page="landing"] .frame-preview-panel{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-preview-doc{
    padding:22px 16px !important;
  }

  body[data-page="landing"] .frame-preview-panel{
    padding:14px !important;
  }

  body[data-page="landing"] .frame-score-grid{
    grid-template-columns:1fr !important;
    width:100% !important;
  }

  body[data-page="landing"] .frame-score-grid article{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-journal-row{
    width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-journal-row span{
    display:block !important;
    margin-left:0 !important;
    margin-top:4px !important;
  }
}

/* Restore full desktop Route Builder width. */
@media (min-width:1241px){
  body[data-page="landing"] .frame-hero{
    max-width:1420px !important;
    grid-template-columns:520px 720px !important;
    column-gap:52px !important;
  }

  body[data-page="landing"] .frame-product-preview,
  body[data-page="landing"] .frame-preview-window{
    width:720px !important;
    min-width:720px !important;
    max-width:720px !important;
  }

  body[data-page="landing"] .frame-score-grid{
    grid-template-columns:repeat(3, minmax(0,1fr)) !important;
  }

  body[data-page="landing"] .frame-score-grid article{
    min-width:0 !important;
  }
}

/* Push hero ambient glows to outer corners. */
body[data-page="landing"] .frame-hero{
  background:
    radial-gradient(circle at 0% 0%,
      rgba(18,93,255,.11) 0%,
      rgba(18,93,255,.055) 18%,
      transparent 34%
    ),
    radial-gradient(circle at 100% 0%,
      rgba(18,93,255,.18) 0%,
      rgba(18,93,255,.08) 20%,
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    ) !important;
}

/* Wider hero corner glows without moving content. */
body[data-page="landing"] .frame-hero{
  background:
    radial-gradient(
      ellipse 48% 62% at 0% 0%,
      rgba(18,93,255,.13) 0%,
      rgba(18,93,255,.075) 28%,
      rgba(18,93,255,.035) 48%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 52% 66% at 100% 0%,
      rgba(18,93,255,.20) 0%,
      rgba(18,93,255,.11) 28%,
      rgba(18,93,255,.045) 50%,
      transparent 74%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    ) !important;
}

/* Expand hero background without moving hero content. */
body[data-page="landing"] .frame-hero{
  position:relative !important;
  isolation:isolate !important;
  background:transparent !important;
}

body[data-page="landing"] .frame-hero::before{
  content:"";
  position:absolute;
  z-index:-1;

  top:0;
  bottom:0;
  left:50%;

  width:100vw;
  transform:translateX(-50%);

  background:
    radial-gradient(
      ellipse 48% 62% at 0% 0%,
      rgba(18,93,255,.13) 0%,
      rgba(18,93,255,.075) 28%,
      rgba(18,93,255,.035) 48%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 52% 66% at 100% 0%,
      rgba(18,93,255,.20) 0%,
      rgba(18,93,255,.11) 28%,
      rgba(18,93,255,.045) 50%,
      transparent 74%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    );
}

/* Full-width hero backdrop while preserving content coordinates. */
body[data-page="landing"] .frame-hero{
  overflow:visible !important;
  background:transparent !important;
}

/* Background expands independently from the fixed hero content grid. */
body[data-page="landing"] .frame-hero::before{
  content:"" !important;
  position:absolute !important;

  top:0 !important;
  bottom:0 !important;
  left:50% !important;

  width:calc(100vw - 48px) !important;
  max-width:none !important;

  transform:translateX(-50%) !important;

  z-index:0 !important;
  pointer-events:none !important;

  background:
    radial-gradient(
      ellipse 48% 62% at 0% 0%,
      rgba(18,93,255,.13) 0%,
      rgba(18,93,255,.075) 28%,
      rgba(18,93,255,.035) 48%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 52% 66% at 100% 0%,
      rgba(18,93,255,.20) 0%,
      rgba(18,93,255,.11) 28%,
      rgba(18,93,255,.045) 50%,
      transparent 74%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    ) !important;
}

/* Keep every existing hero element exactly above the backdrop. */
body[data-page="landing"] .frame-hero > *{
  position:relative;
  z-index:1;
}

/* Rebalance hero corner glows: softer left, stronger right. */
body[data-page="landing"] .frame-hero::before{
  background:
    radial-gradient(
      ellipse 42% 58% at -4% -2%,
      rgba(18,93,255,.09) 0%,
      rgba(18,93,255,.05) 24%,
      rgba(18,93,255,.02) 42%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 58% 74% at 104% -4%,
      rgba(18,93,255,.24) 0%,
      rgba(18,93,255,.14) 24%,
      rgba(18,93,255,.06) 46%,
      transparent 74%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    ) !important;
}

/* Stronger bilateral hero glows, right-dominant. */
body[data-page="landing"] .frame-hero::before{
  background:
    radial-gradient(
      ellipse 50% 66% at -3% 0%,
      rgba(18,93,255,.15) 0%,
      rgba(18,93,255,.085) 26%,
      rgba(18,93,255,.035) 48%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 60% 76% at 103% -2%,
      rgba(18,93,255,.25) 0%,
      rgba(18,93,255,.15) 26%,
      rgba(18,93,255,.065) 48%,
      transparent 75%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    ) !important;
}

/* Explicit top-left hero glow. */
body[data-page="landing"] .frame-hero::before{
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(18,93,255,.22) 0%,
      rgba(18,93,255,.14) 12%,
      rgba(18,93,255,.075) 24%,
      rgba(18,93,255,.025) 38%,
      transparent 54%
    ),
    radial-gradient(
      ellipse 60% 76% at 103% -2%,
      rgba(18,93,255,.27) 0%,
      rgba(18,93,255,.16) 26%,
      rgba(18,93,255,.07) 48%,
      transparent 75%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    ) !important;
}

/* Final hero glow mask reset. */
body[data-page="landing"] .frame-hero::before{
  opacity:1 !important;

  mask-image:none !important;
  -webkit-mask-image:none !important;

  background-size:auto !important;

  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(18,93,255,.22) 0%,
      rgba(18,93,255,.14) 13%,
      rgba(18,93,255,.07) 27%,
      rgba(18,93,255,.025) 40%,
      transparent 56%
    ),
    radial-gradient(
      ellipse 58% 76% at 100% 0%,
      rgba(18,93,255,.30) 0%,
      rgba(18,93,255,.18) 24%,
      rgba(18,93,255,.08) 44%,
      rgba(18,93,255,.025) 60%,
      transparent 77%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9fbff 52%,
      #f3f7ff 100%
    ) !important;
}

/* Slightly wider full-width hero backdrop. */
body[data-page="landing"] .frame-hero::before{
  left:50% !important;
  width:calc(100vw - 16px) !important;
  transform:translateX(-50%) !important;
}

/* Fine-tune Moderate alignment. */
body[data-page="landing"] .frame-score-grid article:nth-child(2) strong{
  left:-5px !important;
}

/* Fine-tune Sourced alignment. */
body[data-page="landing"] .frame-score-grid article:nth-child(3) strong{
  left:-3px !important;
}

/* Mid-width Route Builder stability fix. */
@media (min-width:761px) and (max-width:1240px){

  body[data-page="landing"] .frame-product-preview,
  body[data-page="landing"] .frame-preview-window{
    width:min(900px, calc(100vw - 48px)) !important;
    max-width:900px !important;
    min-width:0 !important;

    margin-left:auto !important;
    margin-right:auto !important;
  }

  body[data-page="landing"] .frame-preview-body{
    grid-template-columns:
      minmax(280px,.92fr)
      minmax(390px,1.08fr) !important;

    width:100% !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-preview-doc,
  body[data-page="landing"] .frame-preview-panel{
    min-width:0 !important;
    max-width:none !important;
  }

  body[data-page="landing"] .frame-score-grid{
    grid-template-columns:repeat(3,minmax(105px,1fr)) !important;
    width:100% !important;
  }

  body[data-page="landing"] .frame-score-grid article{
    min-width:0 !important;
    width:auto !important;
  }
}

/* Center refresh logo on mobile. */
@media (max-width:760px){
  body[data-page="landing"] .frame-brand-moment{
    display:grid !important;
    place-items:center !important;
  }

  body[data-page="landing"] .frame-launch-mark{
    position:absolute !important;
    left:50% !important;
    top:50% !important;
    margin:0 !important;
    transform:translate(-50%,-50%) !important;
  }
}

/* Fix mobile refresh-logo centering without transform conflict. */
@media (max-width:760px){
  body[data-page="landing"] .frame-brand-moment{
    display:grid !important;
    place-items:center !important;
  }

  body[data-page="landing"] .frame-launch-mark{
    position:relative !important;
    left:auto !important;
    top:auto !important;
    margin:0 !important;
  }
}

/* Force landing shell to full mobile viewport width. */
@media (max-width:760px){

  html,
  body[data-page="landing"]{
    width:100% !important;
    min-width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
    overflow-x:hidden !important;
  }

  body[data-page="landing"] .site-shell.landing-shell,
  body[data-page="landing"] .frame-home{
    width:100vw !important;
    min-width:100vw !important;
    max-width:100vw !important;
    margin:0 !important;
    padding-left:0 !important;
    padding-right:0 !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .landing-topbar{
    width:100vw !important;
    max-width:100vw !important;
    margin-left:0 !important;
    margin-right:0 !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-hero::before{
    width:100vw !important;
  }
}

/* Final resolution-independent mobile width fix. */
@media (max-width:760px){

  html,
  body[data-page="landing"]{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    overflow-x:clip !important;
  }

  body[data-page="landing"] .site-shell.landing-shell,
  body[data-page="landing"] .frame-home,
  body[data-page="landing"] .landing-topbar,
  body[data-page="landing"] .frame-hero{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;

    margin-left:0 !important;
    margin-right:0 !important;

    box-sizing:border-box !important;
  }

  body[data-page="landing"] .site-shell.landing-shell,
  body[data-page="landing"] .frame-home{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  body[data-page="landing"] .frame-product-preview,
  body[data-page="landing"] .frame-preview-window,
  body[data-page="landing"] .frame-preview-body{
    min-width:0 !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  /* Mobile backdrop follows the actual layout viewport, not 100vw. */
  body[data-page="landing"] .frame-hero::before{
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-width:none !important;
    transform:none !important;
  }
}

/* Lock launch overlay to the actual viewport. */
body[data-page="landing"] .frame-brand-moment{
  position:fixed !important;
  inset:0 !important;

  width:auto !important;
  min-width:0 !important;
  max-width:none !important;

  height:auto !important;
  min-height:0 !important;

  margin:0 !important;
  padding:0 !important;

  box-sizing:border-box !important;
  overflow:hidden !important;

  contain:paint !important;
}

/* Final compact mobile landing layout. */
@media (max-width:520px){

  /* Header row: logo + auth buttons always fit. */
  body[data-page="landing"] .landing-topbar{
    width:100% !important;
    max-width:100% !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;
    column-gap:8px !important;
    row-gap:8px !important;
    padding:4px 10px 10px !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .site-brand{
    min-width:0 !important;
    width:auto !important;
  }

  body[data-page="landing"] .site-brand-logo{
    width:auto !important;
    height:44px !important;
    max-width:132px !important;
  }

  body[data-page="landing"] .site-topbar-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:4px !important;
    min-width:0 !important;
  }

  body[data-page="landing"] .site-topbar-actions .site-auth-link{
    padding:5px 4px !important;
    font-size:10px !important;
  }

  body[data-page="landing"] .site-topbar-actions .site-button{
    min-height:30px !important;
    padding:6px 8px !important;
    font-size:10px !important;
    border-radius:9px !important;
  }

  /* Second row: navigation wraps instead of clipping. */
  body[data-page="landing"] .site-nav{
    grid-column:1 / -1 !important;
    grid-row:2 !important;

    display:flex !important;
    width:100% !important;

    flex-wrap:wrap !important;
    justify-content:center !important;
    align-items:center !important;

    gap:5px 12px !important;
    padding:3px 0 0 !important;

    overflow:visible !important;
  }

  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav-item > a{
    font-size:11px !important;
    line-height:1.15 !important;
    white-space:nowrap !important;
  }

  /* Hero copy must never overflow horizontally. */
  body[data-page="landing"] .frame-hero{
    width:100% !important;
    max-width:100% !important;
    padding-left:14px !important;
    padding-right:14px !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-hero-copy{
    width:100% !important;
    max-width:100% !important;
    padding:0 2px !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-coverage-note{
    width:100% !important;
    max-width:370px !important;
    margin-left:auto !important;
    margin-right:auto !important;
    white-space:normal !important;
    overflow-wrap:anywhere !important;
    line-height:1.45 !important;
  }

  body[data-page="landing"] .frame-lead{
    max-width:360px !important;
  }

  /* Route Builder stays inside the mobile viewport. */
  body[data-page="landing"] .frame-product-preview{
    width:calc(100% - 4px) !important;
    max-width:calc(100% - 4px) !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  body[data-page="landing"] .frame-preview-window{
    width:100% !important;
    max-width:100% !important;
  }
}

/* Mobile compare rows: prevent risk-pill overflow. */
@media (max-width:760px){

  body[data-page="landing"] .frame-compare-preview{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  body[data-page="landing"] .frame-compare-row{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;

    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;

    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-compare-row > b{
    grid-column:1 / -1 !important;
    min-width:0 !important;
  }

  body[data-page="landing"] .frame-compare-row > i,
  body[data-page="landing"] .frame-compare-row > em{
    min-width:0 !important;
    max-width:100% !important;
    width:auto !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-risk-pill{
    position:static !important;
    transform:none !important;

    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    justify-self:stretch !important;
    white-space:normal !important;
  }
}

/* Prevent any horizontal page scrolling. */
html,
body{
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
}

body[data-page="landing"] .site-shell.landing-shell{
  max-width:100% !important;
  overflow-x:hidden !important;
}

/* Remove redundant landing feature reveal strip. */
body[data-page="landing"] .frame-hero-down,
body[data-page="landing"] .frame-feature-strip{
  display:none !important;
}

/* Center How it works heading. */
body[data-page="landing"] .frame-strip-dark > div:first-child h2{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Force-center How it works heading. */
body[data-page="landing"] .frame-strip-dark > div:first-child h2{
  width:fit-content !important;
  max-width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

/* Precisely center How it works title only. */
body[data-page="landing"] .frame-strip-dark > div:first-child{
  display:grid !important;
  grid-template-columns:1fr !important;
  width:100% !important;
}

body[data-page="landing"] .frame-strip-dark > div:first-child .frame-eyebrow{
  justify-self:start !important;
}

body[data-page="landing"] .frame-strip-dark > div:first-child h2{
  display:block !important;
  width:max-content !important;
  max-width:100% !important;
  justify-self:center !important;
  margin:0 !important;
  text-align:center !important;
}

/* Final exact center for How it works title. */
body[data-page="landing"] .frame-strip-dark > div:first-child h2{
  position:relative !important;
  left:50% !important;
  transform:translateX(-50%) !important;

  width:620px !important;
  max-width:100% !important;

  margin:0 !important;
  text-align:center !important;
}

/* Correct How it works title centering. */
body[data-page="landing"] .frame-strip-dark > div:first-child h2{
  position:static !important;
  left:auto !important;
  transform:none !important;

  display:block !important;
  width:max-content !important;
  max-width:100% !important;

  margin-left:auto !important;
  margin-right:auto !important;

  text-align:center !important;
}

/* Center How it works title on mobile with balanced wrapping. */
@media (max-width:760px){
  body[data-page="landing"] .frame-strip-dark > div:first-child h2{
    position:static !important;
    left:auto !important;
    transform:none !important;

    display:block !important;
    width:100% !important;
    max-width:340px !important;

    margin-left:auto !important;
    margin-right:auto !important;

    text-align:center !important;
    white-space:normal !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
    text-wrap:balance !important;
  }
}

/* Remove How it works card bullet lists. */
body[data-page="landing"] .frame-strip-dark .frame-steps article ul{
  display:none !important;
}

body[data-page="landing"] .frame-strip-dark .frame-steps article{
  min-height:0 !important;
}

/* Match How it works eyebrow to hero eyebrow. */
body[data-page="landing"] .frame-strip-dark .frame-eyebrow{
  background:#061b4f !important;
  border-color:#061b4f !important;
  color:#ffffff !important;
}

/* Center Decision Signals copy under eyebrow. */
body[data-page="landing"] .frame-strip-light .frame-split > div:first-child{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
}

body[data-page="landing"] .frame-strip-light .frame-split > div:first-child h2,
body[data-page="landing"] .frame-strip-light .frame-split > div:first-child .frame-section-kicker{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

body[data-page="landing"] .frame-strip-light .frame-split > div:first-child .frame-section-kicker{
  max-width:520px !important;
}

/* Responsive Decision Signals comparison rows. */
body[data-page="landing"] .frame-compare-preview{
  width:100% !important;
  min-width:0 !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}

body[data-page="landing"] .frame-compare-row{
  display:grid !important;
  grid-template-columns:
    minmax(130px,1.35fr)
    repeat(3,minmax(80px,.8fr)) !important;

  gap:8px !important;
  width:100% !important;
  min-width:0 !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}

body[data-page="landing"] .frame-compare-row > b,
body[data-page="landing"] .frame-compare-row > i,
body[data-page="landing"] .frame-compare-row > em{
  min-width:0 !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}

body[data-page="landing"] .frame-compare-row > i,
body[data-page="landing"] .frame-compare-row > em{
  width:100% !important;
  text-align:center !important;
  justify-self:stretch !important;
  white-space:nowrap !important;
}

/* Mid-width screens: tighten without clipping. */
@media (min-width:761px) and (max-width:1250px){
  body[data-page="landing"] .frame-compare-row{
    grid-template-columns:
      minmax(115px,1.2fr)
      repeat(3,minmax(72px,.8fr)) !important;
    gap:6px !important;
  }

  body[data-page="landing"] .frame-compare-row > i,
  body[data-page="landing"] .frame-compare-row > em{
    font-size:11px !important;
  }
}

/* Center selected-journals badge on mobile. */
@media (max-width:760px){
  body[data-page="landing"] .frame-compare-head{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    text-align:center !important;
  }

  body[data-page="landing"] .frame-compare-head > span{
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
}

/* Mobile compare metrics: prevent text clipping. */
@media (max-width:520px){

  body[data-page="landing"] .frame-compare-row{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
  }

  body[data-page="landing"] .frame-compare-row > b{
    grid-column:1 / -1 !important;
  }

  body[data-page="landing"] .frame-compare-row > i,
  body[data-page="landing"] .frame-compare-row > em{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;

    padding-left:8px !important;
    padding-right:8px !important;

    white-space:normal !important;
    text-align:center !important;

    box-sizing:border-box !important;
  }

  body[data-page="landing"] .frame-compare-row > .frame-risk-pill{
    grid-column:1 / -1 !important;
    justify-self:stretch !important;
  }
}

/* Center Trust First copy block. */
body[data-page="landing"] .frame-trust-copy{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  text-align:center !important;
}

body[data-page="landing"] .frame-trust-copy .frame-eyebrow,
body[data-page="landing"] .frame-trust-copy h2,
body[data-page="landing"] .frame-trust-support,
body[data-page="landing"] .frame-trust-hints{
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="landing"] .frame-trust-copy h2,
body[data-page="landing"] .frame-trust-support{
  text-align:center !important;
}

body[data-page="landing"] .frame-trust-hints{
  width:max-content !important;
  max-width:100% !important;
  padding-left:0 !important;
}

body[data-page="landing"] .frame-trust-hints li{
  text-align:left !important;
}

/* Center Decision Output on mobile. */
@media (max-width:760px){
  body[data-page="landing"] .frame-decision-output{
    text-align:center !important;
    align-items:center !important;
  }

  body[data-page="landing"] .frame-decision-output > span,
  body[data-page="landing"] .frame-decision-output > strong,
  body[data-page="landing"] .frame-decision-output > p{
    display:block !important;
    width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
}

/* Center Decision Output on all screen sizes. */
body[data-page="landing"] .frame-decision-output{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

body[data-page="landing"] .frame-decision-output > span,
body[data-page="landing"] .frame-decision-output > strong,
body[data-page="landing"] .frame-decision-output > p{
  display:block !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

/* Center final CTA copy on all screens. */
body[data-page="landing"] .frame-final > div:first-child{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
}

body[data-page="landing"] .frame-final > div:first-child h2,
body[data-page="landing"] .frame-final > div:first-child .frame-final-copy{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

body[data-page="landing"] .frame-final > div:first-child h2{
  max-width:680px !important;
}

body[data-page="landing"] .frame-final > div:first-child .frame-final-copy{
  max-width:640px !important;
}

/* Remove footer bottom-right links. */
body[data-page="landing"] .frame-social-links{
  display:none !important;
}

/* Refine footer copyright alignment. */
body[data-page="landing"] .frame-footer-bottom{
  justify-content:flex-start !important;
  text-align:left !important;
}

body[data-page="landing"] .frame-footer-bottom p{
  margin:0 !important;
  font-size:12px !important;
  line-height:1.4 !important;
  text-align:left !important;
}

@media (max-width:760px){
  body[data-page="landing"] .frame-footer-bottom p{
    font-size:11px !important;
  }
}

/* Keep footer copyright visible on mobile. */
body[data-page="landing"] .frame-footer-bottom{
  display:flex !important;
  width:100% !important;
  justify-content:flex-start !important;
  align-items:center !important;
}

body[data-page="landing"] .frame-footer-bottom > p{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  width:auto !important;
  margin:0 !important;
  color:#ffffff !important;
  font-size:12px !important;
  line-height:1.4 !important;
  text-align:left !important;
}

@media (max-width:760px){
  body[data-page="landing"] .frame-footer-bottom{
    display:flex !important;
    justify-content:flex-start !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }

  body[data-page="landing"] .frame-footer-bottom > p{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    font-size:11px !important;
    text-align:left !important;
  }
}



/* Final copyright visibility and alignment. */
body[data-page="landing"] .frame-footer-bottom{
  display:block !important;
  width:100% !important;
  min-height:20px !important;
  margin-top:24px !important;
  padding-top:12px !important;
  border-top:1px solid rgba(255,255,255,.12) !important;
  text-align:left !important;
  position:relative !important;
  z-index:2 !important;
}

body[data-page="landing"] .frame-footer-bottom > p{
  display:block !important;
  position:static !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  visibility:visible !important;
  opacity:1 !important;
  color:rgba(255,255,255,.65) !important;
  font-size:12px !important;
  line-height:1.4 !important;
  text-align:left !important;
}

@media (max-width:760px){
  body[data-page="landing"] .frame-footer-bottom{
    display:block !important;
    width:100% !important;
    margin-top:20px !important;
    padding-top:10px !important;
  }

  body[data-page="landing"] .frame-footer-bottom > p{
    display:block !important;
    width:100% !important;
    font-size:10px !important;
    text-align:left !important;
  }
}

/* Lift mobile copyright above browser bottom edge. */
@media (max-width:760px){
  body[data-page="landing"] .frame-footer{
    padding-bottom:34px !important;
  }

  body[data-page="landing"] .frame-footer-bottom{
    margin-bottom:18px !important;
  }

  body[data-page="landing"] .frame-footer-bottom > p{
    position:relative !important;
    top:-8px !important;
  }
}



/* Final mobile loading-door centering. */
@media (max-width:760px){
  body[data-page="landing"] .frame-brand-moment{
    position:fixed !important;
    inset:0 !important;
    display:grid !important;
    place-items:center !important;
    padding:0 !important;
  }

  body[data-page="landing"] .frame-launch-mark{
    position:relative !important;
    inset:auto !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;

    margin:0 !important;
    justify-self:center !important;
    align-self:center !important;
  }
}

/* Optical-center mobile loading door. */
@media (max-width:760px){
  body[data-page="landing"] .frame-launch-mark{
    position:relative !important;
    left:8px !important;
  }
}



/* Exact mobile loading-door centering. */
@media (max-width:760px){
  body[data-page="landing"] .frame-launch-mark{
    position:relative !important;
    left:38px !important;
  }
}


/* Tablet loading-door optical vertical centering. */
@media (min-width:761px) and (max-width:1180px){
  body[data-page="landing"] .frame-launch-mark{
    position:relative !important;
    top:-44px !important;
  }
}

/* Center footer brand block on mobile. */
@media (max-width:760px){
  body[data-page="landing"] .frame-footer-grid > section:first-child{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    text-align:center !important;
  }

  body[data-page="landing"] .frame-footer-logo{
    display:block !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  body[data-page="landing"] .frame-footer-grid > section:first-child > p{
    width:100% !important;
    max-width:300px !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
}

/* Tighten footer nav spacing. */
body[data-page="landing"] .frame-footer nav h3{
  margin-bottom:6px !important;
}

body[data-page="landing"] .frame-footer nav{
  gap:5px !important;
}

/* Stable tablet and narrow-laptop header. */
@media (min-width:761px) and (max-width:1240px){

  body[data-page="landing"] .landing-topbar{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;

    width:100% !important;
    max-width:100% !important;

    min-height:0 !important;
    padding:6px 28px 14px !important;

    column-gap:20px !important;
    row-gap:6px !important;

    align-items:center !important;
    box-sizing:border-box !important;
  }

  body[data-page="landing"] .site-brand{
    grid-column:1 !important;
    grid-row:1 !important;

    width:auto !important;
    min-width:0 !important;
    max-width:280px !important;

    justify-self:start !important;
  }

  body[data-page="landing"] .site-brand-logo{
    width:auto !important;
    height:70px !important;
    max-width:280px !important;
  }

  body[data-page="landing"] .site-topbar-actions{
    grid-column:2 !important;
    grid-row:1 !important;

    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    align-items:center !important;
    justify-content:flex-end !important;

    gap:10px !important;
    margin:0 !important;
    padding:0 !important;

    justify-self:end !important;
    white-space:nowrap !important;
  }

  body[data-page="landing"] .site-nav{
    grid-column:1 / -1 !important;
    grid-row:2 !important;

    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    width:100% !important;
    max-width:none !important;

    flex-wrap:wrap !important;
    align-items:center !important;
    justify-content:center !important;

    gap:8px 24px !important;

    margin:0 !important;
    padding:4px 0 0 !important;

    overflow:visible !important;
  }

  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav > .site-nav-item{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    flex:0 0 auto !important;
  }

  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav-item > a{
    font-size:14px !important;
    white-space:nowrap !important;
  }
}


/* Fix mobile navbar click hitboxes. */
@media (max-width:760px){

  /* Each dropdown trigger owns only its own clickable area. */
  body[data-page="landing"] .site-nav-item.has-dropdown{
    position:relative !important;
  }

  body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-toggle{
    position:absolute !important;
    inset:0 !important;

    width:100% !important;
    height:100% !important;
    min-width:0 !important;

    z-index:5 !important;
    pointer-events:auto !important;
  }

  /* Dropdown panel may still span the viewport independently. */
  body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-menu{
    position:fixed !important;
  }

  /* Logo and auth controls must always receive their own clicks. */
  body[data-page="landing"] .site-brand,
  body[data-page="landing"] .site-topbar-actions,
  body[data-page="landing"] .site-topbar-actions > a{
    position:relative !important;
    z-index:50 !important;
    pointer-events:auto !important;
  }
}

/* Resources header matches landing header. */
body[data-page="resources"] .landing-topbar{
  display:grid !important;
  grid-template-columns:minmax(360px,1fr) auto minmax(220px,1fr) !important;
  align-items:center !important;

  width:100% !important;
  max-width:100% !important;

  min-height:98px !important;
  padding:0 clamp(24px,4vw,58px) !important;

  background:rgba(255,255,255,.97) !important;
  border-bottom:1px solid rgba(7,26,68,.06) !important;
  box-shadow:0 16px 36px rgba(7,26,68,.10) !important;
  backdrop-filter:blur(18px) !important;

  box-sizing:border-box !important;
}

body[data-page="resources"] .site-brand{
  min-width:357px !important;
}

body[data-page="resources"] .site-brand-logo{
  width:auto !important;
  height:90px !important;
  max-width:357px !important;
  object-fit:contain !important;
}

body[data-page="resources"] .site-nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:34px !important;
  overflow:visible !important;
}

body[data-page="resources"] .site-nav > .site-nav-item:nth-of-type(1){
  order:1;
}

body[data-page="resources"] .site-nav > .site-nav-item:nth-of-type(2){
  order:2;
}

body[data-page="resources"] .site-nav > .site-nav-item:has(> a[href="/resources"]){
  order:3;
}

body[data-page="resources"] .site-nav > a[href="/pricing"]{
  order:4;
}

body[data-page="resources"] .site-nav > a[href="/resources#contact"]{
  order:5;
}

body[data-page="resources"] .site-topbar-actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:12px !important;
  justify-self:end !important;
}

/* Tablet / narrow laptop: same two-row behavior as landing. */
@media (min-width:761px) and (max-width:1240px){

  body[data-page="resources"] .landing-topbar{
    grid-template-columns:minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;

    min-height:0 !important;
    padding:6px 28px 14px !important;

    column-gap:20px !important;
    row-gap:6px !important;
  }

  body[data-page="resources"] .site-brand{
    grid-column:1 !important;
    grid-row:1 !important;

    min-width:0 !important;
    max-width:280px !important;
    justify-self:start !important;
  }

  body[data-page="resources"] .site-brand-logo{
    height:70px !important;
    max-width:280px !important;
  }

  body[data-page="resources"] .site-topbar-actions{
    grid-column:2 !important;
    grid-row:1 !important;

    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    justify-self:end !important;
  }

  body[data-page="resources"] .site-nav{
    grid-column:1 / -1 !important;
    grid-row:2 !important;

    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    width:100% !important;
    flex-wrap:wrap !important;
    justify-content:center !important;

    gap:8px 24px !important;
    padding-top:4px !important;
  }

  body[data-page="resources"] .site-nav > a,
  body[data-page="resources"] .site-nav-item > a{
    font-size:14px !important;
    white-space:nowrap !important;
  }
}

/* Mobile: logo/auth first row, navigation second row. */
@media (max-width:760px){

  body[data-page="resources"] .landing-topbar{
    grid-template-columns:minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;

    min-height:0 !important;
    padding:4px 10px 10px !important;

    column-gap:8px !important;
    row-gap:8px !important;
  }

  body[data-page="resources"] .site-brand{
    grid-column:1 !important;
    grid-row:1 !important;

    min-width:0 !important;
    max-width:none !important;
  }

  body[data-page="resources"] .site-brand-logo{
    height:48px !important;
    max-width:175px !important;
  }

  body[data-page="resources"] .site-topbar-actions{
    grid-column:2 !important;
    grid-row:1 !important;

    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    gap:4px !important;
    white-space:nowrap !important;
  }

  body[data-page="resources"] .site-topbar-actions .site-auth-link{
    padding:6px !important;
    font-size:11px !important;
  }

  body[data-page="resources"] .site-topbar-actions .site-button{
    min-height:32px !important;
    padding:6px 9px !important;
    font-size:11px !important;
    border-radius:9px !important;
  }

  body[data-page="resources"] .site-nav{
    grid-column:1 / -1 !important;
    grid-row:2 !important;

    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;

    width:100% !important;

    flex-wrap:wrap !important;
    align-items:center !important;
    justify-content:center !important;

    gap:5px 12px !important;
    padding:3px 0 0 !important;

    overflow:visible !important;
  }

  body[data-page="resources"] .site-nav > a,
  body[data-page="resources"] .site-nav-item > a{
    font-size:11px !important;
    white-space:nowrap !important;
  }
}

/* Resources unified navbar dropdown triggers. */
body[data-page="resources"] .site-nav-item.has-dropdown{
  position:relative !important;
}

body[data-page="resources"] .site-nav-item.has-dropdown > a{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:7px !important;

  padding-right:0 !important;

  line-height:1 !important;
  white-space:nowrap !important;

  cursor:pointer !important;
  user-select:none !important;

  pointer-events:none !important;
}

/* Visual caret becomes part of the text trigger. */
body[data-page="resources"] .site-nav-item.has-dropdown > a::after{
  content:"" !important;

  display:block !important;
  width:6px !important;
  height:6px !important;

  flex:0 0 auto !important;
  margin-left:2px !important;

  border-right:1.5px solid currentColor !important;
  border-bottom:1.5px solid currentColor !important;

  transform:rotate(45deg) translateY(-2px) !important;
}

/* The real button covers only this label+caret area. */
body[data-page="resources"] .site-nav-item.has-dropdown > .site-nav-toggle{
  display:block !important;
  position:absolute !important;
  inset:0 !important;

  width:100% !important;
  height:100% !important;
  min-width:0 !important;

  margin:0 !important;
  padding:0 !important;

  border:0 !important;
  background:transparent !important;

  opacity:0 !important;
  cursor:pointer !important;
  z-index:5 !important;
}

/* Hide the old standalone caret. */
body[data-page="resources"] .site-nav-item.has-dropdown .site-nav-caret{
  display:none !important;
}

/* Match Resources navbar typography to landing. */
body[data-page="resources"] .site-nav > a,
body[data-page="resources"] .site-nav-item > a{
  font-weight:650 !important;
  color:rgba(7,26,68,.75) !important;
}

body[data-page="resources"] .site-auth-link{
  font-weight:700 !important;
}

body[data-page="resources"] .site-topbar-actions .site-button{
  font-weight:700 !important;
}

/* Align landing navbar active state with Resources header. */

/* Invisible dropdown button must never draw its own blue focus box. */
body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-toggle{
  outline:none !important;
  box-shadow:none !important;
  -webkit-tap-highlight-color:transparent !important;
}

body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-toggle:focus,
body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-toggle:focus-visible,
body[data-page="landing"] .site-nav-item.has-dropdown > .site-nav-toggle:active{
  outline:none !important;
  box-shadow:none !important;
  background:transparent !important;
}

/* Keep the visible label/caret itself aligned and use it for open state. */
body[data-page="landing"] .site-nav-item.has-dropdown > a{
  min-height:36px !important;
  padding:0 8px !important;
  border-radius:10px !important;

  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  line-height:1 !important;
  box-sizing:border-box !important;
}

body[data-page="landing"] .site-nav-item.has-dropdown.is-open > a{
  background:rgba(18,93,255,.09) !important;
  color:#125dff !important;
}

/* Align Resources navbar active state with landing. */

body[data-page="resources"] .site-nav-item.has-dropdown > .site-nav-toggle{
  outline:none !important;
  box-shadow:none !important;
  -webkit-tap-highlight-color:transparent !important;
}

body[data-page="resources"] .site-nav-item.has-dropdown > .site-nav-toggle:focus,
body[data-page="resources"] .site-nav-item.has-dropdown > .site-nav-toggle:focus-visible,
body[data-page="resources"] .site-nav-item.has-dropdown > .site-nav-toggle:active{
  outline:none !important;
  box-shadow:none !important;
  background:transparent !important;
}

body[data-page="resources"] .site-nav-item.has-dropdown > a{
  min-height:36px !important;
  padding:0 8px !important;
  border-radius:10px !important;

  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  line-height:1 !important;
  box-sizing:border-box !important;
}

body[data-page="resources"] .site-nav-item.has-dropdown.is-open > a{
  background:rgba(18,93,255,.09) !important;
  color:#125dff !important;
}

/* Fine-tune Resources Pricing position. */
body[data-page="resources"] .site-nav > a[href="/pricing"]{
  position:relative !important;
  left:-6px !important;
}

/* Slightly enlarge Resources navbar labels. */
body[data-page="resources"] .site-nav > a,
body[data-page="resources"] .site-nav-item > a{
  font-size:17px !important;
}

@media (min-width:761px) and (max-width:1240px){
  body[data-page="resources"] .site-nav > a,
  body[data-page="resources"] .site-nav-item > a{
    font-size:15px !important;
  }
}

@media (max-width:760px){
  body[data-page="resources"] .site-nav > a,
  body[data-page="resources"] .site-nav-item > a{
    font-size:12px !important;
  }
}

/* Match landing navbar label size to Resources. */
body[data-page="landing"] .site-nav > a,
body[data-page="landing"] .site-nav-item > a{
  font-size:17px !important;
}

@media (min-width:761px) and (max-width:1240px){
  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav-item > a{
    font-size:15px !important;
  }
}

@media (max-width:760px){
  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav-item > a{
    font-size:12px !important;
  }
}

/* Slightly strengthen landing navbar weight. */
body[data-page="landing"] .site-nav > a,
body[data-page="landing"] .site-nav-item > a{
  font-weight:650 !important;
}

/* Unified marketing navbar typography. */
body[data-page="landing"] .site-nav > a,
body[data-page="landing"] .site-nav-item > a,
body[data-page="resources"] .site-nav > a,
body[data-page="resources"] .site-nav-item > a,
body[data-page="product"] .site-nav > a,
body[data-page="product"] .site-nav-item > a,
body[data-page="features"] .site-nav > a,
body[data-page="features"] .site-nav-item > a,
body[data-page="feature-detail"] .site-nav > a,
body[data-page="feature-detail"] .site-nav-item > a,
body[data-page="solutions"] .site-nav > a,
body[data-page="solutions"] .site-nav-item > a,
body[data-page="pricing"] .site-nav > a,
body[data-page="pricing"] .site-nav-item > a{
  font-size:17px !important;
  font-weight:650 !important;
}

@media (min-width:761px) and (max-width:1240px){
  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav-item > a,
  body[data-page="resources"] .site-nav > a,
  body[data-page="resources"] .site-nav-item > a,
  body[data-page="product"] .site-nav > a,
  body[data-page="product"] .site-nav-item > a,
  body[data-page="features"] .site-nav > a,
  body[data-page="features"] .site-nav-item > a,
  body[data-page="feature-detail"] .site-nav > a,
  body[data-page="feature-detail"] .site-nav-item > a,
  body[data-page="solutions"] .site-nav > a,
  body[data-page="solutions"] .site-nav-item > a,
  body[data-page="pricing"] .site-nav > a,
  body[data-page="pricing"] .site-nav-item > a{
    font-size:15px !important;
    font-weight:650 !important;
  }
}

@media (max-width:760px){
  body[data-page="landing"] .site-nav > a,
  body[data-page="landing"] .site-nav-item > a,
  body[data-page="resources"] .site-nav > a,
  body[data-page="resources"] .site-nav-item > a,
  body[data-page="product"] .site-nav > a,
  body[data-page="product"] .site-nav-item > a,
  body[data-page="features"] .site-nav > a,
  body[data-page="features"] .site-nav-item > a,
  body[data-page="feature-detail"] .site-nav > a,
  body[data-page="feature-detail"] .site-nav-item > a,
  body[data-page="solutions"] .site-nav > a,
  body[data-page="solutions"] .site-nav-item > a,
  body[data-page="pricing"] .site-nav > a,
  body[data-page="pricing"] .site-nav-item > a{
    font-size:12px !important;
    font-weight:650 !important;
  }
}

/* Unified marketing navbar structure and dropdown state. */
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav{
  display:flex !important;
  align-items:center !important;
  overflow:visible !important;
}

/* Canonical navbar order. */
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav > .site-nav-item:has(> a[href="/features"]){
  order:1 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav > .site-nav-item:has(> a[href="/solutions"]){
  order:2 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav > .site-nav-item:has(> a[href="/resources"]){
  order:3 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav > a[href="/pricing"]{
  order:4 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav > a[href="/resources#contact"]{
  order:5 !important;
}

/* Dropdown label + caret behave as one visual control. */
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown{
  position:relative !important;
}

:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown > a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  min-height:36px !important;
  gap:7px !important;
  padding:0 8px !important;

  border-radius:10px !important;

  line-height:1 !important;
  white-space:nowrap !important;

  box-sizing:border-box !important;
  pointer-events:none !important;
}

/* Unified visual caret. */
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown > a::after{
  content:"" !important;

  position:static !important;
  display:block !important;

  width:6px !important;
  height:6px !important;

  flex:0 0 auto !important;
  margin-left:2px !important;

  border-right:1.5px solid currentColor !important;
  border-bottom:1.5px solid currentColor !important;

  transform:rotate(45deg) translateY(-2px) !important;
}

/* Old standalone caret disappears. */
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-caret{
  display:none !important;
}

/* Real button owns the same hitbox, but stays invisible. */
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown > .site-nav-toggle{
  display:block !important;
  position:absolute !important;
  inset:0 !important;

  width:100% !important;
  height:100% !important;
  min-width:0 !important;

  margin:0 !important;
  padding:0 !important;

  border:0 !important;
  outline:none !important;

  background:transparent !important;
  box-shadow:none !important;

  opacity:0 !important;
  cursor:pointer !important;
  z-index:5 !important;

  -webkit-tap-highlight-color:transparent !important;
}

:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown > .site-nav-toggle:focus,
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown > .site-nav-toggle:focus-visible,
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown > .site-nav-toggle:active{
  outline:none !important;
  box-shadow:none !important;
  background:transparent !important;
}

/* Same blue open-state box everywhere. */
:is(
  body[data-page="landing"],
  body[data-page="resources"],
  body[data-page="product"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"],
  body[data-page="pricing"]
) .site-nav-item.has-dropdown.is-open > a{
  background:rgba(18,93,255,.09) !important;
  color:#125dff !important;
}

/* Unified Landing Features Solutions navbar standard. */
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav{
  display:flex !important;
  align-items:center !important;
  overflow:visible !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > a,
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item > a{
  font-size:17px !important;
  font-weight:650 !important;
  color:rgba(7,26,68,.75) !important;
  white-space:nowrap !important;
}

/* Canonical order. */
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > .site-nav-item:has(> a[href="/features"]){
  order:1 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > .site-nav-item:has(> a[href="/solutions"]){
  order:2 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > .site-nav-item:has(> a[href="/resources"]){
  order:3 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > a[href="/pricing"]{
  order:4 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > a[href="/resources#contact"]{
  order:5 !important;
}

/* Text + caret = one visual control. */
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown{
  position:relative !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown > a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  min-height:36px !important;
  gap:7px !important;
  padding:0 8px !important;

  border-radius:10px !important;
  line-height:1 !important;
  pointer-events:none !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown > a::after{
  content:"" !important;
  display:block !important;

  width:6px !important;
  height:6px !important;

  flex:0 0 auto !important;
  margin-left:2px !important;

  border-right:1.5px solid currentColor !important;
  border-bottom:1.5px solid currentColor !important;

  transform:rotate(45deg) translateY(-2px) !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-caret{
  display:none !important;
}

/* Invisible real button owns exactly the label hitbox. */
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown > .site-nav-toggle{
  display:block !important;
  position:absolute !important;
  inset:0 !important;

  width:100% !important;
  height:100% !important;
  min-width:0 !important;

  margin:0 !important;
  padding:0 !important;

  border:0 !important;
  outline:none !important;
  background:transparent !important;
  box-shadow:none !important;

  opacity:0 !important;
  cursor:pointer !important;
  z-index:5 !important;
}

:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown > .site-nav-toggle:focus,
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown > .site-nav-toggle:focus-visible,
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown > .site-nav-toggle:active{
  outline:none !important;
  box-shadow:none !important;
  background:transparent !important;
}

/* Same blue open-state box. */
:is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item.has-dropdown.is-open > a{
  background:rgba(18,93,255,.09) !important;
  color:#125dff !important;
}

@media (min-width:761px) and (max-width:1240px){
  :is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > a,
  :is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item > a{
    font-size:15px !important;
    font-weight:650 !important;
  }
}

@media (max-width:760px){
  :is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav > a,
  :is(
  body[data-page="landing"],
  body[data-page="features"],
  body[data-page="feature-detail"],
  body[data-page="solutions"]
) .site-nav-item > a{
    font-size:12px !important;
    font-weight:650 !important;
  }
}

/* BEGIN FRAME_SHARED_NAV_V1 */
:root { --frame-shared-nav-ready: 1; }

/* Isolate only the common header from old page-specific header rules. */
#frame-shared-navbar,
#frame-shared-navbar *,
#frame-shared-navbar-space {
  all:revert !important;
  box-sizing:border-box !important;
}
#frame-shared-navbar::before,
#frame-shared-navbar::after,
#frame-shared-navbar *::before,
#frame-shared-navbar *::after { content:none !important; }
#frame-shared-navbar-space {
  display:block !important; width:100% !important;
  height:var(--fn-header-height,98px) !important;
  margin:0 !important; padding:0 !important; pointer-events:none !important;
}
#frame-shared-navbar {
  position:fixed !important; inset:0 0 auto !important; z-index:3000 !important;
  display:grid !important;
  grid-template-areas:"brand nav auth" !important;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) !important;
  grid-template-rows:auto !important;
  align-items:center !important; gap:0 20px !important;
  width:auto !important; min-width:0 !important; max-width:none !important;
  height:auto !important; min-height:98px !important;
  margin:0 !important; padding:0 clamp(24px,4vw,58px) !important;
  border:0 !important; border-bottom:1px solid rgba(7,26,68,.06) !important;
  border-radius:0 !important; background:#fff !important;
  box-shadow:0 12px 32px rgba(7,26,68,.08) !important;
  overflow:visible !important; transform:none !important; animation:none !important;
}
#frame-shared-navbar * {
  font-family:"Avenir Next","Segoe UI","Helvetica Neue",Arial,sans-serif !important;
  font-style:normal !important; letter-spacing:normal !important;
  text-transform:none !important;
}
#frame-shared-navbar .fn-brand {
  grid-area:brand !important; justify-self:start !important;
  display:flex !important; align-items:center !important;
  width:250px !important; max-width:100% !important; min-width:0 !important;
  margin:0 !important; padding:0 !important; text-decoration:none !important;
}
#frame-shared-navbar .fn-logo {
  display:block !important; width:100% !important; height:90px !important;
  object-fit:contain !important; object-position:left center !important;
  margin:0 !important; padding:0 !important; border:0 !important;
}
#frame-shared-navbar .fn-nav {
  grid-area:nav !important; justify-self:center !important;
  display:flex !important; flex-wrap:wrap !important;
  align-items:center !important; justify-content:center !important;
  gap:6px 26px !important; margin:0 !important; padding:0 !important;
  min-width:0 !important; max-width:100% !important;
}
#frame-shared-navbar .fn-item { display:block !important; position:static !important; }
#frame-shared-navbar .fn-control {
  display:inline-flex !important; align-items:center !important; justify-content:center !important;
  gap:9px !important; min-height:44px !important;
  margin:0 !important; padding:0 8px !important;
  border:0 !important; border-radius:10px !important; background:transparent !important;
  font-size:17px !important; font-weight:650 !important; line-height:1.2 !important;
  color:rgba(7,26,68,.75) !important; white-space:nowrap !important;
  text-decoration:none !important; cursor:pointer !important;
}
#frame-shared-navbar .fn-caret {
  display:block !important; width:6px !important; height:6px !important;
  flex:0 0 6px !important; border:0 !important;
  border-right:1.5px solid currentColor !important;
  border-bottom:1.5px solid currentColor !important;
  transform:translateY(-2px) rotate(45deg) !important;
}
#frame-shared-navbar .fn-control[aria-expanded="true"],
#frame-shared-navbar .fn-control:active,
#frame-shared-navbar .fn-control:focus-visible {
  background:rgba(18,93,255,.09) !important; color:#125dff !important;
}
#frame-shared-navbar :is(a,button):focus-visible {
  outline:2px solid #125dff !important; outline-offset:3px !important;
}
#frame-shared-navbar .fn-auth {
  grid-area:auth !important; justify-self:end !important;
  display:flex !important; align-items:center !important; gap:16px !important;
  min-width:0 !important; margin:0 !important; padding:0 !important;
}
#frame-shared-navbar .fn-auth a {
  display:inline-flex !important; align-items:center !important; justify-content:center !important;
  min-height:44px !important; padding:0 4px !important;
  color:rgba(7,26,68,.75) !important; font-size:14px !important;
  font-weight:650 !important; line-height:1.2 !important;
  white-space:nowrap !important; text-decoration:none !important;
}
#frame-shared-navbar .fn-auth .fn-signup {
  min-height:48px !important; padding:0 25px !important;
  color:#fff !important; font-weight:700 !important;
  background:linear-gradient(135deg,#125dff,#1045cc) !important;
  border-radius:16px !important; box-shadow:0 12px 26px rgba(18,93,255,.16) !important;
}
#frame-shared-navbar .fn-menu {
  display:flex !important; flex-direction:column !important;
  position:absolute !important; top:100% !important;
  left:var(--fn-panel-left,12px) !important;
  width:300px !important; max-width:calc(100% - 24px) !important;
  max-height:var(--fn-panel-height,60vh) !important;
  margin:0 !important; padding:8px !important;
  overflow:auto !important; overscroll-behavior:contain !important;
  border:1px solid #dce7ff !important; border-radius:16px !important;
  background:#fff !important; box-shadow:0 18px 42px rgba(7,26,68,.16) !important;
  z-index:1 !important;
}
#frame-shared-navbar .fn-menu[hidden] { display:none !important; }
#frame-shared-navbar .fn-menu a {
  display:block !important; width:100% !important; min-width:0 !important;
  min-height:44px !important; margin:0 !important; padding:12px 14px !important;
  border-radius:9px !important; color:#071a44 !important; font-size:14px !important;
  font-weight:600 !important; line-height:1.35 !important; text-decoration:none !important;
  white-space:normal !important; overflow-wrap:anywhere !important;
}
#frame-shared-navbar .fn-menu a:hover,
#frame-shared-navbar .fn-menu a:focus-visible { background:#edf4ff !important; }
@media (max-width:1240px) {
  #frame-shared-navbar {
    grid-template-areas:"brand auth" "nav nav" !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;
    min-height:0 !important; gap:6px 20px !important; padding:6px 28px 12px !important;
  }
  #frame-shared-navbar .fn-brand { width:220px !important; }
  #frame-shared-navbar .fn-logo { height:70px !important; }
  #frame-shared-navbar .fn-nav { width:100% !important; gap:6px 24px !important; }
  #frame-shared-navbar .fn-control { font-size:15px !important; }
}
@media (max-width:760px) {
  #frame-shared-navbar { padding:4px 10px 10px !important; gap:4px 8px !important; }
  #frame-shared-navbar .fn-brand { width:150px !important; }
  #frame-shared-navbar .fn-logo { height:48px !important; }
  #frame-shared-navbar .fn-nav { gap:2px 6px !important; }
  #frame-shared-navbar .fn-control { font-size:12px !important; padding:0 6px !important; gap:7px !important; }
  #frame-shared-navbar .fn-auth { gap:6px !important; }
  #frame-shared-navbar .fn-auth a { font-size:12px !important; }
  #frame-shared-navbar .fn-auth .fn-signup { min-height:44px !important; padding:0 12px !important; border-radius:10px !important; }
  #frame-shared-navbar .fn-menu { width:calc(100% - 24px) !important; }
}
/* END FRAME_SHARED_NAV_V1 */

/* Hide Publication Guides Resources eyebrow. */
body[data-page="resources"] .resources-eyebrow{
  display:none !important;
}

/* Resources top-left blue glow. */
body[data-page="resources"]{
  background:
    radial-gradient(
      circle at 5% 3%,
      rgba(20,87,255,.20) 0%,
      rgba(20,87,255,.10) 18%,
      rgba(20,87,255,0) 38%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #f5f8fd 46%,
      #eef3fb 100%
    ) !important;
}

/* Resources publication library motion. */
body[data-page="resources"] .resources-hero-panel{
  transform-origin:center center;
  will-change:transform;
  animation:resourcesLibraryFloat 6.8s ease-in-out infinite;
}

body[data-page="resources"] .resources-panel-header > span{
  will-change:transform, opacity;
  animation:resourcesLibraryDot 1.8s ease-in-out infinite;
}

body[data-page="resources"] .resources-panel-header > span:nth-child(1){
  animation-delay:0s;
}

body[data-page="resources"] .resources-panel-header > span:nth-child(2){
  animation-delay:.18s;
}

body[data-page="resources"] .resources-panel-header > span:nth-child(3){
  animation-delay:.36s;
}

@keyframes resourcesLibraryFloat{
  0%,100%{
    transform:translateY(0) rotate(-.3deg);
  }
  50%{
    transform:translateY(-12px) rotate(.3deg);
  }
}

@keyframes resourcesLibraryDot{
  0%,100%{
    transform:translateY(0) scale(1);
    opacity:.72;
  }
  50%{
    transform:translateY(-4px) scale(1.12);
    opacity:1;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="resources"] .resources-hero-panel,
  body[data-page="resources"] .resources-panel-header > span{
    animation:none !important;
    transform:none !important;
  }
}

/* Resources publication library float fix. */
body[data-page="resources"] .resources-hero-panel{
  animation:resourcesLibraryFloatV2 6.8s ease-in-out infinite !important;
  will-change:translate !important;
}

@keyframes resourcesLibraryFloatV2{
  0%,100%{
    translate:0 0;
  }
  50%{
    translate:0 -14px;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="resources"] .resources-hero-panel{
    animation:none !important;
    translate:0 0 !important;
  }
}

/* BEGIN FRAME_SHARED_FOOTER_V1 */
:root { --frame-shared-footer-ready: 1; }
#frame-shared-footer {
  all:initial !important;
  display:block !important;
  box-sizing:border-box !important;
  position:relative !important;
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  height:auto !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  float:none !important;
  clear:both !important;
  transform:none !important;
  animation:none !important;
  direction:ltr !important;
  writing-mode:horizontal-tb !important;
}
#frame-shared-footer::before,
#frame-shared-footer::after { content:none !important; }
/* END FRAME_SHARED_FOOTER_V1 */

/* Hide Contact from all public navbars. */

/* Shared navbar */
#frame-shared-navbar .fn-nav > a[data-frame-contact="true"]{
  display:none !important;
}

/* Fallback / legacy navbar */
header.site-topbar .site-nav > a[href="/resources#contact"],
header.site-topbar .site-nav > a[href="/#contact"]{
  display:none !important;
}

/* Publication Decision Library title alignment. */
body[data-page="resources"] .resources-panel-header strong{
  margin-left:4px !important;
}

/* Publication Decision Library vertical alignment. */
body[data-page="resources"] .resources-panel-header strong{
  position:relative !important;
  top:-2px !important;
}

/* Center Resources Guide path title. */
body[data-page="resources"] .resources-panel-body article > span{
  text-align:center !important;
  width:100% !important;
}

/* Center Verify Before Submission title. */
body[data-page="resources"] .resources-mini-grid div > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
}

/* Center Practical guides heading. */
body[data-page="resources"] .resources-section-head{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

body[data-page="resources"] .resources-section-head h2{
  text-align:center !important;
}

/* Center Resources hero action buttons. */
body[data-page="resources"] .resources-actions{
  justify-content:center !important;
  width:100% !important;
}

/* Center Resources category cards completely. */
body[data-page="resources"] .resource-category-card{
  text-align:center !important;
}

body[data-page="resources"] .resource-category-card .resource-icon{
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="resources"] .resource-category-card h3,
body[data-page="resources"] .resource-category-card p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="resources"] .resource-category-card a{
  display:flex !important;
  width:max-content !important;
  max-width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-content:center !important;
  text-align:center !important;
}

/* Align Resources category Read more links. */
body[data-page="resources"] .resource-category-card{
  display:flex !important;
  flex-direction:column !important;
}

body[data-page="resources"] .resource-category-card a{
  margin-top:auto !important;
  padding-top:18px !important;
}

/* Center featured guide library cards. */
body[data-page="resources"] .resource-guide-grid{
  text-align:center !important;
}

body[data-page="resources"] .resource-guide-card{
  text-align:center !important;
}

body[data-page="resources"] .resource-guide-card span,
body[data-page="resources"] .resource-guide-card h3,
body[data-page="resources"] .resource-guide-card p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="resources"] .resource-guide-card span{
  justify-content:center !important;
}

body[data-page="resources"] #featured-guides .resources-section-head,
body[data-page="resources"] #featured-guides .resources-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center What Frame checks content. */
body[data-page="resources"] .resources-methodology{
  text-align:center !important;
}

body[data-page="resources"] .resources-methodology h2,
body[data-page="resources"] .resources-methodology p,
body[data-page="resources"] .resources-methodology span,
body[data-page="resources"] .resources-methodology strong{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="resources"] .resources-signal-grid{
  justify-content:center !important;
}

/* Equalize What Frame checks signal cards. */
body[data-page="resources"] .resources-signal-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0,1fr)) !important;
  gap:12px !important;
  width:100% !important;
}

body[data-page="resources"] .resources-signal-grid > span{
  width:100% !important;
  justify-content:center !important;
  text-align:center !important;
  margin:0 !important;
}

@media (max-width:760px){
  body[data-page="resources"] .resources-signal-grid{
    grid-template-columns:1fr !important;
  }
}

/* Desktop-only Verification needs card alignment. */
@media (min-width:1024px){
  body[data-page="resources"] .frame-verification-needs-card{
    position:relative !important;
    left:-18px !important;
  }
}

/* Desktop Verification needs below APC OA. */
@media (min-width:1024px){
  body[data-page="resources"] .resources-signal-grid .frame-verification-needs-card{
    grid-column:2 !important;
    position:static !important;
    left:auto !important;
    margin:0 !important;
  }
}

/* Center Resources verification intro block. */
body[data-page="resources"] .resources-checklist{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

body[data-page="resources"] .resources-checklist h2,
body[data-page="resources"] .resources-checklist > p{
  width:100% !important;
  max-width:760px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

/* Center Resources final CTA copy. */
body[data-page="resources"] .resources-final{
  text-align:center !important;
}

body[data-page="resources"] .resources-final h2,
body[data-page="resources"] .resources-final p{
  width:100% !important;
  max-width:760px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

/* Nudge Resources final CTA copy right on desktop. */
@media (min-width:1024px){
  body[data-page="resources"] .resources-final h2,
  body[data-page="resources"] .resources-final p{
    position:relative !important;
    left:10px !important;
  }
}

/* Hide Read more links in shortlist learning cards. */
body[data-page="resources"] .resource-category-card a{
  display:none !important;
}

/* Tablet Verification needs below APC OA. */
@media (min-width:761px) and (max-width:1023px){
  body[data-page="resources"] .resources-signal-grid .frame-verification-needs-card{
    grid-column:2 !important;
    position:static !important;
    left:auto !important;
    margin:0 !important;
  }
}

/* Center Resources final CTA on tablet. */
@media (min-width:761px) and (max-width:1023px){
  body[data-page="resources"] .resources-final h2,
  body[data-page="resources"] .resources-final p{
    position:static !important;
    left:auto !important;
    width:100% !important;
    max-width:760px !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
}

/* True-center Resources final CTA on tablet. */
@media (min-width:761px) and (max-width:1023px){
  body[data-page="resources"] .frame-resources-final-copy{
    width:100% !important;
    max-width:none !important;
    flex:1 1 100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }

  body[data-page="resources"] .frame-resources-final-copy h2,
  body[data-page="resources"] .frame-resources-final-copy p{
    position:static !important;
    left:auto !important;
    width:100% !important;
    max-width:none !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
}

/* Verification checklist anchor offset. */
body[data-page="resources"] #verification-checklist{
  scroll-margin-top:120px;
}

/* Frame methodology anchor offset. */
body[data-page="resources"] #frame-methodology{
  scroll-margin-top:120px;
}

/* Center Manuscript profiling hero content. */
body[data-page="feature-detail"] .feature-detail-hero .feature-detail-copy{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="feature-detail"] .feature-detail-hero .feature-detail-copy h1,
body[data-page="feature-detail"] .feature-detail-hero .feature-detail-copy .feature-detail-lead{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="feature-detail"] .feature-detail-hero .feature-detail-actions{
  justify-content:center !important;
  align-items:center !important;
  width:100% !important;
}

/* Manuscript profiling preview motion. */
body[data-page="feature-detail"] .feature-profile-preview{
  will-change:translate;
  animation:featureProfilePreviewFloat 6.8s ease-in-out infinite;
}

body[data-page="feature-detail"] .feature-preview-bar > span{
  will-change:transform, opacity;
  animation:featureProfilePreviewDot 1.8s ease-in-out infinite;
}

body[data-page="feature-detail"] .feature-preview-bar > span:nth-child(1){
  animation-delay:0s;
}

body[data-page="feature-detail"] .feature-preview-bar > span:nth-child(2){
  animation-delay:.18s;
}

body[data-page="feature-detail"] .feature-preview-bar > span:nth-child(3){
  animation-delay:.36s;
}

@keyframes featureProfilePreviewFloat{
  0%,100%{
    translate:0 0;
  }
  50%{
    translate:0 -14px;
  }
}

@keyframes featureProfilePreviewDot{
  0%,100%{
    transform:translateY(0) scale(1);
    opacity:.72;
  }
  50%{
    transform:translateY(-4px) scale(1.12);
    opacity:1;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="feature-detail"] .feature-profile-preview,
  body[data-page="feature-detail"] .feature-preview-bar > span{
    animation:none !important;
    translate:0 0 !important;
    transform:none !important;
  }
}

/* Manuscript profiling preview float top fix. */
body[data-page="feature-detail"] .feature-profile-preview{
  position:relative !important;
  animation:featureProfilePreviewFloatTop 6.8s ease-in-out infinite !important;
  will-change:top !important;
}

@keyframes featureProfilePreviewFloatTop{
  0%,100%{
    top:0;
  }
  50%{
    top:-14px;
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="feature-detail"] .feature-profile-preview{
    top:0 !important;
    animation:none !important;
  }
}

/* Center Manuscript Study Draft card. */
body[data-page="feature-detail"] .feature-mini-panel.manuscript{
  text-align:center !important;
}

body[data-page="feature-detail"] .feature-mini-panel.manuscript > span,
body[data-page="feature-detail"] .feature-mini-panel.manuscript > strong{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Exact Manuscript sheet title alignment. */
body[data-page="feature-detail"] .feature-manuscript-sheet > span,
body[data-page="feature-detail"] .feature-manuscript-sheet > strong{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Hide Manuscript sheet DOCX and bars. */
body[data-page="feature-detail"] .feature-manuscript-sheet .feature-lines,
body[data-page="feature-detail"] .feature-manuscript-sheet > em{
  display:none !important;
}

/* Manuscript profiling Study Draft loader bars. */
body[data-page="feature-detail"] .feature-study-loader{
  width:100% !important;
  max-width:220px !important;
  margin:22px auto 0 !important;
  display:grid !important;
  gap:8px !important;
}

body[data-page="feature-detail"] .feature-study-loader i{
  display:block !important;
  height:8px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  border-radius:999px !important;

  background-image:
    linear-gradient(
      90deg,
      rgba(7,26,68,.18) 0%,
      rgba(18,93,255,.42) 45%,
      rgba(125,174,255,.68) 52%,
      rgba(18,93,255,.28) 60%,
      rgba(7,26,68,.10) 100%
    ) !important;

  background-size:240% 100% !important;
  animation:featureStudyLoaderShimmer 2.2s ease-in-out infinite !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(1){
  width:88% !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(2){
  width:72% !important;
  animation-delay:.18s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(3){
  width:94% !important;
  animation-delay:.34s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(4){
  width:64% !important;
  animation-delay:.18s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(5){
  width:82% !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(6){
  width:58% !important;
  animation-delay:.34s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(7){
  width:90% !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(8){
  width:69% !important;
  animation-delay:.18s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(9){
  width:80% !important;
  animation-delay:.34s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(10){
  width:52% !important;
  animation-delay:.18s !important;
}

@media (prefers-reduced-motion: reduce){
  body[data-page="feature-detail"] .feature-study-loader i{
    animation:none !important;
  }
}


@keyframes featureStudyLoaderShimmer{
  0%{
    background-position:120% 0;
    opacity:.72;
  }
  50%{
    opacity:1;
  }
  100%{
    background-position:-120% 0;
    opacity:.82;
  }
}

/* Smooth continuous Study Draft shimmer. */
body[data-page="feature-detail"] .feature-study-loader i{
  position:relative !important;
  overflow:hidden !important;

  background:
    linear-gradient(
      90deg,
      rgba(7,26,68,.13),
      rgba(18,93,255,.18),
      rgba(7,26,68,.10)
    ) !important;

  animation:none !important;
}

body[data-page="feature-detail"] .feature-study-loader i::before{
  content:"" !important;
  position:absolute !important;
  top:0 !important;
  bottom:0 !important;
  left:0 !important;

  width:42% !important;

  border-radius:inherit !important;

  background:
    linear-gradient(
      90deg,
      rgba(126,174,255,0) 0%,
      rgba(126,174,255,.18) 20%,
      rgba(86,148,255,.72) 50%,
      rgba(126,174,255,.18) 80%,
      rgba(126,174,255,0) 100%
    ) !important;

  transform:translateX(-260%);
  will-change:transform;

  animation:
    featureStudyContinuousSweep
    2.8s
    linear
    infinite !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(2)::before{
  animation-delay:-.35s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(3)::before{
  animation-delay:-.7s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(4)::before{
  animation-delay:-1.05s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(5)::before{
  animation-delay:-1.4s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(6)::before{
  animation-delay:-1.75s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(7)::before{
  animation-delay:-2.1s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(8)::before{
  animation-delay:-2.45s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(9)::before{
  animation-delay:-.9s !important;
}

body[data-page="feature-detail"] .feature-study-loader i:nth-child(10)::before{
  animation-delay:-1.8s !important;
}

@keyframes featureStudyContinuousSweep{
  from{
    transform:translateX(-260%);
  }
  to{
    transform:translateX(340%);
  }
}

@media (prefers-reduced-motion: reduce){
  body[data-page="feature-detail"] .feature-study-loader i::before{
    animation:none !important;
    display:none !important;
  }
}

/* Force Manuscript preview title casing. */
.feature-profile-preview .feature-preview-bar strong{
  font-size:0 !important;
}

.feature-profile-preview .feature-preview-bar strong::after{
  content:"Manuscript → Extracted Signals" !important;
  font-size:13px !important;
  font-weight:600 !important;
}

/* Center Extracted Signals panel heading. */
.feature-profile-preview .feature-signal-panel > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Manuscript profiling final copy. */
body[data-page="feature-detail"] .feature-detail-final > div{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="feature-detail"] .feature-detail-final > div h2,
body[data-page="feature-detail"] .feature-detail-final > div p{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center What Frame extracts heading. */
body.frame-manuscript-profiling .feature-detail-section-head.frame-extracts-heading{
  width:100% !important;
  text-align:center !important;
}

body.frame-manuscript-profiling .feature-detail-section-head.frame-extracts-heading h2{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* True-center What Frame extracts heading. */
body.frame-manuscript-profiling .feature-detail-section-head.frame-extracts-heading{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  text-align:center !important;
}

body.frame-manuscript-profiling .feature-detail-section-head.frame-extracts-heading h2{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  text-align:center !important;
}

/* Center Manuscript profiling card descriptions. */
body.frame-manuscript-profiling .feature-detail-section .feature-detail-card > p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Manuscript profiling card titles. */
body.frame-manuscript-profiling .feature-detail-section .feature-detail-card > h3{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Manuscript profiling card icons. */
body.frame-manuscript-profiling .feature-detail-section .feature-detail-card > .feature-detail-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Manuscript profiling upload button on mobile. */
@media (max-width:760px){
  body.frame-manuscript-profiling .feature-detail-final{
    text-align:center !important;
  }

  body.frame-manuscript-profiling .feature-detail-final > .feature-detail-button.primary{
    display:inline-flex !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Manuscript profiling upload button on tablet. */
@media (min-width:761px) and (max-width:1120px){
  body.frame-manuscript-profiling .feature-detail-final{
    text-align:center !important;
  }

  body.frame-manuscript-profiling .feature-detail-final > .feature-detail-button.primary{
    display:flex !important;
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Journal matching upload button on mobile and tablet. */
@media (max-width:1120px){
  body.frame-journal-matching .feature-detail-final{
    text-align:center !important;
  }

  body.frame-journal-matching .feature-detail-final > .feature-detail-button.primary{
    display:flex !important;
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Journal matching study profile labels. */
body.frame-journal-matching .feature-match-profile > span,
body.frame-journal-matching .feature-match-profile > strong{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Journal matching shortlist preview heading. */
body.frame-journal-matching .feature-shortlist-panel > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Journal matching ranking section. */
body.frame-journal-matching .feature-detail-section-head{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  text-align:center !important;
}

body.frame-journal-matching .feature-detail-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-journal-matching .feature-detail-section .feature-detail-card{
  text-align:center !important;
}

body.frame-journal-matching .feature-detail-section .feature-detail-card > .feature-detail-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-journal-matching .feature-detail-section .feature-detail-card > h3,
body.frame-journal-matching .feature-detail-section .feature-detail-card > p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Title Case Journal matching card headings. */
body.frame-journal-matching .feature-detail-section .feature-detail-card > h3{
  text-transform:capitalize !important;
}

/* Center Trust verification panel headings. */
body.frame-trust-page .feature-trust-status > span,
body.frame-trust-page .feature-checklist-panel > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Trust Signal Quality heading. */
body.frame-trust-page .feature-trust-status > strong{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Trust visible section and cards. */
body.frame-trust-page .feature-detail-section-head{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  text-align:center !important;
}

body.frame-trust-page .feature-detail-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-trust-page .feature-detail-section .feature-detail-card{
  text-align:center !important;
}

body.frame-trust-page .feature-detail-section .feature-detail-card > .feature-detail-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-trust-page .feature-detail-section .feature-detail-card > h3,
body.frame-trust-page .feature-detail-section .feature-detail-card > p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Trust upload button on mobile and tablet. */
@media (max-width:1120px){
  body.frame-trust-page .feature-detail-final{
    text-align:center !important;
  }

  body.frame-trust-page .feature-detail-final > .feature-detail-button.primary{
    display:flex !important;
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Compare journals section and cards. */
body.frame-compare-page .feature-detail-section-head{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  text-align:center !important;
}

body.frame-compare-page .feature-detail-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-compare-page .feature-detail-section .feature-detail-card{
  text-align:center !important;
}

body.frame-compare-page .feature-detail-section .feature-detail-card > .feature-detail-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-compare-page .feature-detail-section .feature-detail-card > h3,
body.frame-compare-page .feature-detail-section .feature-detail-card > p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Title Case Compare journals card headings. */
body.frame-compare-page .feature-detail-section .feature-detail-card > h3{
  text-transform:capitalize !important;
}

/* Title Case Trust verification card headings. */
body.frame-trust-page .feature-detail-section .feature-detail-card > h3{
  text-transform:capitalize !important;
}

/* Center Compare journals upload button on mobile and tablet. */
@media (max-width:1120px){
  body.frame-compare-page .feature-detail-final{
    text-align:center !important;
  }

  body.frame-compare-page .feature-detail-final > .feature-detail-button.primary{
    display:flex !important;
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Compare journals column headings. */
body.frame-compare-page .feature-compare-column > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Advisory report preview heading. */
body.frame-advisory-page .feature-report-page > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Advisory Submission Route heading. */
body.frame-advisory-page .feature-report-page > strong{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Advisory action section and cards. */
body.frame-advisory-page .feature-detail-section-head{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  text-align:center !important;
}

body.frame-advisory-page .feature-detail-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-advisory-page .feature-detail-section .feature-detail-card{
  text-align:center !important;
}

body.frame-advisory-page .feature-detail-section .feature-detail-card > .feature-detail-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-advisory-page .feature-detail-section .feature-detail-card > h3,
body.frame-advisory-page .feature-detail-section .feature-detail-card > p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Title Case Advisory report card headings. */
body.frame-advisory-page .feature-detail-section .feature-detail-card > h3{
  text-transform:capitalize !important;
}

/* Center Advisory upload button on mobile and tablet. */
@media (max-width:1120px){
  body.frame-advisory-page .feature-detail-final{
    text-align:center !important;
  }

  body.frame-advisory-page .feature-detail-final > .feature-detail-button.primary{
    display:flex !important;
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Solutions upload button on mobile and tablet. */
@media (max-width:1120px){
  body.frame-solutions-page .site-button.primary,
  body.frame-solutions-page .feature-detail-button.primary{
    display:flex !important;
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* True center Solutions upload button mobile tablet. */
@media (max-width:1120px){
  body.frame-solutions-page .solutions-actions{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    width:100% !important;
  }

  body.frame-solutions-page .solutions-actions .solutions-button.primary{
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Solutions final copy on mobile and tablet. */
@media (max-width:1120px){
  body.frame-solutions-page .solutions-final > div:first-child{
    width:100% !important;
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  body.frame-solutions-page .solutions-final h2,
  body.frame-solutions-page .solutions-final p{
    width:100% !important;
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Solutions workflow heading. */
body.frame-solutions-page .solutions-workflow h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Solutions research role heading. */
body.frame-solutions-page .solutions-use-cases h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Solutions research role heading exact. */
body.frame-solutions-page .solutions-section-head{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-solutions-page .solutions-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Remove Solutions use-case Read more links. */
.solutions-use-grid .solutions-use-card > a{
  display:none !important;
}

/* Center Solutions use-case cards and title-case headings. */
body.frame-solutions-page .solutions-use-grid .solutions-use-card{
  text-align:center !important;
}

body.frame-solutions-page .solutions-use-grid .solutions-use-card > .solutions-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-solutions-page .solutions-use-grid .solutions-use-card > h3,
body.frame-solutions-page .solutions-use-grid .solutions-use-card > p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body.frame-solutions-page .solutions-use-grid .solutions-use-card > h3{
  text-transform:capitalize !important;
}

/* Center Solutions Journal route heading. */
body.frame-solutions-page .solutions-route-card > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Solutions route card main heading. */
body.frame-solutions-page .solutions-route-card > strong{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Solutions hero copy. */
body.frame-solutions-page .solutions-hero-copy{
  width:100% !important;
  text-align:center !important;
}

body.frame-solutions-page .solutions-hero-copy h1,
body.frame-solutions-page .solutions-hero-copy .solutions-lead{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* True center Solutions hero text. */
body.frame-solutions-page .solutions-hero > div:first-child{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
}

body.frame-solutions-page .solutions-hero > div:first-child > h1,
body.frame-solutions-page .solutions-hero > div:first-child > .solutions-lead{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Solutions top-left glow. */
body.frame-solutions-page{
  position:relative;
  overflow-x:hidden;
}

body.frame-solutions-page::before{
  content:"";
  position:fixed;
  top:-140px;
  left:-180px;
  width:520px;
  height:520px;
  border-radius:50%;
  pointer-events:none;
  z-index:-1;

  background:
    radial-gradient(
      circle,
      rgba(18,93,255,.18) 0%,
      rgba(84,137,255,.11) 34%,
      rgba(18,93,255,.05) 54%,
      rgba(18,93,255,0) 74%
    );

  filter:blur(12px);
}

/* Center Pricing hero copy on all devices. */
.pricing-page .pricing-hero{
  text-align:center !important;
}

.pricing-page .pricing-hero > h1,
.pricing-page .pricing-hero > .pricing-lead{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Pricing Start free button on mobile and tablet. */
@media (max-width:1120px){
  .pricing-page .pricing-actions{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    width:100% !important;
  }

  .pricing-page .pricing-actions .pricing-button.primary{
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Center Pricing Start free button on all devices. */
.pricing-page .pricing-actions{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100% !important;
}

.pricing-page .pricing-actions .pricing-button.primary{
  width:max-content !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Match Pro pricing card styling to Researcher. */
body[data-page="pricing"] .pricing-tier[data-pricing-tier="pro"]{
  border-color:rgba(20,87,255,.55) !important;
  background:linear-gradient(180deg,#fff 0%,#f4f8ff 100%) !important;
  box-shadow:0 24px 70px rgba(20,87,255,.13) !important;
}

body[data-page="pricing"] .pricing-tier[data-pricing-tier="pro"] .pricing-card-button{
  border-color:transparent !important;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong)) !important;
  color:#fff !important;
  box-shadow:0 16px 36px rgba(20,87,255,.24) !important;
}

/* Center Pricing billing toggle on mobile and tablet. */
@media (max-width:1120px){
  body[data-page="pricing"] .pricing-billing-toggle{
    display:flex !important;
    width:max-content !important;
    margin-left:auto !important;
    margin-right:auto !important;
    justify-content:center !important;
  }
}

/* Center Pricing comparison heading and responsive table. */
body[data-page="pricing"] .pricing-comparison .pricing-section-head{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="pricing"] .pricing-comparison .pricing-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media (max-width:1120px){
  body[data-page="pricing"] .pricing-comparison-table{
    width:100% !important;
    max-width:760px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  body[data-page="pricing"] .pricing-comparison-head,
  body[data-page="pricing"] .pricing-comparison-row{
    text-align:center !important;
    justify-items:center !important;
  }

  body[data-page="pricing"] .pricing-comparison-head > *,
  body[data-page="pricing"] .pricing-comparison-row > *{
    width:100% !important;
    text-align:center !important;
  }
}

/* Center Pricing value section and cards. */
body[data-page="pricing"] .pricing-values .pricing-section-head{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="pricing"] .pricing-values .pricing-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="pricing"] .pricing-value-card{
  text-align:center !important;
}

body[data-page="pricing"] .pricing-value-card > .pricing-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="pricing"] .pricing-value-card > h3,
body[data-page="pricing"] .pricing-value-card > p{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="pricing"] .pricing-value-card > h3{
  text-transform:capitalize !important;
}

/* Center Pricing FAQ heading. */
body[data-page="pricing"] .pricing-faq .pricing-section-head{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="pricing"] .pricing-faq .pricing-section-head h2{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Pricing final copy. */
body[data-page="pricing"] .pricing-final > div:first-child{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="pricing"] .pricing-final h2,
body[data-page="pricing"] .pricing-final > div:first-child > p{
  width:100% !important;
  max-width:none !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Center Pricing final Start free button on all devices. */
body[data-page="pricing"] .pricing-final .pricing-actions{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100% !important;
}

body[data-page="pricing"] .pricing-final .pricing-actions .pricing-button.primary{
  width:max-content !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Advisory Why Risky exclamation icon. */
body.frame-advisory-page .feature-detail-card .frame-risk-exclamation{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  height:100% !important;
  font-size:24px !important;
  line-height:1 !important;
  font-weight:700 !important;
  color:#1457ff !important;
  font-family:Arial,sans-serif !important;
}

/* Resources featured guides anchor offset. */
body[data-page="resources"] #featured-guides{
  scroll-margin-top:120px;
}

/* Resources Publication Decision Library navy header. */
body[data-page="resources"] .resources-panel-header{
  min-height:66px !important;

  background:
    radial-gradient(
      circle at 72% 0%,
      rgba(92,150,255,.34),
      transparent 38%
    ),
    linear-gradient(
      100deg,
      #020b26 0%,
      #061b4f 48%,
      #0d45c7 100%
    ) !important;

  border-bottom:1px solid rgba(255,255,255,.10) !important;

  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,.10),
    0 8px 22px rgba(7,26,68,.14) !important;
}

body[data-page="resources"] .resources-panel-header strong{
  color:#fff !important;
  font-size:16px !important;
  font-weight:700 !important;
  letter-spacing:.01em !important;
}

body[data-page="resources"] .resources-panel-header > span{
  width:8px !important;
  height:8px !important;
  background:rgba(255,255,255,.45) !important;
}

body[data-page="resources"] .resources-panel-header > span:nth-child(3){
  background:#9cc2ff !important;
}

/* Center landing Shortlist ready label. */
body[data-page="landing"] .frame-final-preview > span{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Swap landing final preview and upload CTA. */
body[data-page="landing"] .frame-final > div:first-child{
  order:1 !important;
}

body[data-page="landing"] .frame-final > .frame-final-preview{
  order:2 !important;
}

body[data-page="landing"] .frame-final > .frame-hero-actions{
  order:3 !important;
}

/* Global spacing before shared footer. */
#frame-shared-footer{
  margin-top:48px !important;
}

@media (max-width:760px){
  #frame-shared-footer{
    margin-top:36px !important;
  }
}

/* BEGIN FRAME_WORKFLOW_PUBLIC_V1 */
body[data-page="workflow"]{
  --frame-ink:#071a44;
  --frame-muted:#65728a;
  --frame-blue:#1457ff;
  --frame-blue-strong:#0d3fae;
  --frame-navy-2:#020b26;
  --fw-ink:var(--frame-ink);
  --fw-muted:var(--frame-muted);
  --fw-blue:var(--frame-blue);
  --fw-blue-strong:var(--frame-blue-strong);
  --fw-line:rgba(162,181,220,.42);
  margin:0;
  min-height:100vh;
  color:var(--fw-ink);
  font-family:var(--site-font-ui);
  background:
    radial-gradient(ellipse 640px 500px at 0 0,rgba(18,93,255,.11),transparent 74%),
    radial-gradient(ellipse 640px 480px at 100% 10%,rgba(84,137,255,.09),transparent 74%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 46%,#eef3fb 100%);
}

body[data-page="workflow"] .fw-shell{
  max-width:none;
  padding:0;
}

body[data-page="workflow"] .fw-page{
  width:min(calc(100% - 48px),1180px);
  margin:0 auto;
  padding:54px 0 0;
}

.fw-page, .fw-page *{box-sizing:border-box;}
.fw-page h1, .fw-page h2, .fw-page h3{font-family:inherit;color:var(--fw-ink);}

.fw-page h1{
  margin:0;font-size:clamp(40px,5vw,56px);font-weight:600;
  line-height:1.08;letter-spacing:-.035em;
}

.fw-page h2{
  margin:0;font-size:clamp(28px,3.3vw,40px);font-weight:600;
  line-height:1.18;letter-spacing:-.025em;
}

.fw-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,440px);
  gap:58px;align-items:center;min-height:470px;padding:30px 0 54px;
}

.fw-copy{text-align:center;min-width:0;}
.fw-lead{
  margin:22px auto 0;max-width:62ch;color:var(--fw-muted);
  font-size:18px;line-height:1.7;
}
.fw-actions{
  display:flex;justify-content:center;align-items:center;
  flex-wrap:wrap;margin-top:26px;
}

.fw-button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;max-width:100%;padding:12px 24px;
  border:1px solid transparent;border-radius:999px;
  background:linear-gradient(135deg,var(--fw-blue),var(--fw-blue-strong));
  color:#fff;text-decoration:none;font-size:15px;
  font-weight:600;text-align:center;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
  transition:transform .18s ease,box-shadow .18s ease;
}
.fw-button:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(20,87,255,.26);
}
.fw-button:focus-visible{outline:3px solid var(--fw-blue);outline-offset:4px;}

.fw-preview-float{
  min-width:0;
  animation:fwPreviewFloat 6.8s ease-in-out infinite;
}
.fw-preview{
  overflow:hidden;border:1px solid var(--fw-line);
  border-radius:28px;background:#fff;
  box-shadow:0 24px 70px rgba(7,26,68,.14);
}
.fw-preview-header{
  display:flex;align-items:center;gap:9px;
  min-height:66px;padding:15px 20px;color:#fff;
  background:
    radial-gradient(circle at 72% 0%,rgba(92,150,255,.34),transparent 38%),
    linear-gradient(100deg,#020b26 0%,#061b4f 48%,#0d45c7 100%);
  box-shadow:inset 0 -1px 0 rgba(255,255,255,.10);
}
.fw-preview-header strong{
  min-width:0;margin-left:4px;font-size:16px;
  font-weight:700;line-height:1.35;
}
.fw-dot{
  width:8px;height:8px;flex:0 0 8px;border-radius:50%;
  background:rgba(255,255,255,.55);
  animation:fwDotPulse 1.8s ease-in-out infinite;
}
.fw-dot:nth-child(2){animation-delay:.18s;}
.fw-dot:nth-child(3){background:#9cc2ff;animation-delay:.36s;}

.fw-route{
  display:grid;gap:12px;list-style:none;margin:0;padding:22px;
}
.fw-route li{
  display:grid;grid-template-columns:38px minmax(0,1fr);
  gap:14px;align-items:center;border:1px solid #e2eafa;
  border-radius:16px;background:#f8fbff;padding:14px;
}
.fw-number{
  display:grid;place-items:center;width:38px;height:38px;
  border-radius:12px;color:var(--fw-blue);background:#eaf1ff;
  font-size:13px;font-weight:700;
}
.fw-route strong{display:block;font-size:15px;font-weight:650;line-height:1.35;}
.fw-route li div > span{
  display:block;margin-top:5px;color:var(--fw-muted);
  font-size:13px;line-height:1.5;
}

.fw-section{text-align:center;margin-top:42px;}
.fw-step-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;list-style:none;margin:30px 0 0;padding:0;
}
.fw-step{
  min-width:0;padding:28px 20px;border:1px solid var(--fw-line);
  border-radius:24px;background:rgba(255,255,255,.92);
  box-shadow:0 16px 44px rgba(19,42,82,.06);text-align:center;
}
.fw-icon{
  display:flex;align-items:center;justify-content:center;
  width:46px;height:46px;margin:0 auto 18px;border-radius:14px;
  background:#eef4ff;color:var(--fw-blue);
}
.fw-icon svg{
  display:block;width:24px;height:24px;fill:none;
  stroke:currentColor;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;
}
.fw-step h3{margin:0;font-size:19px;font-weight:650;line-height:1.3;}
.fw-step p{margin:12px 0 0;color:var(--fw-muted);font-size:15px;line-height:1.65;}
.fw-note{
  max-width:76ch;margin:24px auto 0;
  color:var(--fw-muted);font-size:14px;line-height:1.65;
}

.fw-final{
  margin-top:64px;padding:42px 28px;border:1px solid #d6e3ff;
  border-radius:28px;
  background:linear-gradient(135deg,#eef4ff,#fff 75%);
  text-align:center;
}
.fw-final > p{
  max-width:65ch;margin:16px auto 0;color:var(--fw-muted);
  font-size:17px;line-height:1.7;
}

body[data-page="workflow"] #frame-shared-footer,
body[data-page="workflow"] > footer.frame-footer{
  margin-top:48px !important;
}

@keyframes fwPreviewFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}
@keyframes fwDotPulse{
  0%,100%{transform:translateY(0);opacity:.65;}
  50%{transform:translateY(-3px);opacity:1;}
}

@media(max-width:1120px){
  .fw-hero{
    grid-template-columns:minmax(0,1fr);
    gap:38px;min-height:auto;padding:24px 0 42px;
  }
  .fw-copy{width:100%;max-width:790px;margin:auto;}
  .fw-preview-float{width:100%;max-width:600px;margin:auto;}
  .fw-step-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media(max-width:760px){
  body[data-page="workflow"] .fw-page{
    width:calc(100% - 28px);padding-top:28px;
  }
  .fw-hero{padding-top:16px;gap:34px;}
  .fw-lead{font-size:16px;}
  .fw-preview{border-radius:22px;}
  .fw-preview-header{padding:14px;gap:7px;}
  .fw-preview-header strong{font-size:14px;}
  .fw-route{padding:16px;}
  .fw-route li{padding:12px;gap:12px;}
  .fw-step-grid{grid-template-columns:minmax(0,1fr);gap:14px;}
  .fw-section{margin-top:24px;}
  .fw-final{margin-top:40px;padding:32px 20px;border-radius:24px;}
  body[data-page="workflow"] #frame-shared-footer,
  body[data-page="workflow"] > footer.frame-footer{
    margin-top:36px !important;
  }
}

@media(prefers-reduced-motion:reduce){
  .fw-preview-float,.fw-dot{
    animation:none !important;transform:none !important;
  }
  .fw-button{transition:none;}
}
/* END FRAME_WORKFLOW_PUBLIC_V1 */

/* BEGIN FRAME_DATA_SOURCES_PUBLIC_V1 */
body[data-page="data-sources"]{
  --frame-ink:#071a44;
  --frame-muted:#65728a;
  --frame-blue:#1457ff;
  --frame-blue-strong:#0d3fae;
  --frame-navy-2:#020b26;
  --fds-line:rgba(162,181,220,.42);
  margin:0;
  min-height:100vh;
  color:var(--frame-ink);
  font-family:var(--site-font-ui,"Segoe UI",sans-serif);
  background:
    radial-gradient(ellipse 640px 500px at 0 0,rgba(18,93,255,.11),transparent 74%),
    radial-gradient(ellipse 640px 480px at 100% 10%,rgba(84,137,255,.09),transparent 74%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 46%,#eef3fb 100%);
}
body[data-page="data-sources"] .fds-shell{max-width:none;padding:0;}
body[data-page="data-sources"] .fds-page{
  width:min(calc(100% - 48px),1180px);
  margin:0 auto;
  padding:54px 0 0;
}
.fds-page,.fds-page *{box-sizing:border-box;}
.fds-page h1,.fds-page h2,.fds-page h3{
  color:var(--frame-ink);font-family:inherit;
}
.fds-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,440px);
  gap:58px;align-items:center;min-height:470px;padding:30px 0 54px;
}
.fds-copy{min-width:0;text-align:center;}
.fds-copy h1{
  margin:0;font-size:clamp(40px,5vw,56px);font-weight:600;
  line-height:1.08;letter-spacing:-.035em;
}
.fds-lead{
  max-width:62ch;margin:22px auto 0;
  color:var(--frame-muted);font-size:18px;line-height:1.7;
}
.fds-topics{
  display:flex;justify-content:center;align-items:center;flex-wrap:wrap;
  gap:6px 10px;margin:20px 0 0;color:var(--frame-muted);
  font-size:13px;line-height:1.6;
}
.fds-actions{
  display:flex;justify-content:center;align-items:center;
  flex-wrap:wrap;gap:12px;margin-top:26px;
}
.fds-button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;max-width:100%;padding:12px 24px;
  border:1px solid transparent;border-radius:999px;
  background:linear-gradient(135deg,var(--frame-blue),var(--frame-blue-strong));
  color:#fff;text-decoration:none;font-size:15px;font-weight:600;
  line-height:1.5;text-align:center;
  box-shadow:0 14px 32px rgba(20,87,255,.22);
  transition:transform .18s ease,box-shadow .18s ease;
}
.fds-button:hover{
  transform:translateY(-1px);box-shadow:0 18px 36px rgba(20,87,255,.26);
}
.fds-button:focus-visible,.fds-link-card:focus-visible{
  outline:3px solid var(--frame-blue);outline-offset:4px;
}
.fds-preview-float{
  min-width:0;animation:fdsPreviewFloat 6.8s ease-in-out infinite;
}
.fds-preview{
  overflow:hidden;border:1px solid var(--fds-line);
  border-radius:28px;background:#fff;
  box-shadow:0 24px 70px rgba(7,26,68,.14);
}
.fds-preview-header{
  display:flex;align-items:center;gap:9px;
  min-height:66px;padding:15px 20px;color:#fff;
  background:
    radial-gradient(circle at 72% 0%,rgba(92,150,255,.34),transparent 38%),
    linear-gradient(100deg,#020b26 0%,#061b4f 48%,#0d45c7 100%);
  box-shadow:inset 0 -1px 0 rgba(255,255,255,.10);
}
.fds-page .fds-preview-header h2{
  min-width:0;margin:0 0 0 4px;color:#fff;
  font-size:16px;font-weight:700;line-height:1.35;text-transform:capitalize;
}
.fds-dot{
  width:8px;height:8px;flex:0 0 8px;border-radius:50%;
  background:rgba(255,255,255,.55);
  animation:fdsDotPulse 1.8s ease-in-out infinite;
}
.fds-dot:nth-child(2){animation-delay:.18s;}
.fds-dot:nth-child(3){background:#9cc2ff;animation-delay:.36s;}
.fds-stats{display:grid;gap:12px;margin:0;padding:22px;}
.fds-stat{
  display:grid;grid-template-columns:minmax(0,1fr) auto;
  column-gap:12px;row-gap:7px;padding:16px;
  border:1px solid #e2eafa;border-radius:16px;background:#f8fbff;
}
.fds-stat dt{margin:0;font-size:15px;font-weight:650;line-height:1.4;}
.fds-stat dd{margin:0;}
.fds-stat-value{
  color:var(--frame-blue-strong);text-align:right;
  font-size:13px;font-weight:650;line-height:1.6;
}
.fds-stat-copy{
  grid-column:1/-1;color:var(--frame-muted);font-size:13px;line-height:1.6;
}
.fds-section{margin-top:42px;text-align:center;}
.fds-section > h2,.fds-final > h2{
  margin:0;font-size:clamp(28px,3.3vw,40px);font-weight:600;
  line-height:1.18;letter-spacing:-.025em;
}
.fds-card-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;margin-top:30px;
}
.fds-card{
  min-width:0;padding:28px 24px;border:1px solid var(--fds-line);
  border-radius:24px;background:rgba(255,255,255,.92);
  box-shadow:0 16px 44px rgba(19,42,82,.06);text-align:center;
}
.fds-icon{
  display:flex;align-items:center;justify-content:center;
  width:46px;height:46px;margin:0 auto 18px;border-radius:14px;
  color:var(--frame-blue);background:#eef4ff;
}
.fds-icon svg,.fds-link-arrow svg{
  display:block;width:24px;height:24px;fill:none;
  stroke:currentColor;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;
}
.fds-card h3,.fds-link-card h3{
  margin:0;font-size:20px;font-weight:650;line-height:1.3;
  text-transform:capitalize;
}
.fds-card p,.fds-link-card p{
  margin:12px 0 0;color:var(--frame-muted);font-size:15px;line-height:1.7;
}
.fds-explore{margin-top:60px;}
.fds-link-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;margin:28px auto 0;max-width:850px;
}
.fds-link-card{
  display:flex;flex-direction:column;align-items:center;
  min-width:0;padding:26px 24px;border:1px solid var(--fds-line);
  border-radius:24px;color:inherit;background:rgba(255,255,255,.88);
  text-align:center;text-decoration:none;
  box-shadow:0 12px 36px rgba(19,42,82,.04);
  transition:border-color .18s ease,box-shadow .18s ease;
}
.fds-link-card:hover{
  border-color:var(--frame-blue);box-shadow:0 16px 42px rgba(20,87,255,.09);
}
.fds-link-arrow{margin-top:auto;padding-top:16px;color:var(--frame-blue);}
.fds-final{
  margin-top:64px;padding:42px 28px;border:1px solid #d6e3ff;
  border-radius:28px;background:linear-gradient(135deg,#eef4ff,#fff 75%);
  text-align:center;
}
.fds-final > p{
  max-width:65ch;margin:16px auto 0;color:var(--frame-muted);
  font-size:17px;line-height:1.7;
}
body[data-page="data-sources"] #frame-shared-footer,
body[data-page="data-sources"] > footer.frame-footer{margin-top:48px !important;}
@keyframes fdsPreviewFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}
@keyframes fdsDotPulse{
  0%,100%{transform:translateY(0);opacity:.65;}
  50%{transform:translateY(-3px);opacity:1;}
}
@media(max-width:1120px){
  .fds-hero{
    grid-template-columns:minmax(0,1fr);
    gap:38px;min-height:auto;padding:24px 0 42px;
  }
  .fds-copy{width:100%;max-width:790px;margin:auto;}
  .fds-preview-float{width:100%;max-width:600px;margin:auto;}
  .fds-card-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .fds-card-grid > .fds-card:last-child:nth-child(odd){
    grid-column:1/-1;width:calc((100% - 18px)/2);justify-self:center;
  }
}
@media(max-width:760px){
  body[data-page="data-sources"] .fds-page{width:calc(100% - 28px);padding-top:28px;}
  .fds-hero{padding-top:16px;gap:34px;}
  .fds-lead{font-size:16px;}
  .fds-preview{border-radius:22px;}
  .fds-preview-header{padding:14px;gap:7px;}
  .fds-page .fds-preview-header h2{font-size:14px;}
  .fds-stats{padding:16px;}
  .fds-stat{padding:14px;gap:8px;}
  .fds-card-grid,.fds-link-grid{grid-template-columns:minmax(0,1fr);gap:14px;}
  .fds-card-grid > .fds-card:last-child:nth-child(odd){grid-column:auto;width:auto;justify-self:stretch;}
  .fds-section{margin-top:24px;}
  .fds-explore{margin-top:40px;}
  .fds-final{margin-top:40px;padding:32px 20px;border-radius:24px;}
  body[data-page="data-sources"] #frame-shared-footer,
  body[data-page="data-sources"] > footer.frame-footer{margin-top:36px !important;}
}
@media(prefers-reduced-motion:reduce){
  .fds-preview-float,.fds-dot{animation:none !important;transform:none !important;}
  .fds-button,.fds-link-card{transition:none;}
}
/* END FRAME_DATA_SOURCES_PUBLIC_V1 */

/* BEGIN FRAME_TERMS_PUBLIC_V1 */
body[data-page="terms"]{
  --frame-ink:#071a44;
  --frame-muted:#65728a;
  --frame-blue:#1457ff;
  --frame-blue-strong:#0d3fae;
  --frame-navy-2:#020b26;
  --flt-line:rgba(162,181,220,.42);
  margin:0;min-height:100vh;
  color:var(--frame-ink);
  font-family:var(--site-font-ui,"Avenir Next","Segoe UI",sans-serif);
  background:
    radial-gradient(ellipse 640px 500px at 0 0,rgba(18,93,255,.11),transparent 74%),
    radial-gradient(ellipse 640px 480px at 100% 10%,rgba(84,137,255,.08),transparent 74%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 46%,#eef3fb 100%);
}
body[data-page="terms"] .flt-shell{max-width:none;padding:0;}
body[data-page="terms"] .flt-page{
  width:min(calc(100% - 48px),1000px);
  margin:0 auto;padding:62px 0 0;
}
.flt-page,.flt-page *{box-sizing:border-box;}
.flt-page h1,.flt-page h2,.flt-page h3{
  font-family:inherit;color:var(--frame-ink);
}
.flt-hero{text-align:center;max-width:880px;margin:0 auto 34px;}
.flt-hero h1{
  margin:0;font-size:clamp(40px,5vw,56px);font-weight:600;
  line-height:1.08;letter-spacing:-.035em;
}
.flt-lead{
  max-width:66ch;margin:22px auto 0;color:var(--frame-muted);
  font-size:18px;line-height:1.7;
}
.flt-date{margin:18px 0 0;color:#536986;font-size:14px;line-height:1.6;}
.flt-summary{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;margin:0 0 36px;
}
.flt-summary-card{
  min-width:0;padding:24px 20px;text-align:center;
  border:1px solid var(--flt-line);border-radius:22px;
  background:rgba(255,255,255,.94);box-shadow:0 14px 38px rgba(19,42,82,.045);
}
.flt-icon{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;margin:0 auto 14px;border-radius:13px;
  background:#eef4ff;color:var(--frame-blue);
}
.flt-icon svg,.flt-document-bar svg,.flt-related-link svg{
  display:block;width:23px;height:23px;fill:none;stroke:currentColor;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.flt-summary dt{font-size:13px;line-height:1.5;color:#526782;font-weight:600;}
.flt-summary dd{margin:0;}
.flt-summary .flt-summary-value{
  margin-top:5px;font-size:20px;line-height:1.3;font-weight:650;
}
.flt-summary .flt-summary-copy{
  margin-top:10px;font-size:14px;line-height:1.65;color:var(--frame-muted);
}
.flt-document{
  overflow:hidden;border:1px solid var(--flt-line);
  border-radius:28px;background:#fff;box-shadow:0 20px 60px rgba(7,26,68,.07);
}
.flt-document-bar{
  display:flex;align-items:center;gap:12px;min-height:66px;padding:18px 38px;
  color:#fff;font-size:16px;font-weight:650;line-height:1.4;
  background:
    radial-gradient(circle at 72% 0%,rgba(92,150,255,.34),transparent 38%),
    linear-gradient(100deg,#020b26 0%,#061b4f 48%,#0d45c7 100%);
}
.flt-document-bar svg{flex:none;}
.flt-contents{padding:25px 38px 28px;background:#f8fbff;border-bottom:1px solid #e5ecf8;}
.flt-contents > p{margin:0 0 12px;font-size:14px;font-weight:650;color:#506381;}
.flt-contents ol{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:5px 22px;margin:0;padding:0;list-style:none;
}
.flt-contents li{min-width:0;}
.flt-contents a{
  display:flex;gap:11px;align-items:baseline;min-height:42px;padding:8px 0;
  color:#23466f;font-size:14px;line-height:1.6;
  text-decoration:none;text-underline-offset:4px;
}
.flt-contents a > span{flex:0 0 21px;font-size:12px;font-weight:650;color:#6b7e99;}
.flt-contents a:hover{color:var(--frame-blue);text-decoration:underline;}
.flt-clauses{padding:0 38px;}
.flt-clause{padding:30px 0;}
.flt-clause + .flt-clause{border-top:1px solid #e6edf7;}
.flt-clause h2{
  display:flex;align-items:baseline;gap:14px;margin:0;
  font-size:23px;line-height:1.4;font-weight:650;letter-spacing:-.018em;
}
.flt-clause-number{
  flex:0 0 28px;color:var(--frame-blue);font-size:13px;line-height:1.8;font-weight:700;
}
.flt-clause p{
  margin:14px 0 0 42px;color:#465b76;font-size:16px;line-height:1.8;
  text-align:left;overflow-wrap:anywhere;
}
.flt-page [id]{scroll-margin-top:var(--flt-anchor-space,130px);}
.flt-page:focus,.flt-clause h2:focus{outline:none;}
.flt-page a:focus-visible{
  outline:3px solid var(--frame-blue);outline-offset:5px;border-radius:5px;
}
.flt-contact{text-align:center;padding:36px 12px 28px;}
.flt-contact h2{margin:0 0 12px;font-size:25px;font-weight:600;line-height:1.35;letter-spacing:-.02em;}
.flt-contact-link{
  display:inline-block;max-width:100%;min-height:44px;padding:9px 0;
  color:#0d3fae;font-size:16px;line-height:1.6;text-underline-offset:4px;overflow-wrap:anywhere;
}
.flt-related{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.flt-related-link{
  position:relative;min-width:0;display:grid;gap:7px;
  padding:23px 54px 23px 24px;border:1px solid var(--flt-line);border-radius:22px;
  background:linear-gradient(135deg,#eef4ff,#fff 80%);
  color:var(--frame-ink);text-decoration:none;
  box-shadow:0 12px 32px rgba(19,42,82,.04);
  transition:border-color .18s ease,box-shadow .18s ease;
}
.flt-related-link strong{font-size:18px;line-height:1.4;font-weight:650;text-transform:capitalize;}
.flt-related-link > span{font-size:14px;line-height:1.65;color:var(--frame-muted);}
.flt-related-link svg{position:absolute;right:22px;top:25px;color:var(--frame-blue);}
.flt-related-link:hover{border-color:#7da6f5;box-shadow:0 16px 38px rgba(20,87,255,.10);}
body[data-page="terms"] #frame-shared-footer,
body[data-page="terms"] > footer.frame-footer{margin-top:48px !important;}
.flt-skip-link{
  position:fixed;left:16px;top:12px;z-index:4000;
  transform:translateY(-160%);background:#fff;color:#0d3fae;
  border:2px solid #1457ff;border-radius:9px;padding:12px 16px;
  font-size:15px;font-weight:600;
}
.flt-skip-link:focus{transform:none;}
@media(max-width:900px){
  .flt-summary{gap:12px;}
  .flt-summary-card{padding:21px 15px;}
  .flt-contents,.flt-document-bar{padding-left:28px;padding-right:28px;}
  .flt-clauses{padding:0 28px;}
}
@media(max-width:760px){
  body[data-page="terms"] .flt-page{width:calc(100% - 28px);padding-top:38px;}
  .flt-hero{margin-bottom:26px;}
  .flt-lead{font-size:16px;line-height:1.7;}
  .flt-summary{grid-template-columns:minmax(0,1fr);margin-bottom:26px;}
  .flt-summary-card{padding:22px;}
  .flt-document{border-radius:22px;}
  .flt-document-bar{padding:17px 20px;}
  .flt-contents{padding:23px 20px;}
  .flt-contents ol{grid-template-columns:minmax(0,1fr);gap:3px;}
  .flt-clauses{padding:0 20px;}
  .flt-clause{padding:26px 0;}
  .flt-clause h2{font-size:21px;gap:10px;}
  .flt-clause-number{flex-basis:23px;}
  .flt-clause p{margin-left:0;font-size:16px;line-height:1.8;}
  .flt-page [id]{scroll-margin-top:var(--flt-anchor-space,180px);}
  .flt-contact{padding:30px 10px 20px;}
  .flt-contact h2{font-size:24px;}
  .flt-related{grid-template-columns:minmax(0,1fr);gap:14px;}
  body[data-page="terms"] #frame-shared-footer,
  body[data-page="terms"] > footer.frame-footer{margin-top:36px !important;}
}
@media(prefers-reduced-motion:reduce){.flt-related-link{transition:none;}}
@media print{
  body[data-page="terms"]{background:#fff;}
  body[data-page="terms"] #frame-shared-navbar,
  body[data-page="terms"] #frame-shared-navbar-space,
  body[data-page="terms"] #frame-shared-footer,
  body[data-page="terms"] .site-topbar,
  body[data-page="terms"] > footer.frame-footer,
  body[data-page="terms"] .flt-skip-link{display:none !important;}
  body[data-page="terms"] .flt-page{width:100%;max-width:none;padding:0;}
  .flt-document{overflow:visible;border-color:#ddd;border-radius:0;box-shadow:none;}
  .flt-document-bar{background:#fff;color:#071a44;border-bottom:1px solid #ccc;}
  .flt-summary-card,.flt-related-link{box-shadow:none;}
  .flt-clause{break-inside:avoid;}
}
/* END FRAME_TERMS_PUBLIC_V1 */

/* BEGIN FRAME_PRIVACY_PUBLIC_V1 */
body[data-page="privacy"]{
  --frame-ink:#071a44;
  --frame-muted:#65728a;
  --frame-blue:#1457ff;
  --frame-blue-strong:#0d3fae;
  --frame-navy-2:#020b26;
  --flp-line:rgba(162,181,220,.42);
  margin:0;min-height:100vh;
  color:var(--frame-ink);
  font-family:var(--site-font-ui,"Avenir Next","Segoe UI",sans-serif);
  background:
    radial-gradient(ellipse 640px 500px at 0 0,rgba(18,93,255,.11),transparent 74%),
    radial-gradient(ellipse 640px 480px at 100% 10%,rgba(84,137,255,.08),transparent 74%),
    linear-gradient(180deg,#f8fbff 0%,#f5f8fd 46%,#eef3fb 100%);
}
body[data-page="privacy"] .flp-shell{max-width:none;padding:0;}
body[data-page="privacy"] .flp-page{
  width:min(calc(100% - 48px),1000px);
  margin:0 auto;padding:62px 0 0;
}
.flp-page,.flp-page *{box-sizing:border-box;}
.flp-page h1,.flp-page h2,.flp-page h3{
  font-family:inherit;color:var(--frame-ink);
}
.flp-hero{text-align:center;max-width:880px;margin:0 auto 34px;}
.flp-hero h1{
  margin:0;font-size:clamp(40px,5vw,56px);font-weight:600;
  line-height:1.08;letter-spacing:-.035em;
}
.flp-lead{
  max-width:66ch;margin:22px auto 0;color:var(--frame-muted);
  font-size:18px;line-height:1.7;
}
.flp-date{margin:18px 0 0;color:#536986;font-size:14px;line-height:1.6;}
.flp-summary{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;margin:0 0 36px;
}
.flp-summary-card{
  min-width:0;padding:24px 20px;text-align:center;
  border:1px solid var(--flp-line);border-radius:22px;
  background:rgba(255,255,255,.94);box-shadow:0 14px 38px rgba(19,42,82,.045);
}
.flp-icon{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;margin:0 auto 14px;border-radius:13px;
  background:#eef4ff;color:var(--frame-blue);
}
.flp-icon svg,.flp-document-bar svg,.flp-related-link svg{
  display:block;width:23px;height:23px;fill:none;stroke:currentColor;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.flp-summary dt{font-size:13px;line-height:1.5;color:#526782;font-weight:600;}
.flp-summary dd{margin:0;}
.flp-summary .flp-summary-value{
  margin-top:5px;font-size:20px;line-height:1.3;font-weight:650;
}
.flp-summary .flp-summary-copy{
  margin-top:10px;font-size:14px;line-height:1.65;color:var(--frame-muted);
}
.flp-document{
  overflow:hidden;border:1px solid var(--flp-line);
  border-radius:28px;background:#fff;box-shadow:0 20px 60px rgba(7,26,68,.07);
}
.flp-document-bar{
  display:flex;align-items:center;gap:12px;min-height:66px;padding:18px 38px;
  color:#fff;font-size:16px;font-weight:650;line-height:1.4;
  background:
    radial-gradient(circle at 72% 0%,rgba(92,150,255,.34),transparent 38%),
    linear-gradient(100deg,#020b26 0%,#061b4f 48%,#0d45c7 100%);
}
.flp-document-bar svg{flex:none;}
.flp-contents{padding:25px 38px 28px;background:#f8fbff;border-bottom:1px solid #e5ecf8;}
.flp-contents > p{margin:0 0 12px;font-size:14px;font-weight:650;color:#506381;}
.flp-contents ol{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:5px 22px;margin:0;padding:0;list-style:none;
}
.flp-contents li{min-width:0;}
.flp-contents a{
  display:flex;gap:11px;align-items:baseline;min-height:42px;padding:8px 0;
  color:#23466f;font-size:14px;line-height:1.6;
  text-decoration:none;text-underline-offset:4px;
}
.flp-contents a > span{flex:0 0 21px;font-size:12px;font-weight:650;color:#6b7e99;}
.flp-contents a:hover{color:var(--frame-blue);text-decoration:underline;}
.flp-clauses{padding:0 38px;}
.flp-clause{padding:30px 0;}
.flp-clause + .flp-clause{border-top:1px solid #e6edf7;}
.flp-clause h2{
  display:flex;align-items:baseline;gap:14px;margin:0;
  font-size:23px;line-height:1.4;font-weight:650;letter-spacing:-.018em;
}
.flp-clause-number{
  flex:0 0 28px;color:var(--frame-blue);font-size:13px;line-height:1.8;font-weight:700;
}
.flp-clause p{
  margin:14px 0 0 42px;color:#465b76;font-size:16px;line-height:1.8;
  text-align:left;overflow-wrap:anywhere;
}
.flp-page [id]{scroll-margin-top:var(--flp-anchor-space,130px);}
.flp-page:focus,.flp-clause h2:focus{outline:none;}
.flp-page a:focus-visible{
  outline:3px solid var(--frame-blue);outline-offset:5px;border-radius:5px;
}
.flp-contact{text-align:center;padding:36px 12px 28px;}
.flp-contact h2{margin:0 0 12px;font-size:25px;font-weight:600;line-height:1.35;letter-spacing:-.02em;}
.flp-contact-link{
  display:inline-block;max-width:100%;min-height:44px;padding:9px 0;
  color:#0d3fae;font-size:16px;line-height:1.6;text-underline-offset:4px;overflow-wrap:anywhere;
}
.flp-related{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.flp-related-link{
  position:relative;min-width:0;display:grid;gap:7px;
  padding:23px 54px 23px 24px;border:1px solid var(--flp-line);border-radius:22px;
  background:linear-gradient(135deg,#eef4ff,#fff 80%);
  color:var(--frame-ink);text-decoration:none;
  box-shadow:0 12px 32px rgba(19,42,82,.04);
  transition:border-color .18s ease,box-shadow .18s ease;
}
.flp-related-link strong{font-size:18px;line-height:1.4;font-weight:650;text-transform:capitalize;}
.flp-related-link > span{font-size:14px;line-height:1.65;color:var(--frame-muted);}
.flp-related-link svg{position:absolute;right:22px;top:25px;color:var(--frame-blue);}
.flp-related-link:hover{border-color:#7da6f5;box-shadow:0 16px 38px rgba(20,87,255,.10);}
body[data-page="privacy"] #frame-shared-footer,
body[data-page="privacy"] > footer.frame-footer{margin-top:48px !important;}
.flp-skip-link{
  position:fixed;left:16px;top:12px;z-index:4000;
  transform:translateY(-160%);background:#fff;color:#0d3fae;
  border:2px solid #1457ff;border-radius:9px;padding:12px 16px;
  font-size:15px;font-weight:600;
}
.flp-skip-link:focus{transform:none;}
@media(max-width:900px){
  .flp-summary{gap:12px;}
  .flp-summary-card{padding:21px 15px;}
  .flp-contents,.flp-document-bar{padding-left:28px;padding-right:28px;}
  .flp-clauses{padding:0 28px;}
}
@media(max-width:760px){
  body[data-page="privacy"] .flp-page{width:calc(100% - 28px);padding-top:38px;}
  .flp-hero{margin-bottom:26px;}
  .flp-lead{font-size:16px;line-height:1.7;}
  .flp-summary{grid-template-columns:minmax(0,1fr);margin-bottom:26px;}
  .flp-summary-card{padding:22px;}
  .flp-document{border-radius:22px;}
  .flp-document-bar{padding:17px 20px;}
  .flp-contents{padding:23px 20px;}
  .flp-contents ol{grid-template-columns:minmax(0,1fr);gap:3px;}
  .flp-clauses{padding:0 20px;}
  .flp-clause{padding:26px 0;}
  .flp-clause h2{font-size:21px;gap:10px;}
  .flp-clause-number{flex-basis:23px;}
  .flp-clause p{margin-left:0;font-size:16px;line-height:1.8;}
  .flp-page [id]{scroll-margin-top:var(--flp-anchor-space,180px);}
  .flp-contact{padding:30px 10px 20px;}
  .flp-contact h2{font-size:24px;}
  .flp-related{grid-template-columns:minmax(0,1fr);gap:14px;}
  body[data-page="privacy"] #frame-shared-footer,
  body[data-page="privacy"] > footer.frame-footer{margin-top:36px !important;}
}
@media(prefers-reduced-motion:reduce){.flp-related-link{transition:none;}}
@media print{
  body[data-page="privacy"]{background:#fff;}
  body[data-page="privacy"] #frame-shared-navbar,
  body[data-page="privacy"] #frame-shared-navbar-space,
  body[data-page="privacy"] #frame-shared-footer,
  body[data-page="privacy"] .site-topbar,
  body[data-page="privacy"] > footer.frame-footer,
  body[data-page="privacy"] .flp-skip-link{display:none !important;}
  body[data-page="privacy"] .flp-page{width:100%;max-width:none;padding:0;}
  .flp-document{overflow:visible;border-color:#ddd;border-radius:0;box-shadow:none;}
  .flp-document-bar{background:#fff;color:#071a44;border-bottom:1px solid #ccc;}
  .flp-summary-card,.flp-related-link{box-shadow:none;}
  .flp-clause{break-inside:avoid;}
}
/* END FRAME_PRIVACY_PUBLIC_V1 */

/* Smooth GPU feature preview floating animation. */
body[data-page="feature-detail"] .feature-profile-preview{
  top:0 !important;
  transform:translate3d(0,0,0);
  will-change:transform !important;
  backface-visibility:hidden;
  -webkit-font-smoothing:antialiased;

  animation:
    featurePreviewFloatSmooth
    7.2s
    cubic-bezier(.45,0,.55,1)
    infinite !important;
}

@keyframes featurePreviewFloatSmooth{
  0%,100%{
    transform:translate3d(0,0,0);
  }

  50%{
    transform:translate3d(0,-10px,0);
  }
}

@media (prefers-reduced-motion:reduce){
  body[data-page="feature-detail"] .feature-profile-preview{
    transform:none !important;
    animation:none !important;
  }
}


/* BEGIN FRAME_AUTH_TOP_LEFT_GLOW_V1 */
body[data-page="auth"]{
  position:relative;
  isolation:isolate;
}

body[data-page="auth"]::before{
  content:"";
  position:fixed;
  z-index:-1;
  top:-260px;
  left:-260px;
  width:720px;
  height:720px;
  pointer-events:none;

  background:
    radial-gradient(
      circle,
      rgba(18,93,255,.20) 0%,
      rgba(69,128,255,.12) 28%,
      rgba(18,93,255,.045) 52%,
      rgba(18,93,255,0) 72%
    );

  filter:blur(8px);
}
/* END FRAME_AUTH_TOP_LEFT_GLOW_V1 */


/* BEGIN FRAME_AUTH_PANEL_TITLE_CENTER_V1 */
body[data-page="auth"] #authPanelTitle{
  width:100%;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
/* END FRAME_AUTH_PANEL_TITLE_CENTER_V1 */


/* BEGIN FRAME_AUTH_WELCOME_CENTER_V1 */
body[data-page="auth"] #authSideEyebrow{
  display:block !important;
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
/* END FRAME_AUTH_WELCOME_CENTER_V1 */


/* BEGIN FRAME_AUTH_SIDE_COPY_CENTER_V1 */
body[data-page="auth"] #authSideTitle,
body[data-page="auth"] #authSideNote{
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
/* END FRAME_AUTH_SIDE_COPY_CENTER_V1 */


/* BEGIN FRAME_AUTH_VISUAL_CENTER_V1 */
body[data-page="auth"] .auth-visual-stage{
  justify-content:center !important;
  text-align:center !important;
}

body[data-page="auth"] .auth-preview-shell{
  margin-left:auto !important;
  margin-right:auto !important;
}
/* END FRAME_AUTH_VISUAL_CENTER_V1 */


/* BEGIN FRAME_AUTH_ROUTE_ANIMATION_CENTER_V1 */
body[data-page="auth"] .auth-route-animation{
  margin:30px auto 0 !important;
}
/* END FRAME_AUTH_ROUTE_ANIMATION_CENTER_V1 */

/* Hide onboarding "Frame setup" labels */
.onboarding-kicker,
.onboarding-preview-header > span{
  display:none !important;
}

/* Center onboarding preview heading and copy */
.onboarding-preview-header{
  text-align:center !important;
}

.onboarding-preview-header strong,
.onboarding-preview-header p{
  display:block !important;
  width:100% !important;
  text-align:center !important;
}

/* Truly center onboarding preview heading */
body[data-page="onboarding"] .onboarding-preview-header strong{
  max-width:420px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

body[data-page="onboarding"] .onboarding-preview-header p{
  margin:10px auto 0 !important;
}

/* Center onboarding intro copy */
body[data-page="onboarding"] .onboarding-copy{
  text-align:center !important;
}

body[data-page="onboarding"] .onboarding-copy h1,
body[data-page="onboarding"] .onboarding-copy > p{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
