:root {
  color-scheme: light;
  --ink: #111c27;
  --muted: #536474;
  --navy: #102238;
  --navy-2: #18314d;
  --blue: #078fe8;
  --blue-dark: #0866b6;
  --blue-soft: #e5f4ff;
  --lime: #b9f21c;
  --lime-dark: #3f5900;
  --teal: #087d70;
  --coral: #d9564b;
  --yellow: #f1bd3f;
  --paper: #f5f8fb;
  --surface: #ffffff;
  --line: #d7e1e9;
  --line-strong: #aebdca;
  --shadow: 0 24px 70px rgba(22, 43, 64, 0.16);
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}
button, input, textarea, select { font: inherit; letter-spacing: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { width: 1.1em; height: 1.1em; stroke-width: 1.8; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(15, 31, 49, 0.07); }
.nav-shell {
  width: min(calc(100% - 40px), var(--content));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 8px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 18px; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 11px; text-transform: uppercase; font-weight: 700; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.site-nav a { color: #344556; font-size: 14px; font-weight: 650; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue-dark); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.language-link { min-width: 38px; padding: 8px 9px; color: var(--blue-dark); font-size: 12px; font-weight: 800; text-align: center; text-decoration: none; }
.button {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--blue-dark); }
.button-primary:hover { background: #07589d; }
.button-quiet { border-color: var(--line); background: #fff; color: var(--navy); }
.button-quiet:hover { border-color: var(--line-strong); background: var(--paper); }
.button-lime { background: var(--lime); color: #203000; }
.button-lime:hover { background: #c8ff2f; }
.button-large { min-height: 50px; padding: 0 22px; font-size: 15px; }
.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background: #f8fbfd;
  border-bottom: 1px solid var(--line);
}
.hero-grid-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 60px;
  width: 51%;
  opacity: 0.5;
  border-left: 1px solid #dfe8ef;
  border-right: 1px solid #dfe8ef;
  background: #f1f6fa;
}
.hero-inner {
  position: relative;
  width: min(calc(100% - 40px), 1320px);
  min-height: calc(82vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(650px, 1.18fr);
  align-items: center;
  gap: 34px;
  padding: 56px 0 42px;
}
.hero-copy { position: relative; z-index: 4; min-width: 0; padding-left: 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .eyebrow { display: flex; align-items: center; gap: 9px; }
.hero .eyebrow span { width: 28px; height: 3px; background: var(--lime); }
.hero h1 {
  width: 100%;
  max-width: 640px;
  margin: 0;
  font-size: 84px;
  line-height: 0.96;
  font-weight: 830;
}
.hero-tagline { margin: 22px 0 0; color: var(--blue-dark); font-size: 23px; font-weight: 760; }
.hero-summary { max-width: 590px; margin: 16px 0 0; color: #435666; font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-size: 14px; font-weight: 750; text-decoration: none; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 28px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 5px; color: #506273; font-size: 13px; }
.hero-points svg { color: var(--teal); }

.product-scene { position: relative; z-index: 2; min-width: 0; min-height: 570px; display: grid; place-items: center; }
.desktop-product {
  width: min(820px, 67vw);
  min-width: 690px;
  overflow: hidden;
  border: 1px solid #9babb8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(78px);
}
.product-topbar { height: 48px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; background: var(--navy); color: #fff; }
.mini-brand { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 750; }
.mini-brand img { width: 27px; height: 27px; border-radius: 5px; }
.topbar-status { display: flex; align-items: center; gap: 7px; color: #c9d5df; font-size: 10px; }
.topbar-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.product-body { min-height: 405px; display: grid; grid-template-columns: 152px 1fr; }
.product-sidebar { padding: 22px 13px; display: flex; flex-direction: column; gap: 8px; background: #f0f4f7; border-right: 1px solid var(--line); }
.product-sidebar > strong { margin: 0 7px 14px; font-size: 12px; }
.side-item { min-height: 36px; padding: 0 9px; display: flex; align-items: center; gap: 9px; border-radius: 4px; color: #526575; font-size: 11px; font-weight: 650; }
.side-item.active { color: #fff; background: var(--navy-2); }
.product-workspace { padding: 22px; background: #f8fafc; }
.workspace-heading { display: flex; align-items: flex-start; justify-content: space-between; }
.workspace-heading div { display: grid; }
.workspace-heading small { color: var(--blue-dark); font-size: 9px; font-weight: 800; }
.workspace-heading strong { margin-top: 2px; font-size: 22px; }
.workspace-heading button, .phone-ticket button { border: 0; border-radius: 4px; color: #fff; background: var(--blue-dark); font-size: 10px; font-weight: 700; }
.workspace-heading button { height: 32px; padding: 0 12px; display: inline-flex; align-items: center; gap: 6px; }
.filter-row { margin-top: 18px; display: grid; grid-template-columns: 1fr 130px; gap: 8px; }
.filter-row span { height: 34px; padding: 0 10px; display: flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: #6b7c8a; font-size: 10px; }
.ticket-table { margin-top: 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.table-head, .ticket-row { display: grid; grid-template-columns: 1.05fr 1.55fr 0.85fr 0.8fr; align-items: center; gap: 12px; }
.table-head { min-height: 34px; padding: 0 12px; color: #637484; background: #edf2f6; font-size: 8px; font-weight: 800; }
.ticket-row { position: relative; min-height: 76px; padding: 0 12px; border-top: 1px solid var(--line); font-size: 10px; }
.ticket-row.attention::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--yellow); }
.ticket-row span { display: grid; }
.ticket-row strong { font-size: 10px; }
.ticket-row small { margin-top: 3px; color: #778795; font-size: 8px; }
.ticket-row em { width: fit-content; padding: 3px 6px; border-radius: 3px; color: #654600; background: #fff0bd; font-style: normal; font-weight: 700; }
.ticket-row em.status-blue { color: #07528e; background: #dcefff; }
.ticket-row em.status-green { color: #17604d; background: #dff5e9; }
.phone-product {
  position: absolute;
  right: -5px;
  bottom: 18px;
  width: 220px;
  min-height: 420px;
  overflow: hidden;
  border: 8px solid #10171d;
  border-radius: 32px;
  background: #f7fafc;
  box-shadow: 0 28px 56px rgba(15, 31, 49, 0.28);
}
.phone-status { height: 28px; padding: 0 12px; display: flex; justify-content: space-between; align-items: center; color: #566674; font-size: 8px; }
.phone-title { padding: 10px 13px 14px; display: flex; align-items: center; gap: 9px; background: var(--navy); color: #fff; }
.phone-title img { width: 31px; height: 31px; border-radius: 6px; }
.phone-title span { display: grid; }
.phone-title strong { font-size: 11px; }
.phone-title small { color: #b9c8d5; font-size: 8px; }
.phone-ticket { margin: 18px 12px; padding: 14px; display: grid; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.phone-ticket > small { color: var(--blue-dark); font-size: 7px; font-weight: 800; }
.phone-ticket > strong { margin-top: 7px; font-size: 13px; line-height: 1.25; }
.phone-pill { width: fit-content; margin-top: 12px; padding: 3px 6px; border-radius: 3px; color: #654600; background: #fff0bd; font-size: 8px; font-weight: 750; }
.phone-meta { margin: 18px 0; display: flex; gap: 10px; color: #617381; font-size: 8px; }
.phone-meta span { display: flex; align-items: center; gap: 3px; }
.phone-ticket button { height: 35px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.phone-tabs { position: absolute; inset: auto 0 0; height: 51px; display: flex; align-items: center; justify-content: space-around; border-top: 1px solid var(--line); color: #6f7f8c; background: #fff; }
.phone-tabs svg:first-child { color: var(--blue-dark); }
.hero-proof { position: relative; z-index: 5; min-height: 60px; padding: 0 max(20px, calc((100% - var(--content)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #dce7ef; background: var(--navy); font-size: 12px; font-weight: 650; }

.section-heading { width: min(calc(100% - 40px), 820px); margin: 0 auto 48px; text-align: center; }
.section-heading h2, .record-copy h2, .plans-intro h2, .final-cta h2, .legal-main h1 { margin: 0; font-size: 52px; line-height: 1.05; }
.section-heading > p:last-child { max-width: 670px; margin: 18px auto 0; color: var(--muted); font-size: 18px; }
.left-heading { width: auto; margin: 0; text-align: left; }
.left-heading h2 { max-width: 770px; }

.workflow-section { padding: 58px 20px 116px; }
.workflow-list { width: min(100%, var(--content)); margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); }
.workflow-list li { position: relative; min-height: 270px; padding: 28px 26px 34px; display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.workflow-list li:last-child { border-right: 1px solid var(--line); }
.step-number { color: #8a99a6; font-family: Consolas, monospace; font-size: 11px; }
.workflow-list > li > svg { width: 29px; height: 29px; margin-top: 48px; color: var(--blue-dark); }
.workflow-list h3 { margin: 20px 0 7px; font-size: 21px; }
.workflow-list p { margin: 0; color: var(--muted); font-size: 14px; }

.record-section { padding: 106px max(20px, calc((100% - var(--content)) / 2)); display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: center; gap: 90px; color: #fff; background: var(--navy); }
.record-copy .eyebrow { color: #65c7ff; }
.record-copy > p:not(.eyebrow) { margin: 22px 0 0; color: #c2d0dc; font-size: 17px; }
.check-list { margin: 34px 0 0; padding: 0; display: grid; gap: 20px; list-style: none; }
.check-list li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; color: #c8d4de; font-size: 14px; }
.check-list svg { width: 22px; height: 22px; color: var(--lime); }
.check-list strong { display: block; color: #fff; font-size: 15px; }
.timeline-tool { margin: 0; padding: 28px 32px 30px; border: 1px solid #4c6479; border-radius: 7px; background: #fff; color: var(--ink); box-shadow: 0 32px 70px rgba(0, 0, 0, 0.22); }
.timeline-tool figcaption { padding-bottom: 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); }
.timeline-tool figcaption > span { color: var(--blue-dark); font-size: 11px; font-weight: 800; }
.timeline-tool figcaption > strong { font-size: 17px; }
.timeline-tool figcaption > em { padding: 4px 7px; border-radius: 3px; color: #07528e; background: #dcefff; font-size: 10px; font-style: normal; font-weight: 700; }
.timeline-entry { position: relative; min-height: 90px; padding: 23px 0 8px 36px; border-left: 2px solid #d6e0e8; }
.timeline-entry:last-child { border-left-color: transparent; }
.timeline-dot { position: absolute; top: 27px; left: -6px; width: 10px; height: 10px; border-radius: 50%; background: #8da0b1; }
.timeline-entry.current .timeline-dot { background: var(--lime-dark); box-shadow: 0 0 0 5px #eff9d5; }
.timeline-entry div { display: grid; }
.timeline-entry strong { font-size: 14px; }
.timeline-entry p { margin: 3px 0; color: #526474; font-size: 13px; }
.timeline-entry small { color: #82919d; font-size: 10px; }

.roles-section { padding: 112px max(20px, calc((100% - var(--content)) / 2)); background: var(--paper); }
.role-tabs { margin-top: 46px; display: flex; border-bottom: 1px solid var(--line-strong); }
.role-tabs button { min-height: 51px; padding: 0 28px; border: 0; border-bottom: 3px solid transparent; color: #677887; background: transparent; font-weight: 750; cursor: pointer; }
.role-tabs button[aria-selected="true"] { border-bottom-color: var(--blue); color: var(--ink); }
.role-panel { min-height: 420px; padding: 58px 0 0; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 100px; align-items: center; }
.role-panel h3 { max-width: 520px; margin: 8px 0 15px; font-size: 36px; line-height: 1.12; }
.role-panel > div > p:not(.role-kicker) { max-width: 570px; color: var(--muted); font-size: 17px; }
.role-kicker { margin: 0; color: var(--teal); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.role-panel ul { margin: 25px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.role-panel ul li { padding: 6px 9px; border: 1px solid #c6d2db; border-radius: 4px; background: #fff; font-size: 12px; font-weight: 650; }
.role-visual { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 7px; background: #fff; box-shadow: 0 24px 50px rgba(15, 31, 49, 0.11); }
.role-status { padding: 20px 22px; display: grid; grid-template-columns: 1fr auto; background: var(--navy); color: #fff; }
.role-status span { grid-column: 1 / -1; color: #75cfff; font-size: 9px; font-weight: 800; }
.role-status strong { margin-top: 3px; font-size: 22px; }
.role-status small { align-self: end; color: #c3d2dd; }
.role-ticket { min-height: 86px; padding: 0 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; border-top: 1px solid var(--line); }
.role-ticket > svg { color: var(--yellow); }
.role-ticket > span { display: grid; }
.role-ticket strong { font-size: 14px; }
.role-ticket small { color: var(--muted); }
.role-ticket em { color: #85939f; font-size: 10px; font-style: normal; }
.role-ticket.muted { opacity: 0.65; }
.role-ticket.muted > svg { color: var(--teal); }

.principles-section { padding: 108px max(20px, calc((100% - var(--content)) / 2)); }
.principle-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.principle-grid article { min-height: 240px; padding: 32px 24px 24px 0; border-bottom: 1px solid var(--line); }
.principle-grid article + article { padding-left: 24px; border-left: 1px solid var(--line); }
.principle-grid svg { width: 27px; height: 27px; color: var(--blue-dark); }
.principle-grid h3 { margin: 40px 0 9px; font-size: 18px; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.plans-section { padding: 108px max(20px, calc((100% - var(--content)) / 2)); color: #fff; background: #0b403c; }
.plans-intro { max-width: 800px; }
.plans-intro .eyebrow { color: #a3ede6; }
.plans-intro > p:not(.eyebrow) { max-width: 680px; margin: 20px 0 0; color: #c4dedb; font-size: 17px; }
.plans-intro > small { display: block; margin-top: 14px; color: #92bdb8; }
.plan-list { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #4d7a76; border-bottom: 1px solid #4d7a76; }
.plan-list article { position: relative; min-height: 210px; padding: 28px 24px; display: flex; flex-direction: column; border-left: 1px solid #4d7a76; }
.plan-list article:last-child { border-right: 1px solid #4d7a76; }
.plan-list article.featured { color: var(--ink); background: var(--lime); }
.plan-list article > span { font-size: 13px; font-weight: 800; text-transform: uppercase; }
.plan-list article > strong { margin-top: 31px; font-size: 36px; }
.plan-list article > strong small { font-size: 12px; font-weight: 650; }
.plan-list article > p { margin: 5px 0 0; color: #bfdbd8; font-size: 13px; }
.plan-list article.featured > p { color: #395000; }
.plan-list article > em { position: absolute; right: 16px; bottom: 16px; color: #3e5600; font-size: 10px; font-style: normal; font-weight: 750; }
.plan-action { margin-top: 30px; display: flex; align-items: center; gap: 22px; }
.plan-action > span { color: #b7d2cf; font-size: 12px; }

.final-cta { min-height: 260px; padding: 50px max(20px, calc((100% - var(--content)) / 2)); display: grid; grid-template-columns: 86px 1fr auto; align-items: center; gap: 28px; background: var(--blue); color: #fff; }
.final-cta > img { width: 86px; height: 86px; border-radius: 14px; }
.final-cta .eyebrow { color: #d9f6ff; }
.final-cta h2 { max-width: 680px; font-size: 46px; }

.site-footer { padding: 62px max(20px, calc((100% - var(--content)) / 2)) 25px; color: #d6e0e8; background: #0b1723; }
.footer-main { display: grid; grid-template-columns: 220px 1fr auto; gap: 40px; align-items: start; }
.footer-brand strong { color: #fff; }
.footer-brand small { color: #9bb0c1; }
.footer-main > p { max-width: 470px; margin: 0; color: #9db0bf; font-size: 14px; }
.footer-main nav { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 34px; }
.footer-main nav a, .footer-legal a { color: #c2d0db; font-size: 13px; text-decoration: none; }
.footer-main nav a:hover, .footer-legal a:hover { color: #fff; }
.footer-legal { margin-top: 54px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #2e4050; color: #8297a8; font-size: 11px; }
.footer-legal nav { display: flex; gap: 20px; }

.legal-header { border-bottom: 1px solid var(--line); background: #fff; }
.legal-nav { width: min(calc(100% - 40px), 960px); min-height: 72px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.legal-nav .brand img { width: 38px; height: 38px; }
.legal-nav > a:last-child { color: var(--blue-dark); font-size: 13px; font-weight: 750; text-decoration: none; }
.legal-actions { display: flex; align-items: center; gap: 20px; }
.legal-actions a { color: var(--blue-dark); font-size: 13px; font-weight: 750; text-decoration: none; }
.legal-main { width: min(calc(100% - 40px), 780px); margin: 0 auto; padding: 70px 0 90px; }
.legal-main h1 { font-size: 60px; }
.legal-lead { margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.legal-meta { margin-top: 13px; color: #7a8996; font-size: 12px; }
.legal-section { padding-top: 34px; }
.legal-section h2 { margin: 0 0 10px; font-size: 21px; }
.legal-section p, .legal-section li { color: #405362; }
.legal-section ul { padding-left: 20px; }
.legal-section a { color: var(--blue-dark); }
.legal-notice { margin: 32px 0 0; padding: 18px 20px; border-left: 4px solid var(--yellow); background: #fff8df; color: #4e4426; }
.support-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-strong); }
.support-item { min-height: 190px; padding: 26px 24px 25px 0; border-bottom: 1px solid var(--line); }
.support-item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.support-item svg { width: 24px; height: 24px; color: var(--blue-dark); }
.support-item h2 { margin: 24px 0 7px; font-size: 18px; }
.support-item p { margin: 0; color: var(--muted); font-size: 14px; }
.support-actions { margin-top: 42px; padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--navy); color: #fff; }
.support-actions h2 { margin: 0; }
.support-actions p { margin: 5px 0 0; color: #c3d2dd; font-size: 14px; }
.about-nav > div { display: flex; align-items: center; gap: 24px; }
.about-nav > div a { color: var(--blue-dark); font-size: 13px; font-weight: 750; text-decoration: none; }
.about-hero { padding: 90px max(20px, calc((100% - var(--content)) / 2)); color: #fff; background: var(--navy); }
.about-hero-inner { display: grid; grid-template-columns: 1.12fr 0.88fr; align-items: end; gap: 100px; }
.about-hero .eyebrow { color: #70ccff; }
.about-hero h1 { max-width: 700px; margin: 0; font-size: 76px; line-height: 0.98; }
.about-lead { max-width: 650px; margin: 24px 0 0; color: #c7d5df; font-size: 21px; }
.about-hero blockquote { margin: 0; padding: 0 0 7px 28px; border-left: 3px solid var(--lime); }
.about-hero blockquote p { margin: 0; color: #c4d2dc; font-size: 18px; }
.about-hero blockquote strong { display: block; margin-top: 10px; color: var(--lime); font-size: 28px; }
.about-intro { padding: 100px max(20px, calc((100% - var(--content)) / 2)); display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 100px; align-items: start; }
.about-intro h2, .workdesk-application h2, .about-challenge h2 { margin: 0; font-size: 52px; line-height: 1.05; }
.about-prose { max-width: 680px; }
.about-prose p { margin: 0 0 20px; color: #405362; font-size: 17px; }
.about-prose .button { margin-top: 10px; }
.name-story { padding: 82px max(20px, calc((100% - var(--content)) / 2)); display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 100px; color: #fff; background: var(--blue-dark); }
.name-story h2 { max-width: 500px; margin: 0; font-size: 42px; line-height: 1.08; }
.name-story > div:last-child { align-self: end; }
.name-story > div:last-child p { max-width: 650px; margin: 0 0 16px; color: #c9dbe8; font-size: 19px; }
.name-story > div:last-child strong { color: var(--lime); }
.saaf-principles { padding: 100px max(20px, calc((100% - var(--content)) / 2)); background: var(--paper); }
.saaf-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.saaf-grid article { position: relative; min-height: 290px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.saaf-grid article > span { color: #8796a2; font-family: Consolas, monospace; font-size: 11px; }
.saaf-grid svg { position: absolute; top: 27px; right: 27px; width: 27px; height: 27px; color: var(--blue-dark); }
.saaf-grid h3 { margin: 80px 0 10px; font-size: 20px; }
.saaf-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.workdesk-application { padding: 100px max(20px, calc((100% - var(--content)) / 2)); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; color: #fff; background: #0b403c; }
.workdesk-application .eyebrow { color: #9de8e0; }
.application-points { border-top: 1px solid #4d7a76; }
.application-points p { margin: 0; padding: 22px 0; display: grid; grid-template-columns: 180px 1fr; gap: 22px; border-bottom: 1px solid #4d7a76; color: #c5dedb; font-size: 14px; }
.application-points span { color: var(--lime); font-weight: 800; }
.about-challenge { padding: 110px max(20px, calc((100% - 880px) / 2)); text-align: center; }
.about-challenge > p:not(.eyebrow) { max-width: 760px; margin: 24px auto 0; color: var(--muted); font-size: 18px; }
.about-challenge > strong { display: block; margin-top: 38px; color: var(--blue-dark); font-size: 18px; }
.about-challenge > span { display: block; margin-top: 18px; font-size: 28px; font-weight: 850; }
.deletion-form { margin-top: 35px; padding: 26px; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); }
.deletion-form label { display: grid; gap: 8px; font-weight: 700; }
.deletion-form input { height: 48px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 5px; background: #fff; }
.deletion-form .button { margin-top: 14px; }
.form-result { min-height: 24px; margin: 14px 0 0; font-size: 13px; }
.form-result.error { color: #a9322b; }
.form-result.success { color: #116653; }

@media (max-width: 1500px) {
  .hero-inner { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 20px; padding: 24px 0 20px; }
  .hero h1 { max-width: 100%; font-size: 68px; }
  .product-scene { min-height: 470px; }
  .desktop-product { width: min(760px, 64vw); min-width: 600px; transform: translateX(35px); }
  .phone-product { right: -10px; transform: scale(0.9); transform-origin: right bottom; }
}

@media (max-width: 1080px) {
  .nav-actions .button-quiet { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr); }
  .hero h1 { font-size: 60px; }
  .desktop-product { width: min(650px, 67vw); min-width: 540px; transform: translateX(28px); }
  .phone-product { right: -22px; transform: scale(0.82); transform-origin: right bottom; }
  .record-section, .role-panel { gap: 55px; }
}

@media (max-width: 820px) {
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-button { display: inline-grid; }
  .site-nav { position: absolute; top: 72px; left: 0; right: 0; padding: 18px 20px 22px; display: none; align-items: stretch; flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); background: #fff; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .nav-actions { display: none; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding: 70px 0 54px; }
  .hero-copy { max-width: 680px; padding-left: 0; }
  .hero h1 { font-size: 64px; }
  .section-heading h2, .record-copy h2, .plans-intro h2, .legal-main h1 { font-size: 44px; }
  .final-cta h2 { font-size: 38px; }
  .product-scene { min-height: 520px; overflow: hidden; }
  .desktop-product { min-width: 680px; transform: translateX(80px); }
  .phone-product { right: 4%; transform: none; }
  .hero-proof { padding-top: 17px; padding-bottom: 17px; flex-wrap: wrap; justify-content: flex-start; }
  .workflow-section { padding-top: 60px; }
  .workflow-list { grid-template-columns: repeat(2, 1fr); }
  .workflow-list li:nth-child(2) { border-right: 1px solid var(--line); }
  .record-section { grid-template-columns: 1fr; }
  .role-panel { grid-template-columns: 1fr; min-height: 0; }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-grid article:nth-child(3) { border-left: 0; }
  .plan-list { grid-template-columns: repeat(2, 1fr); }
  .plan-list article:nth-child(2) { border-right: 1px solid #4d7a76; }
  .final-cta { grid-template-columns: 70px 1fr; }
  .final-cta > img { width: 70px; height: 70px; }
  .final-cta .button { grid-column: 2; justify-self: start; }
  .footer-main { grid-template-columns: 200px 1fr; }
  .footer-main nav { grid-column: 1 / -1; display: flex; flex-wrap: wrap; }
  .about-hero-inner, .about-intro, .name-story, .workdesk-application { grid-template-columns: 1fr; gap: 50px; }
  .about-hero h1 { font-size: 60px; }
  .about-intro h2, .workdesk-application h2, .about-challenge h2 { font-size: 44px; }
  .saaf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .nav-shell { width: min(calc(100% - 28px), var(--content)); }
  .hero-inner { width: min(calc(100% - 28px), 1320px); padding: 32px 0 24px; gap: 20px; }
  .hero h1 { font-size: 52px; }
  .hero-tagline { font-size: 20px; }
  .hero-summary { font-size: 16px; }
  .hero-actions { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 16px; margin-top: 22px; }
  .hero-points { display: none; }
  .product-scene { min-height: 185px; margin: 0 -14px; }
  .desktop-product { position: absolute; min-width: 600px; transform: translateX(175px) scale(0.52); transform-origin: center; }
  .phone-product { right: 7px; bottom: -38px; transform: scale(0.58); transform-origin: bottom right; }
  .hero-proof { display: none; }
  .section-heading h2, .record-copy h2, .plans-intro h2, .legal-main h1 { font-size: 36px; }
  .final-cta h2 { font-size: 32px; }
  .workflow-section { padding-top: 40px; padding-bottom: 86px; }
  .principles-section { padding-top: 82px; padding-bottom: 86px; }
  .section-heading { width: 100%; text-align: left; }
  .section-heading > p:last-child { margin-left: 0; font-size: 16px; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-list li { min-height: 210px; }
  .workflow-list li, .workflow-list li:nth-child(2) { border-right: 1px solid var(--line); }
  .workflow-list > li > svg { margin-top: 28px; }
  .record-section, .roles-section, .plans-section { padding-top: 82px; padding-bottom: 86px; }
  .timeline-tool { padding: 20px 18px; }
  .timeline-tool figcaption { grid-template-columns: 1fr auto; }
  .timeline-tool figcaption > span { grid-column: 1 / -1; }
  .role-tabs { overflow-x: auto; }
  .role-tabs button { flex: 0 0 auto; padding: 0 18px; }
  .role-panel { padding-top: 38px; gap: 40px; }
  .role-panel h3 { font-size: 29px; }
  .principle-grid, .plan-list { grid-template-columns: 1fr; }
  .principle-grid article, .principle-grid article + article { min-height: 190px; padding: 28px 0; border-left: 0; }
  .principle-grid h3 { margin-top: 26px; }
  .plan-list article, .plan-list article:nth-child(2) { border-right: 1px solid #4d7a76; }
  .plan-action { align-items: flex-start; flex-direction: column; }
  .final-cta { padding-top: 54px; padding-bottom: 54px; grid-template-columns: 56px 1fr; }
  .final-cta > img { width: 56px; height: 56px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { grid-column: auto; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
  .footer-legal nav { flex-wrap: wrap; }
  .legal-main { padding-top: 52px; }
  .legal-nav > a:last-child { display: none; }
  .legal-actions { gap: 14px; }
  .legal-actions a:last-child { display: none; }
  .support-grid { grid-template-columns: 1fr; }
  .support-item, .support-item:nth-child(even) { padding: 24px 0; border-left: 0; }
  .support-actions { align-items: flex-start; flex-direction: column; }
  .about-nav > div { gap: 14px; }
  .about-nav > div a:nth-child(2) { display: none; }
  .about-hero { padding-top: 64px; padding-bottom: 70px; }
  .about-hero h1 { font-size: 48px; }
  .about-lead { font-size: 18px; }
  .about-hero blockquote strong { font-size: 24px; }
  .about-intro, .name-story, .saaf-principles, .workdesk-application, .about-challenge { padding-top: 76px; padding-bottom: 78px; }
  .name-story { gap: 28px; }
  .name-story h2 { font-size: 34px; }
  .name-story > div:last-child p { font-size: 17px; }
  .about-intro h2, .workdesk-application h2, .about-challenge h2 { font-size: 36px; }
  .saaf-grid { grid-template-columns: 1fr; }
  .saaf-grid article { min-height: 240px; }
  .application-points p { grid-template-columns: 1fr; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
