
:root {
  --bg: #fafafe;
  --surface: #ffffff;
  --surface-2: #f5f5fa;
  --text: #0e0f1a;
  --text-2: #343746;
  --text-3: #65697a;
  --line: #e8e8ef;
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --violet: #8b5cf6;
  --cyan: #bdebff;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(30, 32, 67, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

main { overflow: hidden; }
.site-header,
.hero,
.section {
  width: min(100% - 96px, 1344px);
  margin-inline: auto;
}

.site-header {
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 10;
}
.brand-lockup { width: fit-content; min-width: 0; }
.brand-lockup [data-frm-logo-lockup-product] { max-width: 100%; }
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a { color: var(--text-2); font-size: 14px; font-weight: 600; position: relative; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--violet)); transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-action {
  justify-self: end; border: 1px solid var(--line); background: rgba(255,255,255,.7);
  padding: 11px 17px; border-radius: 10px; font-size: 13px; font-weight: 700;
  transition: border-color .2s, transform .2s, background .2s;
}
.header-action:hover { transform: translateY(-2px); border-color: rgba(99,102,241,.35); background: white; }

.hero {
  min-height: 810px;
  display: grid;
  grid-template-columns: 48% 52%;
  grid-template-rows: 1fr auto;
  align-items: center;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.09), rgba(139,92,246,.025) 46%, transparent 70%);
  right: -80px; top: 20px; filter: blur(8px); pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: 670px; padding-bottom: 70px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 24px;
  color: var(--primary); font-size: 12px; line-height: 1; font-weight: 800;
  text-transform: uppercase; letter-spacing: .13em;
}
.eyebrow span { width: 22px; height: 1px; background: currentColor; }
h1, h2, h3, p { text-wrap: balance; }
h1 {
  margin: 0; font-size: clamp(46px, 4.75vw, 70px); line-height: 1.03;
  letter-spacing: -.055em; font-weight: 700;
}
.hero-lead {
  max-width: 610px; margin: 28px 0 0; color: var(--text-2);
  font-size: 18px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 34px; }
.button {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 22px;
  padding: 0 22px; border-radius: 10px; font-size: 14px; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button span { font-size: 19px; transition: transform .2s; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translateX(4px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--primary), #5a55ee 55%, var(--violet)); box-shadow: 0 12px 28px rgba(99,102,241,.22); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(99,102,241,.29); }
.button-quiet { color: #272a54; }
.button-quiet:hover { background: rgba(99,102,241,.06); }
.hero-art { position: absolute; inset: 48px -66px 74px 38%; display: grid; place-items: center; pointer-events: none; }
.hero-art img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  mix-blend-mode: multiply; filter: saturate(.94) contrast(1.015);
  -webkit-mask-image: radial-gradient(ellipse 90% 82% at 52% 52%, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 82% at 52% 52%, #000 72%, transparent 100%);
}
.proof-row {
  grid-column: 1 / 2; align-self: end; display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 0 0 42px; position: relative; z-index: 3;
}
.proof-row > div { display: flex; align-items: center; gap: 13px; min-height: 58px; padding-right: 18px; }
.proof-row > div + div { border-left: 1px solid var(--line); padding-left: 20px; }
.proof-row span { font-size: 12px; line-height: 1.45; font-weight: 600; }
.proof-icon { width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%; border: 1px dashed var(--primary); position: relative; }
.proof-icon::before, .proof-icon::after { content: ""; position: absolute; inset: 9px; border: 2px solid var(--primary); border-radius: 50%; }
.proof-grid::before { border-radius: 4px; box-shadow: 7px 0 0 -4px var(--primary), 0 7px 0 -4px var(--primary), 7px 7px 0 -4px var(--primary); }
.proof-grid::after { display: none; }
.proof-flow::before { border-left-color: transparent; }
.proof-flow::after { inset: 7px; border-color: transparent; border-right-color: var(--primary); }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.05fr .95fr; column-gap: 9%; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 4.4vw, 62px); line-height: 1.08; letter-spacing: -.045em; font-weight: 700; }
.section-heading > p:last-child { margin: 0 0 6px; color: var(--text-3); font-size: 16px; line-height: 1.75; max-width: 540px; }
.section-heading.compact { grid-template-columns: 1.1fr .9fr; }
.layer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.layer-card {
  min-height: 282px; background: rgba(255,255,255,.82); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 27px; display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.layer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(99,102,241,.25); }
.layer-top { display: flex; justify-content: space-between; align-items: center; }
.layer-top span {
  color: var(--primary);
  font: 750 clamp(34px, 3vw, 46px)/.9 "Manrope", sans-serif;
  font-variant-numeric: tabular-nums;
}
.layer-top i { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 8px rgba(99,102,241,.09); }
.layer-card h3 { margin: auto 0 18px; max-width: 290px; font-size: 24px; line-height: 1.2; letter-spacing: -.03em; }
.layer-card p { margin: 0; color: var(--text-3); font-size: 14px; line-height: 1.7; }

.context-section { padding-top: 30px; }
.context-panel {
  overflow: hidden; position: relative; min-height: 560px; border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(241,245,255,.96)); color: var(--text); padding: 64px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center;
  border: 1px solid rgba(99,102,241,.12); box-shadow: 0 30px 80px rgba(42,45,90,.11);
}
.context-panel::before { content: ""; position: absolute; width: 700px; height: 700px; right: -180px; background: radial-gradient(circle, rgba(99,102,241,.18), rgba(189,235,255,.15) 42%, transparent 70%); }
.eyebrow.light { color: #7578ef; }
.context-copy { position: relative; z-index: 2; }
.context-copy h2 { margin: 0; font-size: clamp(40px, 4vw, 58px); line-height: 1.06; letter-spacing: -.045em; }
.context-copy > p:not(.eyebrow) { max-width: 520px; margin: 20px 0 0; color: var(--text-3); font-size: 14px; line-height: 1.7; }
.context-copy > p:not(.eyebrow) + p { color: var(--text-2); }
.context-flow { position: relative; z-index: 2; min-height: 390px; display: grid; grid-template-columns: 1fr 74px 160px 64px .8fr; align-items: center; gap: 8px; }
.source-cluster, .result-cluster { display: flex; flex-direction: column; gap: 10px; }
.source-cluster span, .result-cluster span { padding: 12px 14px; border: 1px solid rgba(99,102,241,.13); background: rgba(255,255,255,.7); border-radius: 10px; color: var(--text-2); font-size: 11px; box-shadow: 0 8px 24px rgba(42,45,90,.06); backdrop-filter: blur(10px); }
.result-cluster span { color: var(--primary-dark); border-color: rgba(99,102,241,.19); background: rgba(99,102,241,.08); }
.flow-line { height: 2px; background: linear-gradient(90deg, rgba(99,102,241,.08), #7d80ff); position: relative; }
.flow-line.output { background: linear-gradient(90deg, #9d79f4, rgba(99,102,241,.08)); }
.flow-line i { position: absolute; width: 5px; height: 5px; top: -1px; background: white; border-radius: 50%; box-shadow: 0 0 12px #7679f7; animation: moveDot 2.8s linear infinite; }
.flow-line i:nth-child(2) { animation-delay: -.9s; }.flow-line i:nth-child(3) { animation-delay: -1.8s; }
.context-core { width: 150px; aspect-ratio: 1; border-radius: 30px; display: grid; place-content: center; text-align: center; background: linear-gradient(145deg, rgba(111,114,250,.95), rgba(139,92,246,.82)); box-shadow: 0 0 80px rgba(99,102,241,.38), inset 0 1px 0 rgba(255,255,255,.28); transform: rotate(-3deg); }
.context-core small { font-size: 10px; letter-spacing: .14em; opacity: .7; margin-bottom: 8px; }.context-core strong { font-size: 17px; line-height: 1.3; }

.services { padding-bottom: 90px; }
.service-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 430px; padding: 24px; border-radius: 20px; border: 1px solid var(--line); background: white; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.service-card::before { content: ""; position: absolute; width: 270px; height: 270px; border-radius: 50%; right: -100px; top: -100px; background: radial-gradient(circle, rgba(99,102,241,.16), transparent 66%); }
.service-ma::before { background: radial-gradient(circle, rgba(99,102,241,.22), transparent 66%); }
.service-2::before { background: radial-gradient(circle, rgba(158,229,215,.32), transparent 66%); }.service-3::before { background: radial-gradient(circle, rgba(255,159,122,.19), transparent 66%); }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-head { display: flex; justify-content: space-between; align-items: center; position: relative; }
.service-mark { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--primary), var(--violet)); font-size: 18px; font-weight: 800; box-shadow: 0 10px 24px rgba(99,102,241,.2); }
.service-type { color: var(--text-3); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.service-card h3 { margin: 52px 0 16px; font-size: 27px; letter-spacing: -.04em; }
.service-card > p { margin: 0; color: var(--text-3); line-height: 1.75; font-size: 14px; }
.service-result { margin-top: auto; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--text-2); font-size: 12px; line-height: 1.5; font-weight: 600; }
.service-card > a { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; color: var(--primary-dark); font-size: 13px; font-weight: 800; }
.service-card > a span { font-size: 20px; transition: transform .2s; }.service-card > a:hover span { transform: translateX(5px); }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10%; align-items: start; }
.process .section-heading { display: block; position: sticky; top: 44px; }.process .section-heading .eyebrow { margin-bottom: 24px; }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 66px 1fr; gap: 18px; padding: 30px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list > li > span {
  color: var(--primary);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: .9;
}
.process-list h3 { margin: 0; font-size: 20px; letter-spacing: -.025em; }.process-list p { margin: 9px 0 0; color: var(--text-3); font-size: 14px; line-height: 1.7; }

.readiness { padding-top: 40px; }
.readiness .section-heading { align-items: end; }
.readiness-card {
  margin-top: 54px; padding: 22px; border: 1px solid rgba(99,102,241,.15); border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,246,255,.96));
  box-shadow: 0 24px 70px rgba(42,45,90,.09); display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px;
}
.readiness-questions { display: grid; gap: 10px; }
.readiness fieldset { margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.82); display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; }
.readiness legend { display: contents; color: var(--text-2); font-size: 14px; line-height: 1.5; font-weight: 700; }
.readiness legend span { color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.readiness label { min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 9px; display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 12px; font-weight: 700; cursor: pointer; }
.readiness input { width: 17px; height: 17px; margin: 0; accent-color: var(--primary); }
.readiness-result { min-height: 100%; padding: 32px; border-radius: 20px; background: linear-gradient(145deg, #17192e, #29234d); color: white; display: flex; flex-direction: column; align-items: flex-start; }
.readiness-kicker { margin: 0 0 34px; color: #bfc2ff; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.readiness-result h3 { margin: 0; font-size: clamp(26px, 2.4vw, 38px); line-height: 1.12; letter-spacing: -.035em; }
.readiness-result > p:not(.readiness-kicker) { margin: 20px 0 0; color: #cfd0dd; font-size: 14px; line-height: 1.7; }
.readiness-result ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: #e5e7ff; font-size: 13px; line-height: 1.5; }
.readiness-result li { padding-left: 20px; position: relative; }
.readiness-result li::before { content: "→"; position: absolute; left: 0; color: #9ca3ff; }
.readiness-result .button { margin-top: auto; position: relative; top: 8px; }

.frm-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: center; }
.frm-visual { min-height: 520px; position: relative; border-radius: 28px; background: linear-gradient(145deg, #f3f3fb, #fff); border: 1px solid var(--line); box-shadow: inset 0 1px 0 white; }
.mini-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-4deg); width: 150px; height: 150px; border-radius: 35px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--violet)); color: white; font-size: 26px; font-weight: 800; box-shadow: 0 30px 60px rgba(99,102,241,.28); }
.mini-card { position: absolute; width: 150px; padding: 16px; border-radius: 15px; background: rgba(255,255,255,.82); border: 1px solid rgba(99,102,241,.12); box-shadow: 0 18px 42px rgba(42,45,90,.1); backdrop-filter: blur(12px); animation: cardFloat 6s ease-in-out infinite; }
.mini-card span { display: block; color: var(--text-3); font-size: 10px; }.mini-card b { display: block; margin-top: 7px; font-size: 14px; line-height: 1.3; }
.mini-card.one { left: 9%; top: 17%; }.mini-card.two { right: 7%; top: 13%; animation-delay: -2s; }.mini-card.three { right: 10%; bottom: 12%; animation-delay: -4s; }
.frm-copy h2 { margin: 0; font-size: clamp(40px,4.2vw,60px); line-height: 1.08; letter-spacing: -.045em; }
.frm-copy > p:not(.eyebrow) { margin: 26px 0 0; color: var(--text-3); font-size: 16px; line-height: 1.75; }
.text-link { margin-top: 28px; display: inline-flex; gap: 24px; align-items: center; color: var(--primary-dark); font-size: 14px; font-weight: 800; }.text-link span { font-size: 20px; transition: transform .2s; }.text-link:hover span { transform: translateX(5px); }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 12%; align-items: start; }
.faq-section .section-heading { display: block; }.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 0; font-size: 16px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--primary); font-size: 24px; font-weight: 400; transition: transform .2s; }.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 50px 26px 0; color: var(--text-3); font-size: 14px; line-height: 1.75; }

.contact-section { width: min(100% - 48px, 1392px); margin: 80px auto 0; border-radius: 32px; background: linear-gradient(135deg, #111427, #242044 68%, #322260); color: white; padding: 84px max(48px, calc((100vw - 1344px)/2 + 24px)); display: grid; grid-template-columns: 1.2fr .8fr; gap: 12%; align-items: end; position: relative; overflow: hidden; }
.contact-section::after { content: ""; position: absolute; right: -140px; bottom: -260px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.5), transparent 67%); }
.contact-section h2 { margin: 0; font-size: clamp(44px,5vw,72px); line-height: 1.04; letter-spacing: -.05em; position: relative; z-index: 1; }
.contact-action { position: relative; z-index: 1; }.contact-action p { color: #c7c8d6; line-height: 1.7; font-size: 15px; margin: 0 0 28px; }
.button-light { width: max-content; background: white; color: #25224a; }.button-light:hover { box-shadow: 0 16px 38px rgba(0,0,0,.2); }

[data-frm-site-footer] { margin-top: 0; }
[data-frm-site-footer] a { min-height: 44px; }

@keyframes moveDot { from { left: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } to { left: 100%; opacity: 0; } }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.reveal { animation: reveal .7s cubic-bezier(.22,1,.36,1) both; }.hero-art { animation-delay: .12s; }
@keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  .site-header, .hero, .section { width: min(100% - 48px, 940px); }
  .desktop-nav { gap: 20px; }.desktop-nav a { font-size: 12px; }
  .hero { grid-template-columns: 58% 42%; min-height: 720px; }.hero-art { left: 42%; opacity: .9; }.hero-copy { padding-bottom: 70px; }
  .proof-row { grid-column: 1 / -1; width: 70%; }.section { padding: 92px 0; }
  .context-panel { padding: 48px; grid-template-columns: 1fr; gap: 30px; }.context-flow { min-height: 250px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }.service-card { min-height: 430px; }.service-card h3 { font-size: 27px; }
  .readiness-card { grid-template-columns: 1fr; }.readiness-result { min-height: 360px; }
}

@media (max-width: 760px) {
  .site-header, .hero, .section { width: min(100% - 36px, 680px); }
  .site-header { position: sticky; top: 0; height: 80px; grid-template-columns: minmax(0, 1fr) auto; background: rgba(250,250,254,.94); backdrop-filter: blur(18px); }.desktop-nav { display: none; }.header-action { min-height: 44px; font-size: 11px; padding: 9px 12px; }
  .hero { min-height: auto; display: block; padding: 66px 0 34px; }.hero-copy { max-width: none; padding: 0; }.hero-art { position: relative; inset: auto; height: 330px; margin: 28px -18px -18px; opacity: 1; }.hero-art img { object-fit: contain; object-position: center; -webkit-mask-image: radial-gradient(ellipse 96% 84% at 50% 52%, #000 76%, transparent 100%); mask-image: radial-gradient(ellipse 96% 84% at 50% 52%, #000 76%, transparent 100%); }
  h1 { font-size: clamp(44px, 12vw, 66px); }.hero-lead { font-size: 16px; }.hero-actions { align-items: stretch; flex-direction: column; }.button { width: 100%; }
  .proof-row { width: 100%; grid-template-columns: 1fr; padding: 34px 0 0; gap: 12px; }.proof-row > div + div { border-left: 0; padding-left: 0; }.proof-row > div { min-height: 42px; }
  .section { padding: 78px 0; }.section-heading, .section-heading.compact { display: block; }.section-heading h2 { margin-bottom: 24px; }.section-heading > p:last-child { font-size: 14px; }
  .layer-grid, .service-grid { grid-template-columns: 1fr; }.layer-card { min-height: 260px; }.service-card { min-height: 410px; }.service-card h3 { margin-top: 44px; }
  .context-section { width: calc(100% - 20px); }.context-panel { padding: 34px 24px; border-radius: 22px; }.context-flow { grid-template-columns: 1fr 36px 92px 36px .8fr; min-height: 250px; }.context-core { width: 90px; border-radius: 20px; }.context-core strong { font-size: 12px; }.source-cluster span, .result-cluster span { padding: 8px; font-size: 8px; }
  .process, .frm-section, .faq-section { grid-template-columns: 1fr; gap: 48px; }.process .section-heading { position: static; }.frm-visual { min-height: 410px; order: 2; }.frm-copy { order: 1; }.mini-core { width: 120px; height: 120px; }.mini-card { width: 120px; }
  .readiness { padding-top: 32px; }.readiness-card { margin-top: 34px; padding: 10px; border-radius: 20px; }.readiness fieldset { grid-template-columns: 1fr 1fr; padding: 15px; }.readiness legend { grid-column: 1 / -1; display: flex; gap: 10px; }.readiness label { justify-content: center; }.readiness-result { min-height: 400px; padding: 26px 22px; }
  .contact-section { width: calc(100% - 20px); margin-top: 40px; padding: 60px 26px; grid-template-columns: 1fr; gap: 42px; border-radius: 24px; }.contact-section h2 { font-size: 45px; }
}

@media (max-width: 430px) {
  .eyebrow { gap: 8px; font-size: 10px; letter-spacing: .1em; }
  .eyebrow span { width: 18px; }
  h1 { font-size: 42px; }.section-heading h2, .frm-copy h2, .context-copy h2 { font-size: 38px; }
  .context-flow { transform: scale(.92); transform-origin: center; margin-inline: -18px; }
  .contact-section h2 { font-size: 39px; }
  .brand-lockup [data-frm-logo-lockup-product] > span > span:nth-child(n+2) { display: none !important; }
  .header-action { max-width: 118px; padding-inline: 10px; text-align: center; line-height: 1.2; }
}

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

:where(a, summary, input):focus-visible {
  outline: 3px solid var(--frm-accent, #6366f1);
  outline-offset: 4px;
  border-radius: 6px;
}
