:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f6f8fa;
  --surface-soft-2: #fafbfc;
  --ink: #1e2833;
  --ink-soft: #526171;
  --muted: #738294;
  --line: #dbe3ea;
  --brand: #243d5b;
  --brand-soft: #5c7086;
  --brand-link: #2f5f9f;
  --brand-light: #eaf0f5;
  --accent-red: #e76c60;
  --accent-green: #2f8b57;
  --accent-purple: #7266a8;
  --shadow: 0 14px 36px rgba(23, 33, 48, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.55; text-rendering: optimizeLegibility; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
strong { font-weight: 680; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow-shell { width: min(980px, 100%); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 9px 13px; color: #fff; background: var(--brand); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(219,227,234,.9); backdrop-filter: blur(14px); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand-lockup { text-decoration: none; }
.brand-row { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 31px; height: 31px; flex: 0 0 31px; }
.brand-copy { display: flex; flex-direction: column; }
.brand-title { color: var(--brand); font-size: 1.17rem; font-weight: 760; letter-spacing: .065em; line-height: 1; }
.brand-subtitle { margin-top: 5px; color: var(--muted); font-size: .52rem; font-weight: 760; letter-spacing: .15em; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 23px; }
.nav-link { color: var(--ink-soft); font-size: .9rem; font-weight: 610; text-decoration: none; }
.nav-link:hover { color: var(--brand); }

.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 0 18px; color: var(--brand); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 660; line-height: 1.1; text-decoration: none; transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(36,61,91,.09); }
.button-primary { color: #fff; background: var(--brand); border-color: var(--brand); }
.button-primary:hover { background: #1e334c; box-shadow: 0 9px 22px rgba(36,61,91,.18); }
.button-small { min-height: 40px; padding-inline: 15px; font-size: .86rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-link); font-weight: 650; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.text-link:hover { color: var(--brand); }

.section { padding: clamp(66px, 8vw, 96px) 0; scroll-margin-top: 88px; }
.section-soft { background: var(--surface-soft-2); border-top: 1px solid #edf1f4; border-bottom: 1px solid #edf1f4; }
.eyebrow { margin: 0 0 12px; color: var(--brand-soft); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading.compact { margin-bottom: 0; }
.centered-heading { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 630; letter-spacing: -.035em; line-height: 1.08; }
.section-heading p:last-child { margin: 12px 0 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.68; }

.hero { padding: clamp(72px, 8vw, 106px) 0 clamp(64px, 7vw, 86px); background: #fff; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(410px,.96fr); align-items: center; gap: clamp(48px,7vw,82px); }
.hero-copy { max-width: 600px; }
.hero h1 { max-width: 590px; margin: 0; color: var(--ink); font-size: clamp(3rem, 4.7vw, 3.8rem); font-weight: 650; letter-spacing: -.047em; line-height: 1.02; }
.hero h1 span { color: var(--brand); font-size: .43em; vertical-align: top; }
.hero-subhead { max-width: 570px; margin: 18px 0 0; color: var(--brand); font-size: clamp(1.15rem, 1.9vw, 1.38rem); font-weight: 620; line-height: 1.42; }
.hero-lead { max-width: 560px; margin: 15px 0 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.68; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.hero-change { max-width: 560px; margin: 17px 0 0; color: var(--ink-soft); font-size: .96rem; }
.hero-change strong { color: var(--brand); }

.identity-map { display: grid; grid-template-columns: 152px 28px minmax(0,1fr); align-items: center; gap: 15px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow); }
.identity-card { display: grid; justify-items: center; gap: 9px; padding: 16px 13px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 15px; }
.identity-card img { width: 102px; image-rendering: pixelated; }
.identity-card strong { color: var(--brand); font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: .9rem; }
.map-arrow { color: #9aabb9; font-size: 1.45rem; text-align: center; }
.destination-list { display: grid; gap: 9px; }
.destination-pill { display: grid; grid-template-columns: 10px minmax(0,1fr); align-items: center; gap: 11px; min-height: 48px; padding: 10px 13px; background: #fff; border: 1px solid var(--line); border-radius: 11px; }
.destination-pill strong { display: inline-block; color: var(--brand-link); font-size: .85rem; font-weight: 650; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.destination-pill:hover strong { color: var(--brand); }
.destination-pill small { display: block; margin-top: 2px; color: var(--muted); font-size: .66rem; }
.dot { width: 9px; height: 9px; border-radius: 2px; }
.dot-blue { background: var(--brand); }
.dot-red { background: var(--accent-red); }
.dot-purple { background: var(--accent-purple); }
.dot-green { background: var(--accent-green); }
.map-note { grid-column: 1/-1; margin: 4px 0 0; padding-top: 13px; color: var(--muted); border-top: 1px solid var(--line); font-size: .74rem; text-align: center; }
.map-note strong { color: var(--brand); font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; }

.comparison-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 16px; }
.comparison-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.comparison-focus { background: #f7fafc; border-color: #cfdae5; }
.comparison-label { margin: 0 0 18px; color: var(--brand-soft); font-size: .68rem; font-weight: 790; letter-spacing: .12em; text-transform: uppercase; }
.comparison-card code { display: block; margin-bottom: 17px; color: var(--brand); font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: clamp(.95rem,1.8vw,1.2rem); font-weight: 650; overflow-wrap: anywhere; }
.comparison-card p:last-child { margin: 0; color: var(--ink-soft); }
.comparison-vs { align-self: center; display: grid; width: 40px; height: 40px; place-items: center; color: var(--brand-soft); background: #fff; border: 1px solid var(--line); border-radius: 50%; font-size: .78rem; font-weight: 760; }
.comparison-summary { margin: 24px 0 0; color: var(--ink-soft); text-align: center; }
.comparison-summary strong { color: var(--brand); }

.steps-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
.step-item { padding-top: 17px; border-top: 1px solid var(--line); }
.step-number { display: inline-grid; width: 34px; height: 34px; place-items: center; color: var(--brand); background: var(--brand-light); border-radius: 50%; font-size: .86rem; font-weight: 780; }
.step-item h3 { margin: 14px 0 7px; color: var(--ink); font-size: 1.08rem; }
.step-item p { margin: 0; color: var(--ink-soft); line-height: 1.62; }

.field-section { background: #fff; }
.field-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr); align-items: center; gap: clamp(46px,7vw,76px); }
.field-media { position: relative; min-height: 430px; overflow: hidden; background: linear-gradient(145deg,#eff3f6,#dfe6eb); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.field-pipe { position: absolute; inset: 0; }
.pipe-main { position: absolute; left: -8%; top: 47%; width: 76%; height: 70px; background: linear-gradient(#9aa6b0,#7e8b96 48%,#697782 52%,#9aa6b0); border-radius: 18px; box-shadow: inset 0 3px 8px rgba(255,255,255,.45), inset 0 -5px 10px rgba(21,31,41,.12); transform: rotate(-4deg); }
.pipe-flange { position: absolute; top: 42%; width: 28px; height: 118px; background: #87939d; border: 2px solid #6e7a84; border-radius: 10px; transform: rotate(-4deg); box-shadow: inset 0 0 0 4px rgba(255,255,255,.14); }
.flange-one { left: 18%; }
.flange-two { left: 47%; }
.asset-label { position: absolute; left: 30%; top: 31%; display: grid; grid-template-columns: 56px auto; align-items: center; gap: 10px; padding: 9px 12px; background: #fff; border: 2px solid var(--brand); border-radius: 5px; box-shadow: 0 8px 18px rgba(22,31,40,.12); transform: rotate(-4deg); }
.asset-label img { width: 56px; }
.asset-label b { color: var(--brand); font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: .78rem; }
.tablet { position: absolute; right: 7%; bottom: -5%; width: 43%; min-width: 250px; padding: 14px; background: #17202a; border-radius: 24px; box-shadow: 0 22px 46px rgba(10,18,27,.28); transform: rotate(4deg); }
.tablet-camera { width: 7px; height: 7px; margin: -3px auto 8px; background: #536474; border-radius: 50%; }
.tablet-screen { min-height: 300px; padding: 24px 20px; background: #f7f9fb; border-radius: 12px; }
.tablet-kicker { display: block; color: var(--brand-soft); font-size: .54rem; font-weight: 800; letter-spacing: .12em; }
.tablet-screen > strong { display: block; margin-top: 5px; color: var(--brand); font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: 1rem; }
.tablet-status { display: block; margin: 4px 0 17px; color: var(--accent-green); font-size: .64rem; }
.tablet-link { display: flex; align-items: center; gap: 8px; margin-top: 8px; padding: 10px; color: var(--brand-link); background: #fff; border: 1px solid #d9e1e7; border-radius: 7px; font-size: .66rem; font-weight: 650; text-decoration: underline; }
.tablet-link i { width: 7px; height: 7px; background: var(--brand); border-radius: 2px; }
.field-copy { max-width: 520px; }
.field-note { margin-top: 18px !important; color: var(--muted) !important; font-size: .84rem !important; }

.switch-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); align-items: center; gap: clamp(44px,7vw,72px); }
.switch-message { margin-top: 18px !important; color: var(--brand) !important; font-weight: 650; }
.switch-card { padding: 23px; background: #fff; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow); }
.switch-flow { display: grid; grid-template-columns: minmax(0,.9fr) auto minmax(0,1.1fr); align-items: center; gap: 16px; }
.switch-kicker { display: block; margin-bottom: 10px; color: var(--brand-soft); font-size: .62rem; font-weight: 790; letter-spacing: .11em; }
.switch-identity { display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 14px; padding: 14px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 12px; }
.switch-identity img { width: 84px; }
.switch-identity span { display: block; color: var(--muted); font-size: .63rem; }
.switch-identity strong { display: block; margin-top: 3px; color: var(--brand); font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: .92rem; }
.switch-arrow { color: #9aabb9; font-size: 1.4rem; }
.switch-buttons { display: inline-flex; gap: 7px; margin-bottom: 10px; }
.switch-buttons button { min-height: 38px; padding: 0 13px; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 650; }
.switch-buttons button.active { color: #fff; background: var(--brand); border-color: var(--brand); }
.switch-result { padding: 15px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 11px; }
.switch-result span { display: block; color: var(--muted); font-size: .7rem; }
.switch-result strong { display: block; margin-top: 5px; color: var(--brand); }
.switch-note { margin: 15px 0 0; padding: 11px 13px; color: var(--brand); background: #f5f8fa; border-left: 3px solid var(--brand); border-radius: 6px; font-size: .79rem; font-weight: 650; }
.switch-footnote { margin: 9px 0 0; color: var(--ink-soft); font-size: .76rem; font-weight: 620; }

.principles-section { padding-block: 54px; }
.principles-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.principles-grid article { padding-left: 14px; border-left: 2px solid var(--line); }
.principles-grid strong { display: block; color: var(--brand); font-size: .91rem; }
.principles-grid p { margin: 6px 0 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.57; }

.pricing-section { background: #fff; }
.pricing-heading { max-width: 760px; }
.billing-toggle { display: flex; width: max-content; max-width: 100%; margin: 0 auto 22px; padding: 4px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 999px; }
.billing-toggle button { min-height: 38px; padding: 0 16px; color: var(--ink-soft); background: transparent; border: 0; border-radius: 999px; font-weight: 650; cursor: pointer; }
.billing-toggle button.active { color: #fff; background: var(--brand); }
.billing-toggle button span { margin-left: 5px; font-size: .72rem; opacity: .82; }
.pricing-plans { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.plan-card { display: flex; flex-direction: column; min-height: 560px; padding: clamp(26px,4vw,38px); background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 35px rgba(26,43,61,.05); }
.plan-card-featured { border-color: #bfcddd; box-shadow: 0 18px 44px rgba(36,61,91,.09); }
.plan-topline { display: flex; flex-direction: column; gap: 4px; }
.plan-topline span { color: var(--brand); font-size: 1rem; font-weight: 760; }
.plan-topline strong { color: var(--muted); font-size: .78rem; font-weight: 560; }
.plan-price { margin-top: 24px; color: var(--brand); font-size: clamp(3.1rem,5.6vw,4.6rem); font-weight: 650; letter-spacing: -.055em; line-height: 1; }
.plan-price span { font-size: .42em; vertical-align: top; }
.plan-period { margin: 8px 0 0; color: var(--ink); font-size: .92rem; font-weight: 650; }
.plan-detail { min-height: 24px; margin: 5px 0 0; color: var(--muted); font-size: .84rem; }
.plan-highlights { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 22px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-highlights strong { color: var(--brand); font-size: .88rem; }
.plan-list { display: grid; gap: 9px; margin: 20px 0 24px; padding: 0; list-style: none; }
.plan-list li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: .86rem; line-height: 1.5; }
.plan-list li::before { content: ""; position: absolute; left: 1px; top: .56em; width: 7px; height: 7px; background: var(--brand); border-radius: 50%; }
.plan-cta { margin-top: auto; }
.plan-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: auto; }
.plan-trial { margin: 10px 0 0; color: var(--muted); font-size: .74rem; }
.pricing-trust { display: grid; gap: 5px; margin-top: 16px; padding: 18px 20px; background: #f8fafb; border: 1px solid var(--line); border-radius: 14px; text-align: center; }
.pricing-trust strong { color: var(--brand); }
.pricing-trust span { color: var(--ink-soft); font-size: .82rem; line-height: 1.5; }
.feature-comparison { margin-top: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.feature-grid { display: grid; grid-template-columns: minmax(300px,1.5fr) minmax(150px,.62fr) minmax(190px,.78fr); align-items: center; gap: 20px; }
.feature-header { padding: 15px 20px; color: var(--brand); background: var(--surface-soft); font-size: .72rem; font-weight: 790; letter-spacing: .08em; text-transform: uppercase; }
.feature-row { min-height: 52px; padding: 13px 20px; border-top: 1px solid #edf1f4; }
.feature-row > div:first-child { color: var(--ink); font-size: .88rem; font-weight: 610; }
.feature-row > div:not(:first-child) { color: var(--ink-soft); font-size: .84rem; }
.feature-row > div:not(:first-child) strong { color: var(--brand); }
.feature-group { padding: 12px 20px; color: var(--brand-soft); background: #fbfcfd; border-top: 1px solid var(--line); font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.check { display: inline-grid; width: 22px; height: 22px; margin-right: 4px; place-items: center; color: #fff; background: var(--brand); border-radius: 50%; font-size: .7rem; font-weight: 800; }
.multi-workspace-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 14px; padding: 17px 20px; background: #f8fafb; border: 1px solid var(--line); border-radius: 14px; }
.multi-workspace-strip > div { display: flex; flex-direction: column; gap: 3px; }
.multi-workspace-strip strong { color: var(--brand); }
.multi-workspace-strip span { color: var(--ink-soft); font-size: .86rem; }
.about-section { background: var(--surface-soft-2); }
.about-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: clamp(36px,7vw,84px); align-items: center; }
.about-grid h2 { margin: 0; color: var(--ink); font-size: clamp(2rem,3.7vw,3rem); letter-spacing: -.035em; }
.about-grid p { max-width: 720px; margin: 13px 0 0; color: var(--ink-soft); line-height: 1.66; }
.about-statement { display: flex; flex-direction: column; gap: 8px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.about-statement strong { color: var(--brand); font-size: 1.12rem; }
.about-statement span { color: var(--ink-soft); }

.closing-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 31px 34px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 18px; }
.closing-panel h2 { margin: 0; color: var(--ink); font-size: clamp(1.8rem,3vw,2.5rem); letter-spacing: -.03em; }
.closing-panel p:last-child { max-width: 620px; margin: 9px 0 0; color: var(--ink-soft); }
.closing-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; flex: 0 0 auto; }

.site-footer { padding: 28px 0 36px; background: #fff; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .75rem; }
.company-details { max-width: 760px; margin-top: 5px !important; line-height: 1.45; }
.footer-inner nav { display: flex; gap: 16px; }
.footer-inner a { color: var(--brand-soft); font-size: .79rem; text-decoration: none; }
.footer-inner a:hover { color: var(--brand); }

.simple-page { min-height: 100vh; background: var(--surface-soft-2); }
.simple-main { padding: clamp(60px,8vw,92px) 0; }
.simple-article { max-width: 820px; padding: clamp(28px,5vw,48px); background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.simple-article h1 { margin: 0 0 20px; color: var(--ink); font-size: clamp(2.4rem,5vw,4rem); letter-spacing: -.04em; }
.simple-article h2 { margin: 30px 0 8px; color: var(--ink); font-size: 1.5rem; }
.simple-article p { color: var(--ink-soft); line-height: 1.65; }
.simple-article a { color: var(--brand-link); }
.not-found { min-height: calc(100vh - 120px); display: grid; place-items: center; padding: 60px 0; text-align: center; background: var(--surface-soft-2); }
.not-found img { width: 54px; margin: 0 auto 18px; }
.not-found-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 20px; }


.mobile-feature-comparison { display: none; }
.mobile-plan-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  background: #edf2f6;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mobile-plan-toggle button {
  min-height: 44px;
  padding: 8px 10px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
}
.mobile-plan-toggle button.active {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 4px 12px rgba(36,61,91,.14);
}
.mobile-feature-content {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.mobile-feature-section + .mobile-feature-section { border-top: 1px solid var(--line); }
.mobile-feature-section-title {
  padding: 15px 18px;
  color: var(--brand-soft);
  background: var(--surface-soft-2);
  border-bottom: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-feature-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(92px,auto);
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 14px 18px;
}
.mobile-feature-row + .mobile-feature-row { border-top: 1px solid var(--line); }
.mobile-feature-name {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.35;
}
.mobile-feature-value {
  max-width: 150px;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}
.mobile-feature-value .check { margin-left: auto; }

@media (max-width: 1050px) {
  .hero-grid,.field-grid,.switch-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .identity-map { max-width: 720px; }
  .field-copy { max-width: 680px; }
  .principles-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pricing-plans,.about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-nav { gap: 15px; }
  .nav-link:not(.nav-demo) { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-vs { justify-self: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 22px; }
  .switch-flow { grid-template-columns: 1fr; }
  .switch-arrow { transform: rotate(90deg); text-align: center; }
  .feature-comparison { display: none; }
  .mobile-feature-comparison { display: block; margin-top: 22px; }
  .multi-workspace-strip,.closing-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .shell { width: calc(100% - 26px); }
  .header-inner { min-height: 68px; gap: 10px; }
  .brand-title { font-size: .96rem; }
  .brand-mark { width: 27px; height: 27px; flex-basis: 27px; }
  .brand-subtitle { font-size: .45rem; }
  .nav-demo { display: none; }
  .button-small { min-height: 38px; padding-inline: 13px; font-size: .78rem; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(2.65rem,13vw,3.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .identity-map { grid-template-columns: 1fr; padding: 18px; }
  .map-arrow { transform: rotate(90deg); }
  .field-media { min-height: 370px; }
  .tablet { width: 55%; right: 3%; }
  .asset-label { left: 13%; }
  .principles-grid { grid-template-columns: 1fr; }
  .billing-toggle { width: 100%; }
  .mobile-feature-row { grid-template-columns: minmax(0,1fr) minmax(82px,42%); gap: 12px; padding: 13px 15px; }
  .mobile-feature-section-title { padding-inline: 15px; }
  .mobile-feature-value { max-width: none; font-size: .84rem; }
  .billing-toggle button { flex: 1; padding-inline: 10px; }
  .plan-actions { align-items: flex-start; flex-direction: column; }
  .plan-actions .button,.plan-card > .button { width: 100%; }
  .closing-actions { width: 100%; align-items: flex-start; flex-direction: column; }
  .closing-actions .button { width: 100%; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
.policy-article ul { margin: 10px 0 0; padding-left: 1.25rem; color: var(--ink-soft); }
.policy-article li { margin: 7px 0; line-height: 1.55; }
.policy-updated { margin-top: -8px !important; color: var(--muted) !important; font-size: .82rem; }
.privacy-pledge { margin: 28px 0; padding: 22px 24px; background: #f6f9fb; border: 1px solid var(--line); border-radius: 15px; }
.privacy-pledge > strong { color: var(--brand); font-size: 1rem; }
.privacy-pledge p { margin: 8px 0 0; }
.privacy-pledge ul { margin-top: 12px; }
.right-to-object { margin: 22px 0; padding: 18px 20px; background: #fff; border: 1px solid #bdccd9; border-left: 4px solid var(--brand); border-radius: 10px; }
.right-to-object strong { color: var(--brand); }
.right-to-object p { margin: 7px 0 0; }
.footer-inner nav { flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 620px) { .footer-inner nav { justify-content: flex-start; } }
