:root {
  --ink: #0f1b35;
  --text: #34425e;
  --muted: #66738d;
  --line: #dce4f1;
  --surface: #ffffff;
  --surface-soft: #f5f8ff;
  --blue: #3157e8;
  --blue-dark: #2445c8;
  --blue-soft: #eaf0ff;
  --cyan: #0ea5e9;
  --green: #0f9f6e;
  --green-soft: #e9fbf4;
  --amber: #b76a08;
  --amber-soft: #fff7e7;
  --shadow-sm: 0 8px 24px rgba(28, 46, 90, .07);
  --shadow-lg: 0 22px 60px rgba(28, 46, 90, .13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(49, 87, 232, .28); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 2000;
  padding: 10px 16px; color: #fff; background: var(--ink); border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.surface-soft { background: var(--surface-soft); }
.surface-blue {
  background:
    radial-gradient(circle at 5% 10%, rgba(14,165,233,.12), transparent 27%),
    radial-gradient(circle at 90% 85%, rgba(79,70,229,.12), transparent 30%),
    #f6f8ff;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px;
  color: var(--blue); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }
.lead { color: var(--text); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.muted { color: var(--muted); }
.section-heading { max-width: 800px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.accent { color: var(--blue); }

.site-header {
  position: sticky; top: 0; z-index: 1000; height: 78px;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(220,228,241,.86);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 820; letter-spacing: -.025em; }
.brand:hover { color: var(--ink); }
.brand img { width: 40px; height: 40px; }
.brand .brand-logo { display: block; width: 240px; height: auto; object-fit: contain; }
.brand-text { display: none; }
.brand-text small { margin-top: 4px; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a:not(.button) { padding: 10px 13px; color: #4a5871; font-size: .91rem; font-weight: 680; border-radius: 9px; }
.main-nav > a:not(.button):hover, .main-nav > a[aria-current="page"]:not(.button) { color: var(--blue); background: var(--blue-soft); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: #fff; border-radius: 10px; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); transition: .2s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 11px 20px; border: 1px solid transparent; border-radius: 11px;
  font-weight: 760; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #4f46e5); box-shadow: 0 10px 24px rgba(49,87,232,.25); }
.button-primary:hover { color: #fff; background: linear-gradient(135deg, var(--blue-dark), #4338ca); box-shadow: 0 14px 30px rgba(49,87,232,.3); }
.button-secondary { color: var(--ink); background: #fff; border-color: #cbd6e8; }
.button-secondary:hover { color: var(--blue); border-color: #9eb1ec; box-shadow: var(--shadow-sm); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .89rem; }
.button svg { width: 18px; height: 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 760; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; isolation: isolate; overflow: hidden; padding: 55px 0 90px; background: #f7f9ff; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -4;
  background:
    radial-gradient(circle at 76% 30%, rgba(49,87,232,.2) 0, rgba(79,70,229,.1) 23%, transparent 47%),
    radial-gradient(circle at 12% 15%, rgba(14,165,233,.11), transparent 30%),
    radial-gradient(circle at 42% 92%, rgba(99,102,241,.1), transparent 34%),
    linear-gradient(135deg,#fbfdff 0%,#f4f7ff 47%,#eef2ff 100%);
}
.hero::after {
  content: ""; position: absolute; z-index: -2; width: 720px; height: 720px; right: -355px; top: -355px;
  border: 1px solid rgba(49,87,232,.16); border-radius: 50%; box-shadow: 0 0 0 88px rgba(49,87,232,.045), 0 0 0 176px rgba(99,102,241,.028);
}
.hero-backdrop { position: absolute; inset: 0; z-index: -3; overflow: hidden; pointer-events: none; }
.hero-backdrop::before {
  content: ""; position: absolute; inset: 0; opacity: .52;
  background-image: linear-gradient(rgba(49,87,232,.065) 1px, transparent 1px), linear-gradient(90deg,rgba(49,87,232,.065) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.5) 42%,#000 100%);
  mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.5) 42%,#000 100%);
}
.hero-backdrop::after {
  content: ""; position: absolute; width: 760px; height: 230px; right: 4%; bottom: -150px;
  background: linear-gradient(90deg,rgba(14,165,233,.2),rgba(49,87,232,.2),rgba(124,58,237,.13));
  border-radius: 50%; filter: blur(48px); transform: rotate(-8deg);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); animation: hero-float 11s ease-in-out infinite alternate; }
.hero-glow-one { width: 360px; height: 360px; right: 20%; top: 10%; background: radial-gradient(circle,rgba(255,255,255,.9) 0%,rgba(96,165,250,.18) 45%,transparent 72%); }
.hero-glow-two { width: 280px; height: 280px; left: -90px; bottom: -100px; background: radial-gradient(circle,rgba(255,255,255,.82) 0%,rgba(14,165,233,.13) 48%,transparent 72%); animation-delay: -4s; }
.hero-orbit { position: absolute; width: 470px; height: 470px; right: 10%; top: 2%; border: 1px solid rgba(99,102,241,.12); border-radius: 50%; transform: rotate(-18deg); }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border: 1px solid rgba(49,87,232,.09); border-radius: 50%; }
.hero-orbit::before { inset: 54px; }
.hero-orbit::after { inset: 112px; }
.hero-spark { position: absolute; width: 8px; height: 8px; background: #fff; border: 2px solid rgba(49,87,232,.38); border-radius: 50%; box-shadow: 0 0 0 7px rgba(49,87,232,.055), 0 8px 24px rgba(49,87,232,.2); }
.hero-spark-one { right: 44%; top: 18%; }
.hero-spark-two { right: 8%; top: 58%; width: 6px; height: 6px; }
.hero-spark-three { left: 6%; top: 36%; width: 5px; height: 5px; opacity: .65; }
@keyframes hero-float { from { transform: translate3d(0,-8px,0) scale(.98); } to { transform: translate3d(12px,14px,0) scale(1.05); } }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; gap: 62px; }
.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 6vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-brand-accent {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(110deg, var(--blue), #6046ee 70%, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-brand-accent::after {
  position: absolute;
  right: 0;
  bottom: -.09em;
  left: 3%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, rgba(49,87,232,.2), rgba(14,165,233,.42));
  border-radius: 999px;
}
.hero-tagline { max-width: 670px; margin: 8px 0 0; color: var(--ink); font-size: clamp(1.85rem, 3vw, 3rem); font-weight: 820; letter-spacing: -.035em; line-height: 1.08; }
.hero-purpose { max-width: 670px; margin-top: 24px; }
.hero-purpose h2 { color: var(--ink); font-size: 1rem; letter-spacing: -.01em; }
.hero-copy .lead { max-width: 670px; margin-top: 8px; }
.oauth-purpose { display: flex; align-items: flex-start; gap: 12px; max-width: 670px; margin-top: 22px; padding: 14px 16px; color: #475675; background: rgba(255,255,255,.72); border: 1px solid rgba(49,87,232,.18); border-radius: 14px; box-shadow: 0 12px 32px rgba(49,87,232,.07); backdrop-filter: blur(8px); }
.oauth-purpose-icon { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; color: var(--blue); background: var(--blue-soft); border-radius: 10px; }
.oauth-purpose-icon svg { width: 21px; height: 21px; }
.oauth-purpose h2 { margin: 0 0 3px; color: var(--ink); font-size: .88rem; letter-spacing: -.005em; }
.oauth-purpose p { margin: 0; font-size: .84rem; line-height: 1.62; }
.oauth-purpose code { padding: 1px 5px; color: #2444b8; background: #edf1ff; border-radius: 5px; font-size: .78rem; }
.oauth-purpose a { font-weight: 750; }
.connected-services-disclosure { padding-top: 0; }
.connected-services-disclosure .oauth-purpose { max-width: 880px; margin: 0 auto; }
.trust-line { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--muted); font-size: .86rem; font-weight: 680; }
.trust-line span { display: inline-flex; align-items: center; gap: 7px; }
.trust-line span::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; color: var(--green); background: var(--green-soft); border-radius: 50%; font-size: .72rem; }

.product-window { position: relative; padding: 14px; background: rgba(255,255,255,.88); border: 1px solid rgba(203,214,232,.85); border-radius: 24px; box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.window-top { display: flex; align-items: center; justify-content: space-between; padding: 3px 4px 13px; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; background: #d7deea; border-radius: 50%; }
.window-label { color: #7b879b; font-size: .68rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.product-ui { overflow: hidden; background: #f7f9fd; border: 1px solid #e1e7f1; border-radius: 14px; }
.product-tabs { display: flex; gap: 2px; padding: 10px; background: #fff; border-bottom: 1px solid #e4e9f2; }
.product-tabs span { padding: 8px 10px; color: #69758c; font-size: .66rem; font-weight: 750; border-radius: 7px; }
.product-tabs .active { color: var(--blue); background: var(--blue-soft); }
.product-content { display: grid; grid-template-columns: 1fr 150px; gap: 12px; padding: 12px; }
.backup-panel, .schedule-panel { padding: 16px; background: #fff; border: 1px solid #dfe6f2; border-radius: 12px; }
.ui-kicker { color: var(--blue); font-size: .56rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.ui-title { margin-top: 3px; color: var(--ink); font-size: .9rem; font-weight: 820; }
.backup-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 13px; }
.backup-option { min-height: 66px; padding: 9px; color: #66738d; font-size: .54rem; background: #fbfcfe; border: 1px solid #e0e6ef; border-radius: 8px; }
.backup-option strong { display: block; margin-bottom: 4px; color: #303d56; font-size: .61rem; }
.backup-option.selected { background: #edf1ff; border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.ui-action-row { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; padding-top: 12px; border-top: 1px solid #e6ebf3; }
.ui-action-row span { color: #77839a; font-size: .56rem; }
.ui-button { padding: 8px 13px; color: #fff; font-size: .6rem; font-weight: 800; background: var(--blue); border-radius: 6px; }
.status-pill { display: inline-flex; margin-top: 13px; padding: 5px 8px; color: var(--green); font-size: .56rem; font-weight: 800; background: var(--green-soft); border-radius: 99px; }
.schedule-list { margin-top: 12px; }
.schedule-list div { padding: 10px 0; border-top: 1px solid #e7ecf3; }
.schedule-list small { display: block; color: #7a869b; font-size: .51rem; }
.schedule-list strong { color: #34415a; font-size: .59rem; }
.floating-badge { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: #fff; border: 1px solid #dfe6f2; border-radius: 13px; box-shadow: var(--shadow-sm); }
.floating-badge strong { display: block; color: var(--ink); font-size: .79rem; }
.floating-badge small { display: block; color: var(--muted); font-size: .65rem; }
.floating-badge .badge-icon { display: grid; place-items: center; width: 34px; height: 34px; color: var(--green); background: var(--green-soft); border-radius: 10px; }
.floating-badge.one { right: -24px; top: 95px; }
.floating-badge.two { left: -30px; bottom: 32px; }

.logo-strip { position: relative; z-index: 3; padding: 18px 0; background: linear-gradient(180deg, #f8faff 0%, #f5f8ff 100%); border-bottom: 1px solid var(--line); }
.logo-strip-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; padding: 14px 8px; background: rgba(255,255,255,.96); border: 1px solid #dce5f8; border-radius: 22px; box-shadow: 0 16px 42px rgba(30,58,138,.1); }
.strip-feature { position: relative; display: grid; grid-template-columns: 72px minmax(0,1fr); align-items: center; gap: 16px; min-width: 0; padding: 8px 24px; }
.strip-feature:not(:last-child)::after { content: ""; position: absolute; top: 8px; right: 0; bottom: 8px; width: 1px; background: #cbd8f1; }
.strip-icon { display: grid; place-items: center; width: 72px; height: 72px; color: #1164e8; background: radial-gradient(circle at 35% 25%, #fff 0 8%, #e8f1ff 44%, #dceaff 100%); border: 1px solid #deE8fb; border-radius: 50%; box-shadow: inset 0 0 0 7px rgba(255,255,255,.48); }
.strip-icon svg { width: 40px; height: 40px; filter: drop-shadow(0 5px 6px rgba(17,100,232,.16)); }
.strip-copy { display: grid; gap: 5px; min-width: 0; }
.strip-copy strong { color: var(--ink); font-size: .94rem; font-weight: 850; letter-spacing: -.01em; line-height: 1.2; text-transform: uppercase; }
.strip-copy > span { color: #43516b; font-size: .82rem; font-weight: 520; line-height: 1.5; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: #c5d2f7; box-shadow: var(--shadow-sm); }
.feature-card .icon, .mini-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 20px; color: var(--blue); background: var(--blue-soft); border-radius: 13px; }
.feature-card .icon svg, .mini-icon svg { width: 23px; height: 23px; }
.feature-card p { margin: 10px 0 0; color: var(--muted); font-size: .93rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split.reverse .split-media { order: 2; }
.split-copy > p { margin-top: 18px; }
.check-list { display: grid; gap: 13px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: #3f4d66; font-weight: 630; }
.check-list li::before { content: "✓"; flex: 0 0 24px; display: grid; place-items: center; width: 24px; height: 24px; color: var(--green); background: var(--green-soft); border-radius: 50%; font-size: .75rem; }
.photo-frame { position: relative; overflow: hidden; border: 8px solid #fff; border-radius: 26px; box-shadow: var(--shadow-lg); }
.photo-frame img { display: block; width: 100%; height: auto; }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(49,87,232,.12), transparent 45%); pointer-events: none; }
.photo-caption {  left: 22px; right: 22px; bottom: 20px; z-index: 2; padding: 15px 17px; color: var(--ink); background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.9); border-radius: 13px; backdrop-filter: blur(12px); }
.photo-caption strong { display: block; font-size: .92rem; }
.photo-caption span { color: var(--muted); font-size: .75rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); counter-increment: step; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 44px; right: -19px; z-index: 2; width: 18px; border-top: 1px dashed #9eb0e9; }
.step p { margin: 10px 0 0; color: var(--muted); }

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.metric {
  position: relative;
  min-height: 150px;
  padding: 24px 26px 25px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4f2;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(43,70,137,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.metric::before {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #5570d9;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .04em;
  background: #eef2ff;
  border: 1px solid #dce4ff;
  border-radius: 9px;
}
.metric:nth-child(1)::before { content: "01"; }
.metric:nth-child(2)::before { content: "02"; }
.metric:nth-child(3)::before { content: "03"; }
.metric:nth-child(4)::before { content: "04"; }
.metric::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; content: ""; background: var(--blue); opacity: 0; transition: opacity .22s ease; }
.metric:hover { transform: translateY(-4px); border-color: #bfcdf7; box-shadow: 0 16px 34px rgba(43,70,137,.12); }
.metric:hover::after { opacity: 1; }
.metric small {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  margin: 0 38px 13px 0;
  padding: 4px 8px;
  color: var(--blue);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  background: #f2f5ff;
  border-radius: 6px;
  text-transform: uppercase;
}
.metric strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.65rem,2.4vw,2rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.metric span { display: block; margin-top: 10px; color: var(--muted); font-size: .86rem; line-height: 1.45; }

.cta-panel { position: relative; overflow: hidden; padding: 64px; color: #fff; background: linear-gradient(135deg,#274bd8 0%,#4f46e5 58%,#3157e8 100%); border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(49,87,232,.22); }
.cta-panel::before { content: ""; position: absolute; width: 380px; height: 380px; right: -120px; top: -210px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.05), 0 0 0 120px rgba(255,255,255,.03); }
.cta-panel h2, .cta-panel h3 { color: #fff; }
.cta-panel p { max-width: 660px; margin-top: 18px; color: rgba(255,255,255,.82); }
.cta-panel .button-secondary { border-color: #fff; }

.page-hero { position: relative; overflow: hidden; padding: 52px 0 60px; background: linear-gradient(180deg,#f8faff,#f2f6ff); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -250px; border: 1px solid rgba(49,87,232,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(49,87,232,.03); }
.page-hero-inner { position: relative; z-index: 1; max-width: 950px; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.25rem); }
.page-hero .lead { max-width: 760px; margin-top: 22px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: .82rem; font-weight: 650; }
.breadcrumb a { color: var(--muted); }

.feature-category { display: grid; grid-template-columns: 280px 1fr; gap: 54px; padding: 54px 0; border-top: 1px solid var(--line); }
.feature-category:first-child { border-top: 0; padding-top: 0; }
.category-title { position: sticky; top: 112px; align-self: start; }
.category-title p { margin-top: 12px; color: var(--muted); font-size: .92rem; }
.category-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.category-item { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.category-item h3 { display: flex; align-items: center; gap: 10px; font-size: 1.04rem; }
.category-item h3::before { content: ""; flex: 0 0 9px; width: 9px; height: 9px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 5px var(--blue-soft); }
.category-item p { margin: 10px 0 0; color: var(--muted); font-size: .89rem; }
.tag { display: inline-flex; margin-top: 14px; padding: 5px 8px; color: var(--blue); background: var(--blue-soft); border-radius: 99px; font-size: .68rem; font-weight: 800; text-transform: uppercase; }

.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.principle { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.principle strong { display: block; margin-bottom: 8px; color: var(--ink); }
.principle p { margin: 0; color: var(--muted); font-size: .88rem; }
.team-story-section { position: relative; overflow: hidden; padding-top: 8px; }
.team-story {
  position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); gap: 52px; align-items: center;
  padding: 48px 52px; background: linear-gradient(135deg,#f8fbff 0%,#edf3ff 52%,#f4f1ff 100%); border: 1px solid #cad7fa; border-radius: 26px; box-shadow: 0 20px 55px rgba(40,68,148,.1);
}
.team-story::before { content: ""; position: absolute; z-index: -1; width: 360px; height: 360px; right: -155px; top: -205px; border: 1px solid rgba(49,87,232,.17); border-radius: 50%; box-shadow: 0 0 0 54px rgba(49,87,232,.045),0 0 0 108px rgba(99,102,241,.025); }
.team-story::after { content: ""; position: absolute; z-index: -1; width: 380px; height: 190px; left: -120px; bottom: -155px; background: rgba(14,165,233,.1); border-radius: 50%; filter: blur(35px); }
.team-story-copy h2 { max-width: 780px; }
.team-story-copy .lead { margin-top: 18px; }
.team-story-copy > p:not(.eyebrow) { max-width: 820px; }
.team-promise { margin: 22px 0 0; padding: 15px 17px; color: #263b73; background: rgba(255,255,255,.72); border-left: 3px solid var(--blue); border-radius: 0 12px 12px 0; font-weight: 680; }
.team-story-facts { display: grid; gap: 12px; }
.team-story-facts div { padding: 18px 20px; background: rgba(255,255,255,.82); border: 1px solid rgba(196,208,240,.92); border-radius: 15px; box-shadow: 0 8px 22px rgba(42,64,120,.06); }
.team-story-facts strong { display: block; margin-bottom: 4px; color: var(--blue); font-size: 1.65rem; line-height: 1.1; letter-spacing: -.035em; }
.team-story-facts span { display: block; color: #52617e; font-size: .84rem; line-height: 1.45; }
.timeline { position: relative; display: grid; gap: 0; max-width: 860px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 17px; top: 14px; bottom: 14px; width: 2px; background: #d9e2f5; }
.timeline-item { position: relative; display: grid; grid-template-columns: 36px 1fr; gap: 22px; padding-bottom: 32px; }
.timeline-dot { position: relative; z-index: 1; width: 36px; height: 36px; background: #fff; border: 8px solid var(--blue-soft); border-radius: 50%; box-shadow: inset 0 0 0 5px var(--blue); }
.timeline-item h3 { margin-top: 6px; }
.timeline-item p { margin: 8px 0 0; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 24px; align-items: start; }
.contact-card, .form-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-card { background: linear-gradient(160deg,#f7f9ff,#fff); }
.contact-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-method { display: flex; align-items: center; gap: 13px; padding: 15px; background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.contact-method .mini-icon { display: grid; flex: 0 0 40px; width: 40px; height: 40px; margin: 0; place-items: center; align-self: center; }
.contact-method .mini-icon svg { display: block; margin: 0; }
.contact-method strong, .contact-method span { display: block; }
.contact-method strong { color: var(--ink); font-size: .88rem; }
.contact-method span { color: var(--muted); font-size: .79rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1/-1; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .86rem; font-weight: 720; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbfcff; border: 1px solid #cfd9e9; border-radius: 10px; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(49,87,232,.1); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .78rem; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; color: var(--green); background: var(--green-soft); border-radius: 10px; font-size: .86rem; }
.form-status.show { display: block; }
.form-status.error { color: #9c2f2f; background: #fff0f0; border: 1px solid #f0c4c4; }
.field-error { display: block; margin-top: 6px; color: #a12f2f; font-size: .78rem; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c94a4a; }
.captcha-wrap { margin-top: 20px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
#contact-form button[disabled] { cursor: wait; opacity: .7; }

.faq-layout { display: grid; grid-template-columns: 270px 1fr; gap: 54px; align-items: start; }
.faq-nav { position: sticky; top: 110px; display: grid; gap: 5px; padding: 14px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 16px; }
.faq-nav a { padding: 10px 12px; color: var(--text); font-size: .86rem; font-weight: 680; border-radius: 8px; }
.faq-nav a:hover { color: var(--blue); background: #fff; }
.faq-group { margin-bottom: 42px; scroll-margin-top: 110px; }
.faq-group h2 { margin-bottom: 18px; font-size: 1.55rem; }
.faq-item { background: #fff; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 0; color: var(--ink); font-weight: 750; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 28px; display: grid; place-items: center; width: 28px; height: 28px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { max-width: 760px; padding: 0 44px 20px 0; color: var(--muted); }

.download-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; padding: 46px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-lg); }
.download-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.meta-box { padding: 18px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 13px; }
.meta-box span { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.meta-box strong { display: block; margin-top: 4px; color: var(--ink); }
.notice { padding: 16px 18px; color: var(--amber); background: var(--amber-soft); border: 1px solid #f4d79f; border-radius: 12px; font-size: .88rem; }
.install-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.site-footer { position: relative; overflow: hidden; padding: 54px 0 22px; background: linear-gradient(145deg,#f8faff 0%,#f3f6fc 62%,#eef3ff 100%); border-top: 1px solid #dce3f1; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg,var(--blue),#7487ff 48%,#c7d2ff); }
.site-footer::after { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; top: -190px; border: 1px solid rgba(49,87,232,.1); border-radius: 50%; box-shadow: 0 0 0 62px rgba(49,87,232,.025); pointer-events: none; }
.site-footer .container { position: relative; z-index: 1; }
.footer-cta { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 34px; margin-bottom: 48px; padding: 32px 38px; color: #fff; background: linear-gradient(125deg,#2549d8 0%,#4565ed 52%,#7087ff 100%); border: 1px solid rgba(255,255,255,.26); border-radius: 24px; box-shadow: 0 20px 45px rgba(44,75,190,.2), inset 0 1px 0 rgba(255,255,255,.2); }
.footer-cta::before { content: ""; position: absolute; z-index: -1; width: 270px; height: 270px; right: 17%; top: -190px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 46px rgba(255,255,255,.05),0 0 0 92px rgba(255,255,255,.025); }
.footer-cta::after { content: ""; position: absolute; z-index: -1; width: 170px; height: 170px; left: -80px; bottom: -125px; background: rgba(255,255,255,.08); border-radius: 50%; }
.footer-cta-copy { max-width: 660px; }
.footer-cta-kicker { display: block; margin-bottom: 8px; color: #dce4ff; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-cta h2 { color: #fff; font-size: clamp(1.45rem,2.2vw,2rem); letter-spacing: -.025em; }
.footer-cta p { max-width: 590px; margin-top: 7px; color: #e7ecff; font-size: .88rem; }
.footer-cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.footer-cta .button { min-height: 44px; padding: 0 18px; white-space: nowrap; }
.footer-cta .button-primary { color: #2448d7; background: #fff; box-shadow: 0 9px 20px rgba(18,36,111,.2); }
.footer-cta .button-primary:hover { background: #f7f9ff; transform: translateY(-2px); }
.footer-cta .button-secondary { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }
.footer-cta .button-secondary:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .72fr .82fr 1fr; gap: 16px; align-items: stretch; }
.footer-brand, .footer-column { position: relative; overflow: hidden; min-height: 100%; padding: 22px 23px; background: rgba(255,255,255,.65); border: 1px solid rgba(211,221,239,.9); border-radius: 17px; box-shadow: 0 8px 24px rgba(35,54,101,.055); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.footer-brand:hover, .footer-column:hover { transform: translateY(-3px); border-color: #bccbfa; box-shadow: 0 14px 30px rgba(35,54,101,.1); }
.footer-brand { background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(236,241,255,.9)); border-color: #cbd7fb; }
.footer-brand::before, .footer-column::before { content: ""; position: absolute; inset: 0 auto auto 22px; width: 42px; height: 3px; background: linear-gradient(90deg,var(--blue),#8092ff); border-radius: 0 0 4px 4px; }
.footer-brand::after { content: ""; position: absolute; width: 120px; height: 120px; right: -68px; bottom: -72px; border: 18px solid rgba(49,87,232,.045); border-radius: 50%; pointer-events: none; }
.footer-brand .brand { position: relative; z-index: 1; width: fit-content; }
.footer-brand .brand img { filter: drop-shadow(0 7px 12px rgba(49,87,232,.12)); transition: transform .2s ease; }
.footer-brand .brand .brand-logo { width: 210px; }
.footer-brand .brand > span { display: none; }
.footer-brand .brand:hover img { transform: translateY(-2px); }
.footer-brand p { position: relative; z-index: 1; max-width: 360px; margin-top: 16px; color: #63718a; font-size: .86rem; line-height: 1.65; }
.footer-brand p::after { content: "Local-first  •  Recovery-ready"; display: block; width: fit-content; margin-top: 14px; padding: 6px 9px; color: #3157d8; background: rgba(49,87,232,.08); border: 1px solid rgba(49,87,232,.13); border-radius: 999px; font-size: .68rem; font-weight: 750; letter-spacing: .025em; }
.footer-column h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: #24314a; font-size: .74rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-column h3::before { content: ""; width: 7px; height: 7px; background: var(--blue); border: 2px solid #dce4ff; border-radius: 50%; box-shadow: 0 0 0 3px rgba(49,87,232,.08); }
.footer-column a { display: block; width: calc(100% + 12px); margin: 2px -6px; padding: 7px 8px; color: #425270; border-radius: 8px; font-size: .84rem; font-weight: 650; text-decoration: underline; text-decoration-color: rgba(49,87,232,.3); text-decoration-thickness: 1px; text-underline-offset: 4px; transition: color .18s ease, background .18s ease, transform .18s ease, text-decoration-color .18s ease; }
.footer-column a::after { content: none; }
.footer-column a:hover, .footer-column a:focus-visible { color: var(--blue); background: rgba(49,87,232,.075); transform: translateX(2px); }
.footer-column a:hover, .footer-column a:focus-visible { text-decoration-color: var(--blue); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; margin-top: 28px; padding-top: 20px; color: #7a869a; border-top: 1px solid #d8e0ee; font-size: .76rem; }
.footer-badges { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.footer-badges span { padding: 6px 9px; color: #586984; background: rgba(255,255,255,.78); border: 1px solid #d9e1ef; border-radius: 8px; box-shadow: 0 3px 10px rgba(31,48,91,.035); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.footer-legal a { color: #59667d; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--blue); text-decoration: underline; }

/* Legal pages */
.legal-shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 42px; align-items: start; }
.legal-nav { position: sticky; top: 98px; padding: 20px; background: #f7f9fd; border: 1px solid var(--line); border-radius: 16px; }
.legal-nav strong { display: block; margin-bottom: 11px; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-nav a { display: block; padding: 7px 0; color: #59667d; font-size: .86rem; }
.legal-nav a:hover { color: var(--blue); }
.legal-content { max-width: 850px; }
.legal-summary { margin-bottom: 32px; padding: 22px 24px; background: var(--blue-soft); border: 1px solid #cbd7ff; border-radius: 16px; }
.legal-summary p { color: #43516a; }
.legal-section { scroll-margin-top: 105px; padding: 0 0 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin-bottom: 14px; font-size: clamp(1.35rem, 2vw, 1.72rem); }
.legal-section h3 { margin: 22px 0 9px; font-size: 1rem; }
.legal-section p, .legal-section li { color: #536079; font-size: .96rem; line-height: 1.78; }
.legal-section code { overflow-wrap: anywhere; padding: 2px 6px; color: #2444b8; background: #edf1ff; border-radius: 5px; font-size: .88em; }
.legal-section p + p { margin-top: 12px; }
.legal-section ul { display: grid; gap: 8px; margin: 13px 0 0 20px; }
.legal-table { width: 100%; margin-top: 18px; border-collapse: collapse; font-size: .9rem; }
.legal-table th, .legal-table td { padding: 13px 14px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.legal-table th { background: #f7f9fd; color: var(--ink); }
.legal-table td { color: #536079; }
.legal-callout { margin-top: 18px; padding: 16px 18px; border-left: 3px solid var(--blue); background: #f7f9ff; border-radius: 0 10px 10px 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 760px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 42px; }
  .principles { grid-template-columns: 1fr 1fr; }
  .team-story { grid-template-columns: 1fr; gap: 30px; }
  .team-story-facts { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .logo-strip-inner { grid-template-columns: 1fr 1fr; }
  .strip-feature:nth-child(2)::after { display: none; }
  .strip-feature:nth-child(-n+2) { padding-bottom: 17px; border-bottom: 1px solid #dce5f8; }
  .strip-feature:nth-child(n+3) { padding-top: 17px; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 70px 0 auto; display: none; align-items: stretch; padding: 18px 20px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .nav-open .main-nav { display: grid; }
  .main-nav > a:not(.button) { padding: 13px 14px; }
  .main-nav .button { margin-top: 6px; }
  .nav-open .nav-toggle span { opacity: 0; }
  .nav-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 68px 0 82px; }
  .hero-grid { gap: 48px; }
  .hero-orbit { right: -160px; top: 28%; }
  .hero-backdrop::before { opacity: .34; -webkit-mask-image: linear-gradient(180deg,transparent 0%,#000 52%,#000 100%); mask-image: linear-gradient(180deg,transparent 0%,#000 52%,#000 100%); }
  .product-window { transform: none; }
  .floating-badge { display: none; }
  .section { padding: 76px 0; }
  .split, .contact-layout, .download-panel { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: initial; }
  .steps, .metric-row, .install-steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .feature-category, .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .category-title, .faq-nav { position: static; }
  .faq-nav { display: flex; overflow-x: auto; }
  .faq-nav a { white-space: nowrap; }
  .cta-panel { padding: 46px 34px; }
  .team-story { padding: 38px 34px; }
  .team-story-facts { grid-template-columns: 1fr; }
  .footer-cta { grid-template-columns: 1fr; gap: 22px; }
  .footer-cta-actions { justify-content: flex-start; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-badges { display: none; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand .brand-logo { width: 166px; }
  .footer-brand .brand .brand-logo { width: 196px; }
  .brand-text small { display: none; }
  .hero { padding-top: 52px; }
  .hero::after { width: 470px; height: 470px; right: -320px; top: -220px; }
  .hero-glow-one { right: -160px; top: 34%; }
  .hero-spark-three { display: none; }
  h1 { font-size: 2.65rem; }
  .button-row .button { width: 100%; }
  .trust-line { display: grid; gap: 10px; }
  .logo-strip { padding: 14px 0; }
  .logo-strip-inner { grid-template-columns: 1fr; padding: 8px 14px; border-radius: 18px; }
  .strip-feature { grid-template-columns: 58px minmax(0,1fr); gap: 14px; padding: 14px 4px; border-bottom: 1px solid #dce5f8; }
  .strip-feature:nth-child(-n+2), .strip-feature:nth-child(n+3) { padding-top: 14px; padding-bottom: 14px; }
  .strip-feature:last-child { border-bottom: 0; }
  .strip-feature::after { display: none; }
  .strip-icon { width: 58px; height: 58px; }
  .strip-icon svg { width: 31px; height: 31px; }
  .strip-copy strong { font-size: .86rem; }
  .strip-copy > span { font-size: .78rem; }
  .product-tabs span:nth-child(n+4) { display: none; }
  .product-content { grid-template-columns: 1fr; }
  .schedule-panel { display: none; }
  .backup-options { grid-template-columns: 1fr; }
  .backup-option { min-height: 48px; }
  .feature-grid, .category-items, .principles, .steps, .metric-row, .install-steps, .form-grid, .download-meta { grid-template-columns: 1fr; }
  .feature-card, .contact-card, .form-card { padding: 23px; }
  .team-story { padding: 30px 22px; border-radius: 21px; }
  .metric { padding: 22px; }
  .page-hero { padding: 58px 0; }
  .page-hero h1 { font-size: 2.55rem; }
  .cta-panel { padding: 38px 24px; border-radius: 22px; }
  .download-panel { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1/-1; }
  .site-footer { padding-top: 44px; }
  .footer-cta { margin-bottom: 40px; padding: 28px 24px; border-radius: 20px; }
  .footer-cta-actions { display: grid; grid-template-columns: 1fr; }
  .footer-cta .button { width: 100%; }
  .footer-grid { gap: 14px; }
  .footer-brand, .footer-column { padding: 20px; }
  .footer-bottom { grid-template-columns: 1fr; align-items: start; gap: 12px; margin-top: 30px; }
  .footer-legal { justify-content: flex-start; }
  .legal-shell { grid-template-columns: 1fr; gap: 26px; }
  .legal-nav { position: static; columns: 2; }
  .legal-nav strong { column-span: all; }
}

@media (max-width: 580px) {
  .legal-nav { columns: 1; }
  .legal-table { display: block; overflow-x: auto; }
}

