:root {
  --ink: #102a43;
  --ink-soft: #486581;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #d9e2ec;
  --blue: #147dba;
  --blue-dark: #0b5d8c;
  --green: #8dbf26;
  --orange: #f2a23a;
  --shadow: 0 24px 70px rgba(16, 42, 67, .14);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--ink);
  color: white; padding: 10px 16px; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(247, 248, 244, .94);
  border-bottom: 1px solid rgba(217, 226, 236, .8); backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 500; letter-spacing: -.03em; }
.brand img { width: 43px; height: 43px; object-fit: cover; object-position: top; border-radius: 10px; }
.brand strong { font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: var(--blue-dark); }
.nav-cta { color: white; background: var(--ink); padding: 11px 18px; border-radius: 10px; }
.nav-cta:hover { background: var(--blue-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  display: flex; align-items: center; gap: 6px; padding: 26px 0; cursor: pointer;
  list-style: none; white-space: nowrap;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary span { color: var(--blue); transition: transform .2s ease; }
.nav-dropdown[open] summary span { transform: rotate(180deg); }
.nav-dropdown summary:hover, .nav-dropdown summary[aria-current="page"] { color: var(--blue-dark); }
.nav-dropdown-panel {
  position: fixed; z-index: 120; top: 70px; left: 50%; width: min(920px, calc(100vw - 40px));
  padding: 24px; color: var(--ink); background: white; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: 0 24px 70px rgba(16,42,67,.22); transform: translateX(-50%);
}
.nav-dropdown-heading { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding: 0 4px 16px; border-bottom: 1px solid var(--line); }
.nav-dropdown-heading strong, .nav-dropdown-heading small { display: block; }
.nav-dropdown-heading strong { font-size: 17px; }
.nav-dropdown-heading small { color: var(--ink-soft); font-weight: 600; }
.nav-dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 12px; }
.nav-dropdown-grid > a {
  display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: center; min-width: 0;
  padding: 12px; border-radius: 11px; transition: background-color .2s ease;
}
.nav-dropdown-grid > a:hover { color: var(--ink) !important; background: #edf5f9; }
.nav-dropdown-grid > a[aria-current="page"] { color: var(--ink); background: #edf5f9; }
.nav-dropdown-grid i {
  display: grid; place-items: center; width: 38px; height: 38px; color: var(--blue-dark);
  background: #e8f4fa; border-radius: 10px; font-style: normal; font-weight: 900;
}
.nav-dropdown-grid a:nth-child(3n+2) i { color: #52730f; background: #eff6df; }
.nav-dropdown-grid a:nth-child(3n) i { color: #9a5a09; background: #fff1dc; }
.nav-dropdown-grid strong, .nav-dropdown-grid small { display: block; overflow: hidden; text-overflow: ellipsis; }
.nav-dropdown-grid strong { font-size: 13px; white-space: nowrap; }
.nav-dropdown-grid small { margin-top: 2px; color: var(--ink-soft); font-size: 10px; font-weight: 600; white-space: nowrap; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 10px; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.hero { position: relative; overflow: hidden; padding: 88px 0 92px; }
.hero::before {
  content: ""; position: absolute; width: 480px; height: 480px; right: -180px; top: -170px;
  border: 90px solid rgba(141, 191, 38, .12); border-radius: 50%; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: center; }
.eyebrow {
  margin: 0 0 14px; color: var(--blue-dark); font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
h1, h2 {
  margin: 0; font-family: "Source Serif 4", Georgia, serif; line-height: .98;
  letter-spacing: -.045em; font-weight: 700;
}
h1 { font-size: clamp(52px, 6.5vw, 86px); }
h1 em { color: var(--blue); font-style: normal; }
h2 { font-size: clamp(42px, 5vw, 66px); }
.hero-lead { max-width: 610px; margin: 26px 0 0; color: var(--ink-soft); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.download-note { margin: 12px 0 0; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px;
  padding: 0 20px; border-radius: 11px; text-decoration: none; font-size: 14px; font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: white; }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { border: 1px solid var(--line); background: white; }
.button.secondary:hover { border-color: #9fb3c8; }
.button.text-button { min-height: 50px; padding-inline: 8px; color: var(--blue-dark); }
.button.text-button:hover { color: var(--blue); }
.button.light { color: var(--ink); background: white; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 28px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.hero-notes span::before { content: "•"; color: var(--green); margin-right: 7px; }

.hero-visual { position: relative; min-width: 0; }
.window { overflow: hidden; background: white; border: 1px solid #cbd5e1; border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.window-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.window-bar span { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; }
.window-bar span:first-child { background: var(--orange); }
.window-bar span:nth-child(2) { background: var(--green); }
.window-bar small { margin-left: 6px; color: #829ab1; font-size: 11px; }
.window img { width: 100%; aspect-ratio: 16/8.7; object-fit: cover; object-position: top left; }
.hero-results {
  position: absolute; left: -30px; right: 28px; bottom: -46px; display: grid;
  grid-template-columns: repeat(3, 1fr); overflow: hidden; color: white; background: var(--ink);
  border: 1px solid rgba(255,255,255,.12); border-radius: 15px; box-shadow: 0 18px 44px rgba(16,42,67,.26);
}
.hero-results div { min-width: 0; padding: 14px 16px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-results div:last-child { border-right: 0; }
.hero-results span, .hero-results strong { display: block; }
.hero-results span { color: #9fb3c8; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-results strong { margin-top: 3px; font-size: 11px; line-height: 1.35; }

.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-items { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #627d98; font-size: 13px; font-weight: 800; }
.trust-items i { width: 4px; height: 4px; background: var(--green); border-radius: 50%; }

.download-section { padding: 58px 0; background: white; border-bottom: 1px solid var(--line); }
.download-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}
.download-panel h2 { font-size: clamp(38px, 4vw, 56px); }
.download-panel p:not(.eyebrow) { max-width: 620px; margin: 20px 0 0; color: var(--ink-soft); }
.download-actions {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: min(100%, 340px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}
.download-actions .button { width: 100%; }
.download-actions span { color: var(--ink-soft); font-size: 12px; font-weight: 800; overflow-wrap: anywhere; }

.section { padding: 112px 0; }
.features .container { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.section-intro { position: static; }
.section-intro > p:last-child { max-width: 470px; margin-top: 25px; color: var(--ink-soft); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-list article {
  display: grid; grid-template-columns: 50px 1fr; gap: 17px; min-width: 0; min-height: 230px;
  align-content: start; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: white;
  box-shadow: 0 10px 28px rgba(16,42,67,.05);
}
.feature-icon {
  display: grid; place-items: center; width: 46px; height: 46px; color: var(--blue-dark);
  background: #e8f4fa; border-radius: 12px; font-size: 19px; font-weight: 900;
}
.feature-no { color: var(--blue); font-size: 12px; font-weight: 800; }
.feature-list article:nth-child(2) .feature-icon { color: #52730f; background: #eff6df; }
.feature-list article:nth-child(3) .feature-icon { color: #9a5a09; background: #fff1dc; }
.feature-list article:nth-child(4) .feature-icon { color: #72519c; background: #f2eafa; }
.feature-list h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.3; letter-spacing: -.025em; }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.module-overview { grid-column: 1 / -1; padding-top: 74px; scroll-margin-top: 90px; }
.module-overview-heading { max-width: 760px; margin-bottom: 38px; }
.module-overview-heading h3 {
  margin: 0; font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 58px); line-height: 1.04; letter-spacing: -.04em;
}
.module-overview-heading > p:last-child { max-width: 650px; margin: 20px 0 0; color: var(--ink-soft); font-size: 17px; }
.module-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.module-link-grid a {
  position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 5px 14px;
  min-height: 132px; align-content: center; padding: 20px 38px 20px 18px; color: var(--ink); border: 1px solid var(--line);
  border-radius: 14px; background: white; text-decoration: none; transition: .2s ease;
}
.module-link-grid a::after { content: "→"; position: absolute; right: 17px; top: 23px; color: var(--blue); font-weight: 900; }
.module-link-grid a:hover { border-color: #9bd3ee; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16,42,67,.08); }
.module-link-grid .module-icon {
  grid-row: 1 / 3; display: grid; place-items: center; align-self: start; width: 44px; height: 44px;
  color: var(--blue-dark); background: #e8f4fa; border-radius: 12px; font-size: 11px; font-weight: 900;
}
.module-link-grid a:nth-child(3n+2) .module-icon { color: #4f7012; background: #eff6df; }
.module-link-grid a:nth-child(3n) .module-icon { color: #9a5a09; background: #fff1dc; }
.module-link-grid strong { font-size: 17px; }
.module-link-grid small { color: var(--ink-soft); font-size: 12px; }
.feature-link {
  display: inline-flex; gap: 8px; margin-top: 13px; color: var(--blue-dark);
  font-size: 13px; font-weight: 800; text-decoration: none;
}
.feature-link:hover { text-decoration: underline; }

.compare-section { color: white; background: #0c5960; }
.compare-heading { max-width: 790px; margin-bottom: 48px; }
.compare-heading .eyebrow { color: #a8e2d1; }
.compare-heading > p:last-child { max-width: 660px; margin: 24px 0 0; color: #c9e3e1; font-size: 17px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-grid article { padding: 36px; border-radius: 18px; }
.compare-grid article > span { font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.compare-grid h3 { max-width: 480px; margin: 14px 0 25px; font-size: 24px; line-height: 1.25; }
.compare-grid ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.compare-grid li { position: relative; padding-left: 25px; color: #dbeceb; }
.compare-grid li::before { position: absolute; left: 0; top: 1px; font-weight: 900; }
.compare-before { background: rgba(8,45,50,.42); border: 1px solid rgba(255,255,255,.12); }
.compare-before > span { color: #b8ccca; }
.compare-before li::before { content: "–"; color: #91aaa8; }
.compare-after { background: white; color: var(--ink); }
.compare-after > span { color: var(--blue-dark); }
.compare-after li { color: var(--ink-soft); }
.compare-after li::before { content: "✓"; color: var(--green); }

.workflow-section { background: white; }
.workflow-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 50px; align-items: end; margin-bottom: 48px; }
.workflow-heading .eyebrow, .workflow-heading h2 { grid-column: 1; }
.workflow-heading > p:last-child { grid-column: 2; grid-row: 1 / 3; margin: 0; color: var(--ink-soft); font-size: 17px; }
.workflow-steps { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.workflow-steps article { min-height: 235px; padding: 32px; border-right: 1px solid var(--line); }
.workflow-steps article:last-child { border-right: 0; }
.workflow-steps span { color: var(--blue); font-size: 12px; font-weight: 900; }
.workflow-steps h3 { margin: 50px 0 10px; font-size: 21px; }
.workflow-steps p { margin: 0; color: var(--ink-soft); }

.gallery-section { color: white; background: var(--ink); }
.gallery-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end; margin-bottom: 50px; }
.gallery-heading .eyebrow { color: #9bd3ee; }
.gallery-heading > p { max-width: 440px; margin: 0 0 4px; color: #bcccdc; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.shot {
  appearance: none; display: block; min-width: 0; padding: 0; text-align: left; color: white;
  border: 0; background: transparent; cursor: zoom-in;
}
.shot-wide { grid-column: 1 / -1; }
.shot-frame { display: block; overflow: hidden; border: 1px solid #334e68; border-radius: 14px; background: #243b53; }
.shot img { width: 100%; aspect-ratio: 16/8.7; object-fit: cover; object-position: top left; transition: transform .35s ease; }
.gallery-home .shot-frame { height: 245px; }
.gallery-home .shot img { height: 100%; aspect-ratio: auto; object-fit: cover; object-position: top left; }
.gallery-home .gallery-extra .shot-frame { height: auto; }
.gallery-home .gallery-extra img { height: auto; aspect-ratio: 16/8.7; }
.shot:hover img, .shot:focus-visible img { transform: scale(1.018); }
.shot-caption { display: flex; justify-content: space-between; gap: 20px; padding: 15px 2px 0; }
.shot-caption strong { font-size: 15px; }
.shot-caption small { color: #9fb3c8; text-align: right; }

.privacy { background: white; }
.privacy-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; align-items: center; }
.privacy-copy > p { margin: 0 0 32px; color: var(--ink-soft); font-size: 18px; }
.privacy-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.privacy-copy li { display: flex; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.privacy-copy li span { color: var(--green); font-size: 12px; }
.privacy-visual {
  position: relative;
  border-radius: 22px;
  filter: drop-shadow(0 24px 70px rgba(16, 42, 67, .14));
}
.privacy-graphic {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.privacy-example {
  display: grid; justify-items: center; padding: 48px 30px; text-align: center;
  border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, #fff, #eef5fa);
  box-shadow: var(--shadow);
}
.privacy-example .example-label { color: var(--ink-soft); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.privacy-example strong { margin-top: 6px; font-family: "Source Serif 4", Georgia, serif; font-size: 34px; }
.privacy-example .example-arrow { margin: 12px 0 8px; color: var(--blue); font-size: 25px; }
.privacy-example .example-lock { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 18px; color: white; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 10px rgba(20,125,186,.1); }
.privacy-example code { max-width: 100%; margin-top: 8px; padding: 12px 18px; color: #42647e; background: white; border: 1px solid var(--line); border-radius: 9px; font-size: 18px; overflow-wrap: anywhere; }
.privacy-example p { margin: 18px 0 0; color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.secure-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, .9fr) minmax(132px, 1fr) minmax(138px, 1fr) minmax(188px, 1.45fr);
  gap: 16px;
  align-items: center;
}
.secure-flow::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20,125,186,.45), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}
.flow-card {
  position: relative;
  z-index: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid #b7c9dd;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 34px rgba(16, 42, 67, .08);
}
.flow-card strong { font-size: 17px; line-height: 1.25; }
.flow-card small { color: var(--ink-soft); font-weight: 800; }
.flow-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f2ff;
  color: var(--blue-dark);
  font-weight: 900;
}
.key-card { border-color: #b9dfc7; background: #fbfffc; }
.key-card .flow-icon { background: #e8f8ed; color: #138a5b; }
.encrypted-card code {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(12px, 1.08vw, 15px);
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.flow-plus,
.flow-arrow {
  display: none;
}
.flow-lock {
  position: relative;
  z-index: 1;
  min-height: 166px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  color: white;
  text-align: center;
  background: var(--blue-dark);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(20, 125, 186, .28);
}
.flow-lock span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  font-size: 28px;
  font-weight: 900;
}
.flow-lock strong { font-size: 18px; line-height: 1.12; }
.privacy-warning {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding: 18px 22px;
  color: #8f1d1d;
  background: #fff5f5;
  border: 1px solid #f1a7a7;
  border-radius: 16px;
}
.privacy-warning span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  color: white;
  background: #be3144;
  border-radius: 50%;
  font-weight: 900;
}
.privacy-warning strong { line-height: 1.35; }

.cta-section { padding: 72px 0; background: white; }
.cta-panel {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end;
  padding: 64px; color: white; background: var(--blue-dark); border-radius: 24px;
}
.cta-panel .eyebrow { color: #c9ebfb; }
.cta-actions { justify-self: end; max-width: 360px; }
.cta-actions p { margin: 0 0 20px; color: #d9edf7; }
.cta-text-link { display: inline-flex; margin: 17px 0 0 14px; color: white; font-size: 13px; font-weight: 800; text-decoration: none; }
.cta-text-link:hover { text-decoration: underline; }
.cta-actions small { display: block; margin-top: 12px; color: #a9d3e8; font-size: 10px; overflow-wrap: anywhere; }

footer { background: white; border-top: 1px solid var(--line); }
.footer-inner { min-height: 122px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--ink-soft); font-size: 13px; }
.footer-brand { color: var(--ink); }
.footer-inner > a:last-child { font-weight: 800; color: var(--blue-dark); text-decoration: none; }

.site-nav a[aria-current="page"] { color: var(--blue-dark); }
.breadcrumb { color: var(--ink-soft); background: white; border-bottom: 1px solid var(--line); }
.breadcrumb .container { min-height: 46px; display: flex; align-items: center; gap: 9px; font-size: 11px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb span { color: #9fb3c8; }
.breadcrumb strong { color: var(--ink); }
.subpage-hero { position: relative; overflow: hidden; padding: 92px 0 96px; background: white; }
.subpage-hero::after {
  content: ""; position: absolute; width: 430px; height: 430px; right: -180px; bottom: -260px;
  border: 80px solid rgba(20, 125, 186, .08); border-radius: 50%; pointer-events: none;
}
.subpage-hero-grid { display: grid; grid-template-columns: 1.08fr .72fr; gap: 90px; align-items: center; }
.subpage-hero h1 { font-size: clamp(48px, 5.8vw, 78px); }
.subpage-hero h1 em { color: var(--blue); font-style: normal; }
.one-click-card {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
  min-height: 320px; padding: 48px; color: white; background: var(--ink); border-radius: 26px;
  box-shadow: var(--shadow); transform: rotate(1.5deg);
}
.one-click-number {
  font-family: "Source Serif 4", Georgia, serif; font-size: 150px; font-weight: 700;
  line-height: .8; color: var(--green);
}
.one-click-card strong { font-size: 30px; }
.one-click-card p { margin: 8px 0 0; color: #bcccdc; }
.promise-strip { color: white; background: var(--blue-dark); }
.promise-items { min-height: 86px; display: grid; grid-template-columns: repeat(3, 1fr); }
.promise-items span {
  display: flex; align-items: center; justify-content: center; padding: 20px;
  text-align: center; font-size: 14px; font-weight: 800; border-right: 1px solid rgba(255,255,255,.18);
}
.promise-items span:last-child { border-right: 0; }
.story-section { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.story-grid.reverse { grid-template-columns: 1.1fr .9fr; }
.story-copy h2 { font-size: clamp(40px, 4.5vw, 62px); }
.story-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--ink-soft); font-size: 18px; }
.plain-checks { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-checks li { position: relative; padding: 16px 0 16px 34px; border-bottom: 1px solid var(--line); font-weight: 700; }
.plain-checks li::before {
  content: "✓"; position: absolute; left: 2px; top: 16px; color: var(--green); font-weight: 900;
}
.screen-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.screen-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top left; }
.screen-card > div { display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; }
.screen-card strong, .screen-card small { display: block; }
.screen-card small { max-width: 260px; color: var(--ink-soft); text-align: right; }
.dark-story { color: white; background: var(--ink); }
.dark-story .eyebrow { color: #9bd3ee; }
.dark-story .story-copy > p:not(.eyebrow) { color: #bcccdc; }
.dark-screen { color: var(--ink); }
.light-checks { border-color: #334e68; }
.light-checks li { border-color: #334e68; }
.paperwork-section { background: white; }
.center-heading { max-width: 800px; margin: 0 auto 52px; text-align: center; }
.center-heading > p:last-child { max-width: 650px; margin: 22px auto 0; color: var(--ink-soft); font-size: 18px; }
.document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.document-grid article {
  min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper);
}
.document-grid article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.document-grid h3 { margin: 54px 0 12px; font-size: 23px; }
.document-grid p { margin: 0; color: var(--ink-soft); }
.result-section { padding: 76px 0; color: white; background: var(--blue-dark); }
.result-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: end; }
.result-panel h2 { font-size: clamp(40px, 4.5vw, 60px); }
.result-panel .eyebrow { color: #c9ebfb; }
.result-panel > div:last-child p { margin: 0 0 24px; color: #d9edf7; font-size: 17px; }

.attendance-hero { background: linear-gradient(135deg, #f7f8f4 0%, #eef7fb 100%); }
.phone-stage { position: relative; width: min(100%, 430px); margin-inline: auto; }
.phone-shell {
  width: 310px; min-height: 550px; margin-inline: auto; padding: 16px; border: 10px solid var(--ink);
  border-radius: 42px; background: white; box-shadow: var(--shadow); transform: rotate(2deg);
}
.phone-speaker { width: 84px; height: 7px; margin: 1px auto 36px; border-radius: 10px; background: var(--ink); }
.phone-content { padding: 20px 14px; }
.phone-label { color: var(--blue-dark); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.phone-content > strong { display: block; margin-top: 12px; font-family: "Source Serif 4", Georgia, serif; font-size: 36px; line-height: 1; }
.phone-content > p { margin: 12px 0 28px; color: var(--ink-soft); font-size: 14px; }
.attendance-summary { display: grid; gap: 10px; }
.attendance-summary span {
  display: flex; justify-content: space-between; align-items: center; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 11px; color: var(--ink-soft); font-size: 13px; font-weight: 700;
}
.attendance-summary b { color: var(--ink); font-size: 18px; }
.phone-action { margin-top: 24px; padding: 14px; color: white; background: var(--blue); border-radius: 11px; text-align: center; font-size: 13px; font-weight: 800; }
.sync-badge {
  position: absolute; right: -12px; bottom: 54px; display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; color: white; background: var(--ink); border-radius: 13px; box-shadow: 0 16px 36px rgba(16,42,67,.24);
}
.sync-badge span { display: grid; place-items: center; width: 25px; height: 25px; color: var(--ink); background: var(--green); border-radius: 50%; font-weight: 900; }
.sync-badge strong { font-size: 12px; }
.steps-section { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.steps-grid article { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); }
.steps-grid article:last-child { border-right: 0; }
.steps-grid article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.steps-grid h3 { margin: 72px 0 12px; font-size: 20px; line-height: 1.25; }
.steps-grid p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.control-section { color: white; background: var(--ink); }
.control-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.control-grid h2 { font-size: clamp(42px, 5vw, 64px); }
.control-grid > div:first-child > p:last-child { margin: 25px 0 0; color: #bcccdc; }
.control-grid .eyebrow { color: #9bd3ee; }
.control-list { border-top: 1px solid #334e68; }
.control-list article { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid #334e68; }
.control-list article > span { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: var(--green); border-radius: 50%; font-weight: 900; }
.control-list strong { font-size: 18px; }
.control-list p { margin: 6px 0 0; color: #bcccdc; }
.teacher-section { background: var(--paper); }
.daily-card { padding: 48px; color: white; background: var(--blue-dark); border-radius: 24px; box-shadow: var(--shadow); }
.daily-kicker { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #c9ebfb; }
.daily-card > strong { display: block; margin-top: 28px; font-family: "Source Serif 4", Georgia, serif; font-size: clamp(36px, 4vw, 52px); line-height: 1.05; }
.daily-card > p { margin: 22px 0 32px; color: #d9edf7; }
.daily-line { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; }
.daily-line i { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.attendance-result { background: #147d78; }

.exam-hero { position: relative; overflow: hidden; padding: 96px 0; background: linear-gradient(135deg, #f7f8f4 0%, #edf5f9 100%); }
.exam-hero::before {
  content: ""; position: absolute; left: -170px; bottom: -270px; width: 430px; height: 430px;
  border: 82px solid rgba(141,191,38,.10); border-radius: 50%;
}
.exam-hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .7fr; gap: 86px; align-items: center; }
.exam-hero h1 { font-size: clamp(50px, 6vw, 80px); }
.exam-hero h1 em { color: var(--blue); font-style: normal; }
.exam-promise {
  min-height: 370px; display: flex; flex-direction: column; justify-content: center;
  padding: 48px; color: white; background: var(--ink); border-radius: 26px; box-shadow: var(--shadow);
}
.exam-promise > span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.exam-promise > strong { display: block; margin-top: 22px; font-family: "Source Serif 4", Georgia, serif; font-size: 48px; line-height: 1; }
.exam-promise > p { margin: 22px 0 30px; color: #bcccdc; }
.exam-promise-row { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #d9e2ec; font-size: 11px; font-weight: 800; }
.exam-promise-row i { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.exam-flow-section { background: white; }
.exam-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exam-feature {
  overflow: hidden; padding: 0 24px 28px; border: 1px solid var(--line);
  border-radius: 18px; background: var(--paper);
}
.focus-viewport { height: 195px; margin: 0 -24px 25px; overflow: hidden; background: #e9eff5; border-bottom: 1px solid var(--line); }
.focus-viewport img { width: 100%; height: 100%; object-fit: cover; transform: scale(2.35); }
.focus-period img { transform-origin: 54% 3%; }
.focus-menu img { transform-origin: 7% 36%; }
.focus-teachers img { transform-origin: 48% 41%; }
.focus-period-detail img { transform: scale(1.65); transform-origin: 20% 24%; }
.focus-candidates img { transform: scale(1.7); transform-origin: 50% 35%; }
.focus-teachers-detail img { transform: scale(1.75); transform-origin: 48% 36%; }
.exam-feature h3 { margin: 22px 0 10px; font-size: 22px; line-height: 1.2; }
.exam-feature p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.exam-automation { color: white; background: var(--ink); }
.exam-automation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.automation-copy .eyebrow { color: #9bd3ee; }
.automation-copy h2 { font-size: clamp(42px, 5vw, 64px); }
.automation-copy > p:not(.eyebrow) { margin: 26px 0 0; color: #bcccdc; font-size: 18px; }
.placement-board { padding: 28px; color: var(--ink); background: white; border-radius: 22px; box-shadow: 0 28px 70px rgba(0,0,0,.23); }
.placement-top { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 4px 2px 24px; }
.placement-top span { color: var(--blue-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.placement-top strong { color: #198754; font-size: 13px; }
.placement-line {
  display: grid; grid-template-columns: 62px 1fr 1.35fr 28px; gap: 12px; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--line); font-size: 13px;
}
.placement-line b { color: var(--blue-dark); }
.placement-line span { font-weight: 800; }
.placement-line em { color: var(--ink-soft); font-style: normal; }
.placement-line i { display: grid; place-items: center; width: 25px; height: 25px; color: white; background: #198754; border-radius: 50%; font-style: normal; font-weight: 900; }
.placement-summary { margin-top: 18px; padding: 22px; color: white; background: var(--blue-dark); border-radius: 14px; }
.placement-summary strong, .placement-summary small { display: block; }
.placement-summary small { margin-top: 4px; color: #d9edf7; }
.exam-deep-dive { padding-top: 126px; background: white; }
.deep-heading { max-width: 850px; margin-bottom: 82px; }
.deep-heading h2 { font-size: clamp(44px, 5vw, 66px); }
.deep-heading > p:last-child { max-width: 730px; margin: 24px 0 0; color: var(--ink-soft); font-size: 18px; }
.deep-step {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center;
  padding: 72px 0; border-top: 1px solid var(--line);
}
.deep-step-reverse { grid-template-columns: 1.28fr .72fr; }
.deep-step-reverse .deep-step-copy { order: 2; }
.deep-step-reverse .mini-shot-grid { order: 1; }
.deep-step-copy > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.deep-step-copy .eyebrow { margin-top: 26px; }
.deep-step-copy h3 { margin: 0; font-family: "Source Serif 4", Georgia, serif; font-size: clamp(34px, 3.6vw, 50px); line-height: 1.04; letter-spacing: -.035em; }
.deep-step-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--ink-soft); }
.deep-step-copy ul { margin: 24px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.deep-step-copy li { position: relative; padding: 13px 0 13px 26px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.deep-step-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.mini-shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-shot-grid.one { grid-template-columns: 1fr; }
.detail-shot {
  appearance: none; min-width: 0; padding: 0; overflow: hidden; text-align: left;
  color: var(--ink); border: 1px solid var(--line); border-radius: 16px; background: var(--paper);
  cursor: zoom-in; box-shadow: 0 14px 36px rgba(16,42,67,.08);
}
.detail-shot-frame { display: block; height: 190px; overflow: hidden; background: #e9eff5; border-bottom: 1px solid var(--line); }
.detail-shot-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top left; transition: transform .3s ease; }
.detail-shot-crop img { transform: scale(1.18); transform-origin: 34% 15%; }
.detail-shot:hover .detail-shot-frame img, .detail-shot:focus-visible .detail-shot-frame img { transform: scale(1.035); }
.detail-shot:hover .detail-shot-crop img, .detail-shot:focus-visible .detail-shot-crop img { transform: scale(1.21); }
.detail-shot > span:last-child { display: block; padding: 16px 17px 18px; }
.detail-shot strong, .detail-shot small { display: block; }
.detail-shot strong { font-size: 14px; }
.detail-shot small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; }
.exam-documents { background: var(--paper); }
.exam-document-grid article { background: white; }
.exam-control-section { padding: 78px 0; color: white; background: #147d78; }
.exam-control-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 76px; align-items: end; }
.exam-control-grid .eyebrow { color: #d0f1ed; }
.exam-control-grid h2 { font-size: clamp(42px, 5vw, 62px); }
.exam-control-grid > div:last-child p { margin: 0 0 24px; color: #daf2ef; font-size: 17px; }

.module-nav {
  position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid var(--line); background: white;
}
.module-nav-inner {
  display: flex; gap: 6px; overflow-x: auto; padding-block: 12px;
  scrollbar-width: thin;
}
.module-nav a {
  flex: 0 0 auto; padding: 9px 13px; color: var(--ink-soft); border-radius: 9px;
  font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap;
}
.module-nav a:hover { color: var(--blue-dark); background: #edf5f9; }
.module-nav a[aria-current="page"] { color: white; background: var(--blue-dark); }
.feature-hero .exam-promise > strong { font-size: clamp(38px, 4vw, 48px); }
.feature-focus img,
.feature-detail-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
}
.feature-detail-frame { height: 330px; }
.crop-feature-top img { transform: scale(2.15); transform-origin: 48% 4%; }
.crop-feature-actions img { transform: scale(2.35); transform-origin: 28% 7%; }
.crop-feature-table img { transform: scale(1.75); transform-origin: 40% 42%; }
.crop-feature-right img { transform: scale(2.05); transform-origin: 82% 34%; }
.crop-feature-left img { transform: scale(2.25); transform-origin: 8% 23%; }
.crop-feature-middle img { transform: scale(2.05); transform-origin: 48% 25%; }
.crop-panel-left img { transform: scale(2.25); transform-origin: 4% 42%; }
.crop-panel-top img { transform: scale(1.85); transform-origin: 48% 4%; }
.crop-panel-menu img { transform: scale(3.15); transform-origin: 5% 22%; }
.crop-panel-menu-low img { transform: scale(3.05); transform-origin: 5% 39%; }
.crop-panel-status img { transform: scale(3); transform-origin: 6% 50%; }
.feature-detail-frame.crop-feature-top img,
.feature-detail-frame.crop-feature-actions img,
.feature-detail-frame.crop-feature-table img,
.feature-detail-frame.crop-feature-right img,
.feature-detail-frame.crop-feature-left img,
.feature-detail-frame.crop-feature-middle img,
.feature-detail-frame.crop-panel-left img,
.feature-detail-frame.crop-panel-top img,
.feature-detail-frame.crop-panel-menu img,
.feature-detail-frame.crop-panel-menu-low img,
.feature-detail-frame.crop-panel-status img { transition: transform .3s ease; }
.detail-shot:hover .feature-detail-frame.crop-feature-top img,
.detail-shot:focus-visible .feature-detail-frame.crop-feature-top img { transform: scale(2.2); }
.detail-shot:hover .feature-detail-frame.crop-feature-actions img,
.detail-shot:focus-visible .feature-detail-frame.crop-feature-actions img { transform: scale(2.4); }
.detail-shot:hover .feature-detail-frame.crop-feature-table img,
.detail-shot:focus-visible .feature-detail-frame.crop-feature-table img { transform: scale(1.8); }
.detail-shot:hover .feature-detail-frame.crop-feature-right img,
.detail-shot:focus-visible .feature-detail-frame.crop-feature-right img { transform: scale(2.1); }
.detail-shot:hover .feature-detail-frame.crop-feature-left img,
.detail-shot:focus-visible .feature-detail-frame.crop-feature-left img { transform: scale(2.3); }
.detail-shot:hover .feature-detail-frame.crop-feature-middle img,
.detail-shot:focus-visible .feature-detail-frame.crop-feature-middle img { transform: scale(2.1); }
.detail-shot:hover .feature-detail-frame.crop-panel-left img,
.detail-shot:focus-visible .feature-detail-frame.crop-panel-left img { transform: scale(2.3); }
.detail-shot:hover .feature-detail-frame.crop-panel-top img,
.detail-shot:focus-visible .feature-detail-frame.crop-panel-top img { transform: scale(1.9); }
.detail-shot:hover .feature-detail-frame.crop-panel-menu img,
.detail-shot:focus-visible .feature-detail-frame.crop-panel-menu img { transform: scale(3.2); }
.detail-shot:hover .feature-detail-frame.crop-panel-menu-low img,
.detail-shot:focus-visible .feature-detail-frame.crop-panel-menu-low img { transform: scale(3.1); }
.detail-shot:hover .feature-detail-frame.crop-panel-status img,
.detail-shot:focus-visible .feature-detail-frame.crop-panel-status img { transform: scale(3.05); }

.lightbox { width: min(1200px, calc(100% - 36px)); max-width: none; padding: 14px; border: 0; border-radius: 18px; background: white; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(5, 20, 35, .82); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border: 0;
  border-radius: 50%; background: var(--ink); color: white; font-size: 27px; cursor: pointer;
}

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 1080px) {
  .site-nav {
    display: none; position: absolute; top: 70px; left: 20px; right: 20px; padding: 18px;
    flex-direction: column; align-items: stretch; gap: 7px; background: white; border: 1px solid var(--line);
    border-radius: 14px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { justify-content: space-between; padding: 10px 12px; }
  .nav-dropdown-panel {
    position: static; width: 100%; margin-top: 5px; padding: 14px; border-radius: 12px;
    box-shadow: none; transform: none;
  }
  .nav-dropdown-heading { align-items: start; flex-direction: column; gap: 2px; }
  .nav-dropdown-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-button { display: block; }
  .hero-grid, .features .container, .privacy-grid, .subpage-hero-grid, .story-grid,
  .story-grid.reverse, .result-panel, .control-grid, .exam-hero-grid,
  .exam-automation-grid, .exam-control-grid, .deep-step, .deep-step-reverse { grid-template-columns: 1fr; gap: 46px; }
  .hero { padding-top: 64px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(760px, 95%); margin-inline: auto; }
  .section-intro { position: static; }
  .gallery-heading, .download-panel, .cta-panel { grid-template-columns: 1fr; }
  .download-actions, .cta-actions { justify-self: start; }
  .module-link-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid, .workflow-heading { grid-template-columns: 1fr; }
  .workflow-heading > p:last-child { grid-column: 1; grid-row: auto; }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow-steps article:last-child { border-bottom: 0; }
  .secure-flow { grid-template-columns: 1fr; }
  .document-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .exam-feature-grid { grid-template-columns: 1fr; }
  .focus-viewport { height: 260px; }
  .deep-step-reverse .deep-step-copy, .deep-step-reverse .mini-shot-grid { order: initial; }
  .steps-grid article:nth-child(2) { border-right: 0; }
  .steps-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow-plus,
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), 1180px); }
  .site-header .brand span { display: none; }
  .header-inner { min-height: 68px; }
  .hero { padding: 50px 0 70px; }
  .subpage-hero { padding: 56px 0 70px; }
  .exam-hero { padding: 58px 0 72px; }
  h1 { font-size: clamp(45px, 14vw, 64px); }
  h2 { font-size: clamp(38px, 11vw, 52px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list article { min-height: auto; }
  .nav-dropdown-grid { grid-template-columns: 1fr; }
  .nav-dropdown-grid small { white-space: normal; }
  .download-section { padding: 44px 0; }
  .download-actions { width: 100%; padding: 20px; }
  .hero-results { position: relative; left: auto; right: auto; bottom: auto; margin: 12px 8px 0; grid-template-columns: 1fr; }
  .hero-results div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-results div:last-child { border-bottom: 0; }
  .trust-items { overflow-x: auto; justify-content: flex-start; padding-block: 20px; }
  .trust-items span { white-space: nowrap; }
  .section { padding: 78px 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-home .shot-frame { height: 220px; }
  .shot-wide { grid-column: auto; }
  .shot-caption { display: block; }
  .shot-caption small { display: block; margin-top: 3px; text-align: left; }
  .privacy-visual { padding: 18px; border-radius: 18px; }
  .flow-card { min-height: auto; padding: 17px; }
  .flow-lock { min-height: auto; padding: 20px 16px; }
  .privacy-warning { align-items: flex-start; padding: 15px; }
  .cta-section { padding: 42px 0; }
  .cta-panel { padding: 38px 24px; border-radius: 18px; }
  .footer-inner { padding: 34px 0; flex-direction: column; align-items: flex-start; }
  .one-click-card { min-height: 230px; padding: 34px 26px; }
  .one-click-number { font-size: 105px; }
  .promise-items { grid-template-columns: 1fr; padding-block: 8px; }
  .promise-items span { min-height: 54px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .promise-items span:last-child { border-bottom: 0; }
  .screen-card > div { display: block; }
  .screen-card small { margin-top: 4px; text-align: left; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article, .steps-grid article:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps-grid article:last-child { border-bottom: 0; }
  .steps-grid h3 { margin-top: 35px; }
  .phone-shell { width: min(290px, calc(100vw - 54px)); }
  .sync-badge { position: relative; right: auto; bottom: auto; width: fit-content; margin: 14px auto 0; }
  .daily-card { padding: 34px 24px; }
  .daily-line { flex-wrap: wrap; }
  .exam-promise { min-height: auto; padding: 36px 26px; }
  .exam-promise > strong { font-size: 40px; }
  .focus-viewport { height: 190px; }
  .placement-board { padding: 20px; }
  .placement-line { grid-template-columns: 54px 1fr 28px; }
  .placement-line em { display: none; }
  .exam-deep-dive { padding-top: 84px; }
  .deep-heading { margin-bottom: 46px; }
  .deep-step { padding: 54px 0; }
  .mini-shot-grid { grid-template-columns: 1fr; }
  .detail-shot-frame { height: 180px; }
  .feature-detail-frame { height: 230px; }
  .module-link-grid { grid-template-columns: 1fr; }
  .module-overview { padding-top: 52px; }
  .compare-grid article { padding: 28px 24px; }
  .workflow-steps h3 { margin-top: 30px; }
  .privacy-example { padding: 38px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
