:root {
  --ink-950: #07162d;
  --ink-900: #0b2347;
  --ink-800: #15345f;
  --ink-700: #285078;
  --ink-600: #456889;
  --blue-700: #0752be;
  --blue-600: #0f67e8;
  --blue-500: #2684ff;
  --blue-300: #8ec7ff;
  --blue-100: #dceeff;
  --blue-050: #f0f7ff;
  --red-600: #d91324;
  --red-500: #ef233c;
  --gold-500: #f2aa3f;
  --gold-100: #fff0d8;
  --cream: #fffaf3;
  --paper: #ffffff;
  --mist: #f5f8fc;
  --line: #d7e2ed;
  --line-strong: #b9c9d9;
  --text: #20344e;
  --muted: #5c7087;
  --success: #16745b;
  --shadow-sm: 0 10px 30px rgb(16 49 85 / 8%);
  --shadow-md: 0 22px 70px rgb(7 37 78 / 14%);
  --shadow-lg: 0 40px 100px rgb(7 37 78 / 20%);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --page: min(86rem, calc(100% - clamp(2.5rem, 5vw, 6rem)));
  --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue-700);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--blue-600);
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  color: var(--ink-950);
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
}

::selection {
  background: var(--blue-100);
  color: var(--ink-950);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset: 0 auto auto 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--ink-950);
  color: var(--paper);
  font-weight: 700;
  transform: translateY(-120%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: var(--paper);
  transform: translateY(0);
}

.shell {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: none;
  width: 1.8rem;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--blue-300);
}

.eyebrow--warm {
  color: #7f4c00;
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.lede-narrow {
  max-width: 34rem;
}

.lead--on-dark {
  color: #a9bdd1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(215 226 237 / 72%);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-wrap {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.78rem;
  color: var(--ink-950);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink-950);
}

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgb(217 19 36 / 16%));
}

.brand-domain {
  display: block;
  margin-top: -0.22rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2.1rem);
}

.site-nav,
.nav-actions,
.language-nav {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: clamp(1rem, 2.2vw, 1.8rem);
}

.site-nav a,
.language-link {
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding-block: 0.35rem;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-600);
  content: "";
  transition: inset 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.language-link:hover {
  color: var(--blue-700);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.nav-actions {
  gap: 0.75rem;
}

.language-nav {
  gap: 0.35rem;
  padding: 0.28rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
}

.language-link {
  min-width: 2.1rem;
  padding: 0.25rem 0.52rem;
  border-radius: 99px;
  text-align: center;
}

.language-link[aria-current="true"] {
  background: var(--blue-100);
  color: var(--ink-900);
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink-950);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.24rem auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.38rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 99px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgb(15 103 232 / 24%);
  color: var(--paper);
}

.button--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 34px rgb(15 103 232 / 30%);
  color: var(--paper);
}

.button--secondary {
  border-color: var(--line-strong);
  background: var(--paper);
  color: var(--ink-900);
}

.button--secondary:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
  color: var(--blue-700);
}

.button--light {
  background: var(--paper);
  box-shadow: 0 16px 36px rgb(0 0 0 / 18%);
  color: var(--ink-950);
}

.button--light:hover {
  color: var(--blue-700);
}

.button--ghost-light {
  border-color: rgb(255 255 255 / 32%);
  color: var(--paper);
}

.button--ghost-light:hover {
  border-color: rgb(255 255 255 / 70%);
  color: var(--paper);
}

.button svg,
.text-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 7.5vh, 6.5rem) 0;
  background:
    radial-gradient(circle at 85% 20%, rgb(38 132 255 / 17%), transparent 31rem),
    radial-gradient(circle at 15% 90%, rgb(242 170 63 / 12%), transparent 27rem),
    linear-gradient(180deg, #f7fbff 0%, #fff 72%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(15 103 232 / 9%);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -20rem;
  right: -10rem;
  width: 48rem;
  height: 48rem;
}

.hero::after {
  top: -8rem;
  right: 1rem;
  width: 28rem;
  height: 28rem;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(3.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 1.05fr);
}

.hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
  overflow-wrap: break-word;
}

.hero-copy h1 span {
  color: var(--blue-600);
}

.hero-copy .lead {
  max-width: 37rem;
  margin-bottom: 2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-note::before {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 5px rgb(239 35 60 / 10%);
  content: "";
}

.product-stage {
  position: relative;
  min-height: 35rem;
  perspective: 1200px;
}

.stage-glow {
  position: absolute;
  inset: 8% 3% 8% 5%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgb(38 132 255 / 21%), rgb(142 199 255 / 8%));
  filter: blur(2px);
}

.product-window {
  position: absolute;
  inset: 2.5rem 0 auto 1rem;
  overflow: hidden;
  border: 1px solid rgb(185 201 217 / 74%);
  border-radius: 1.6rem;
  background: rgb(255 255 255 / 96%);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-4deg) rotateX(1.5deg);
  transform-origin: 50% 80%;
}

.window-bar {
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.window-dots {
  display: flex;
  gap: 0.38rem;
}

.window-dots span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--line-strong);
}

.window-dots span:first-child {
  background: var(--red-500);
}

.window-title {
  color: var(--ink-600);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.window-body {
  display: grid;
  min-height: 28rem;
  grid-template-columns: 4.4rem 1fr;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  background: var(--ink-950);
}

.mock-sidebar .mini-mark {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.4rem;
  object-fit: contain;
}

.mock-sidebar i {
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid rgb(255 255 255 / 28%);
  border-radius: 0.38rem;
}

.mock-sidebar i.active {
  border-color: var(--blue-300);
  background: rgb(142 199 255 / 22%);
  box-shadow: 0 0 0 0.45rem rgb(142 199 255 / 8%);
}

.mock-main {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--mist);
}

.mock-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.mock-kicker {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue-700);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-heading strong {
  color: var(--ink-950);
  font-size: 1.1rem;
}

.mock-status {
  padding: 0.32rem 0.7rem;
  border-radius: 99px;
  background: #dff6ee;
  color: var(--success);
  font-size: 0.65rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--paper);
  box-shadow: 0 5px 20px rgb(16 49 85 / 5%);
}

.metric span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--ink-950);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.mock-workflow {
  margin-top: 0.85rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--paper);
}

.workflow-label {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--ink-800);
  font-size: 0.7rem;
  font-weight: 800;
}

.workflow-track {
  position: relative;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(4, 1fr);
}

.workflow-track::before {
  position: absolute;
  top: 0.55rem;
  right: 9%;
  left: 9%;
  height: 2px;
  background: var(--blue-100);
  content: "";
}

.workflow-stop {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 700;
  text-align: center;
}

.workflow-stop::before {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0 auto 0.45rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--blue-100);
  box-shadow: 0 0 0 1px var(--line);
  content: "";
}

.workflow-stop.done::before {
  background: var(--blue-600);
}

.workflow-stop.current::before {
  background: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500), 0 0 0 5px var(--gold-100);
}

.mock-list {
  margin-top: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--paper);
}

.mock-row {
  display: grid;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-top: 1px solid var(--line);
  grid-template-columns: 2.3rem 1fr auto;
}

.mock-row:first-child {
  border-top: 0;
}

.mock-thumb {
  width: 2.3rem;
  height: 2rem;
  border-radius: 0.45rem;
  background: linear-gradient(140deg, var(--blue-100), #c9d8e7);
}

.mock-copy b,
.mock-copy span {
  display: block;
}

.mock-copy b {
  color: var(--ink-800);
  font-size: 0.66rem;
}

.mock-copy span,
.mock-row > span {
  color: var(--muted);
  font-size: 0.55rem;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 14rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(185 201 217 / 78%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-card--top {
  top: 0;
  right: -1.25rem;
}

.floating-card--bottom {
  right: 1rem;
  bottom: 0;
}

.floating-icon {
  display: grid;
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 800;
}

.floating-card--bottom .floating-icon {
  background: var(--gold-100);
  color: #7f4c00;
}

.floating-card b,
.floating-card span {
  display: block;
}

.floating-card b {
  color: var(--ink-950);
  font-size: 0.82rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.7rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 7rem;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 3vw, 2.25rem);
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-number {
  display: grid;
  flex: none;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-700);
  font-weight: 800;
}

.trust-item b,
.trust-item span {
  display: block;
}

.trust-item b {
  color: var(--ink-950);
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: clamp(4rem, 7.5vh, 6.75rem) 0;
}

.section--soft {
  background: var(--mist);
}

.section--blue {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  color: #dce9f7;
}

.section--blue h2,
.section--blue h3 {
  color: var(--paper);
}

.section--cream {
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: clamp(2.25rem, 4.5vh, 3.75rem);
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.section-heading .lead {
  max-width: 32rem;
  margin-bottom: 0.4rem;
}

.benefit-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  position: relative;
  isolation: isolate;
  min-height: 23rem;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.benefit-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.benefit-card::after {
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -6rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: var(--blue-050);
  content: "";
}

.benefit-card:nth-child(2)::after {
  background: var(--gold-100);
}

.benefit-card:nth-child(3)::after {
  background: #ffe8eb;
}

.card-icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 4rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--blue-100);
  color: var(--blue-700);
}

.benefit-card:nth-child(2) .card-icon {
  background: var(--gold-100);
  color: #87520a;
}

.benefit-card:nth-child(3) .card-icon {
  background: #ffe8eb;
  color: var(--red-600);
}

.card-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.benefit-card h3 {
  margin-bottom: 0.85rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.steps::before {
  position: absolute;
  top: 2.15rem;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgb(142 199 255 / 28%);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 0 1.1rem;
}

.step-number {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  margin-bottom: 1.7rem;
  place-items: center;
  border: 1px solid rgb(142 199 255 / 35%);
  border-radius: 50%;
  background: var(--ink-950);
  box-shadow: 0 0 0 0.55rem var(--ink-950);
  color: var(--blue-300);
  font-size: 0.78rem;
  font-weight: 800;
}

.step-card p {
  margin-bottom: 0;
  color: #a9bdd1;
}

.workflow-tabs {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
}

.tab-list {
  display: grid;
  gap: 0.65rem;
}

.tab-button {
  position: relative;
  width: 100%;
  padding: 1.1rem 3rem 1.1rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 760;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tab-button::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--blue-600);
  content: "\2192";
  opacity: 0;
  transform: translate(-0.5rem, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.tab-button:hover {
  color: var(--ink-900);
}

.tab-button[aria-selected="true"] {
  border-color: var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  color: var(--ink-950);
}

.tab-button[aria-selected="true"]::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel {
  animation: panel-in 320ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-card {
  min-height: 30rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.panel-copy {
  padding: clamp(2rem, 5vw, 3.5rem);
}

.panel-copy h3 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
}

.panel-copy > p {
  max-width: 40rem;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 1.8rem 0 0;
  padding: 0;
  gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-800);
  font-weight: 680;
}

.check-list li::before {
  display: grid;
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  content: "\2713";
  font-size: 0.75rem;
  font-weight: 900;
}

.panel-visual {
  display: grid;
  min-height: 10rem;
  padding: 1.5rem clamp(2rem, 5vw, 3.5rem);
  place-items: center;
  background:
    linear-gradient(120deg, rgb(15 103 232 / 97%), rgb(7 82 190 / 97%)),
    var(--blue-700);
  color: var(--paper);
}

.panel-flow {
  display: grid;
  width: 100%;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.panel-flow span {
  padding: 0.85rem;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 0.8rem;
  background: rgb(255 255 255 / 10%);
  font-size: 0.8rem;
  font-weight: 750;
  text-align: center;
}

.panel-flow i {
  font-style: normal;
  opacity: 0.75;
}

.canadian-block {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: clamp(2.3rem, 6vw, 5rem);
  border: 1px solid #f0dbc1;
  border-radius: var(--radius-xl);
  background: var(--cream);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
}

.canadian-block::after {
  position: absolute;
  top: -11rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgb(217 19 36 / 11%);
  border-radius: 50%;
  content: "";
}

.canadian-mark-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 21rem;
  place-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--ink-950), var(--ink-800));
  box-shadow: var(--shadow-md);
}

.canadian-mark-wrap::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 1.5rem;
  content: "";
}

.canadian-mark {
  position: relative;
  z-index: 1;
  width: min(15rem, 72%);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgb(0 0 0 / 30%));
}

.canadian-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
}

.canadian-copy .lead {
  margin-bottom: 1.6rem;
}

.canadian-points {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.65rem;
  list-style: none;
}

.canadian-points li {
  display: flex;
  gap: 0.65rem;
  color: var(--ink-800);
  font-weight: 700;
}

.canadian-points li::before {
  color: var(--red-600);
  content: "\2726";
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 15%, rgb(142 199 255 / 35%), transparent 18rem),
    linear-gradient(135deg, var(--ink-950), #0a4a99);
  box-shadow: var(--shadow-lg);
  color: #dce9f7;
}

.cta-band::after {
  position: absolute;
  z-index: -1;
  right: -9rem;
  bottom: -13rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  content: "";
}

.cta-band h2 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  color: var(--paper);
}

.cta-band p {
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: 1.15rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 82% 25%, rgb(38 132 255 / 17%), transparent 27rem),
    linear-gradient(180deg, var(--blue-050), var(--paper));
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.page-hero .lead {
  max-width: 46rem;
}

.page-hero--compact {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-layout,
.support-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
}

.quote-card,
.contact-card,
.support-card,
.privacy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.quote-card {
  padding: clamp(2rem, 5vw, 3.5rem);
}

.quote-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.quote-card > p {
  color: var(--muted);
}

.quote-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.quote-list li {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 2.4rem 1fr;
}

.quote-list li:first-child {
  border-top: 0;
}

.quote-list .list-number {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  grid-row: span 2;
}

.quote-list b {
  color: var(--ink-950);
}

.quote-list span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card,
.support-card {
  padding: 1.65rem;
}

.contact-card--accent {
  border-color: var(--blue-300);
  background: linear-gradient(145deg, var(--blue-050), var(--paper));
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  color: var(--ink-950);
  font-size: 1.05rem;
  font-weight: 760;
}

a.contact-value[aria-disabled="true"] {
  color: var(--ink-700);
  cursor: default;
  text-decoration: none;
}

.contact-detail {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.privacy-notice {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--blue-300);
  border-radius: var(--radius-sm);
  background: var(--blue-050);
  color: var(--ink-800);
}

.support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.support-card {
  min-height: 13rem;
}

.support-card h2,
.support-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-layout {
  display: grid;
  align-items: start;
  gap: 3rem;
  grid-template-columns: minmax(12rem, 0.3fr) minmax(0, 0.7fr);
}

.privacy-nav {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 0.5rem;
}

.privacy-nav a {
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.privacy-nav a:hover {
  color: var(--blue-700);
}

.privacy-card {
  padding: clamp(1.7rem, 5vw, 3.5rem);
}

.privacy-card section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.privacy-card section:first-child {
  padding-top: 0;
  border-top: 0;
}

.privacy-card section:last-child {
  padding-bottom: 0;
}

.privacy-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.privacy-card p:last-child,
.privacy-card ul:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--ink-950);
  color: #a9bdd1;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  grid-template-columns: minmax(16rem, 1.5fr) repeat(3, minmax(8rem, 0.5fr));
}

.footer-brand {
  color: var(--paper);
}

.footer-brand:hover {
  color: var(--paper);
}

.footer-copy {
  max-width: 24rem;
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  width: fit-content;
  margin-top: 0.65rem;
  color: #a9bdd1;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.canada-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.canada-signature::before {
  color: #ff6676;
  content: "\2726";
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(1.5rem);
}

.motion-ready .reveal {
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.motion-ready .reveal[data-delay="2"] {
  transition-delay: 180ms;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 180ms ease both page-out;
}

::view-transition-new(root) {
  animation: 280ms ease both page-in;
}

@keyframes page-out {
  to {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }
}

@media (min-width: 68.0625rem) {
  .home-page .hero {
    display: grid;
    min-height: calc(100svh - 12.25rem);
    align-items: center;
  }

  .home-page .hero-copy h1 {
    max-width: 12ch;
  }

  .home-page main > .section {
    display: grid;
    min-height: calc(100svh - 5.25rem);
    align-items: center;
  }
}

@media (min-width: 68.0625rem) and (max-height: 64rem) {
  .home-page .hero {
    min-height: calc(100svh - 11.4375rem);
    padding-block: 1.75rem;
  }

  .home-page .hero-copy h1 {
    margin-bottom: 1rem;
    font-size: clamp(3.6rem, 8.5vh, 4.7rem);
  }

  .home-page .hero-copy .lead {
    margin-bottom: 1.25rem;
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .home-page .hero-note {
    margin-top: 1rem;
  }

  .home-page .product-stage {
    min-height: 28rem;
  }

  .home-page .product-window {
    inset: 1.25rem 0 auto 1rem;
  }

  .home-page .window-body {
    min-height: 22rem;
  }

  .home-page .mock-main {
    padding: 1.1rem;
  }

  .home-page .trust-item {
    min-height: 6rem;
    padding-block: 1rem;
  }

  .home-page main > .section {
    padding-block: 2.25rem;
  }

  .home-page .section-heading {
    margin-bottom: 2rem;
  }

  .home-page .section-heading h2,
  .home-page .canadian-copy h2 {
    font-size: 3.25rem;
  }

  .home-page .section-heading .lead,
  .home-page .canadian-copy .lead {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .home-page .benefit-card {
    min-height: 18rem;
    padding: 1.5rem;
  }

  .home-page .card-icon {
    margin-bottom: 2rem;
  }

  .home-page .step-number {
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1.2rem;
  }

  .home-page .step-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .home-page .panel-card {
    min-height: 22rem;
  }

  .home-page .panel-copy {
    padding: 1.5rem 2rem;
  }

  .home-page .panel-copy h3 {
    margin-bottom: 0.65rem;
    font-size: 1.9rem;
  }

  .home-page .panel-copy > p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .home-page .check-list {
    margin-top: 1rem;
    gap: 0.45rem;
  }

  .home-page .panel-visual {
    min-height: 5.5rem;
    padding: 0.75rem 1.5rem;
  }

  .home-page .canadian-block {
    gap: 3rem;
    padding: 2rem 3rem;
  }

  .home-page .canadian-mark-wrap {
    min-height: 17rem;
  }

  .home-page .canadian-mark {
    width: min(12rem, 68%);
  }

  .home-page .canadian-copy .lead {
    margin-bottom: 1.1rem;
  }

  .home-page .canadian-points {
    gap: 0.4rem;
  }

  .home-page .cta-band {
    padding: 3rem 4rem;
  }

  .home-page .cta-band h2 {
    font-size: 3.5rem;
  }
}

@media (min-width: 68.0625rem) and (max-height: 52rem) {
  .home-page .panel-visual {
    display: none;
  }
}

@media (max-width: 68rem) {
  :root {
    --page: min(100% - 2rem, 62rem);
  }

  .nav-panel {
    position: fixed;
    top: 5.25rem;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 5.25rem);
    overflow: auto;
    align-items: stretch;
    padding: 1.25rem var(--page) 2rem;
    border-bottom: 1px solid var(--line);
    background: rgb(255 255 255 / 98%);
    box-shadow: var(--shadow-md);
  }

  .nav-panel.is-open {
    display: grid;
    justify-content: stretch;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .nav-actions {
    display: grid;
    align-items: stretch;
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-actions {
    grid-template-columns: 1fr auto;
  }

  .nav-actions .button {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 47rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .product-stage {
    width: min(100%, 43rem);
    margin-inline: auto;
  }

  .section-heading {
    display: grid;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .card-icon {
    margin-bottom: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .workflow-tabs,
  .canadian-block {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .tab-button {
    padding-right: 1.15rem;
    text-align: center;
  }

  .tab-button::after {
    display: none;
  }

  .contact-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
  }
}

@media (max-width: 46rem) {
  :root {
    --page: min(100% - 1.3rem, 40rem);
  }

  html {
    scroll-padding-top: 5.2rem;
  }

  .nav-wrap {
    min-height: 4.75rem;
  }

  .nav-panel {
    top: 4.75rem;
    max-height: calc(100vh - 4.75rem);
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-domain {
    display: none;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .product-stage {
    min-height: 30rem;
  }

  .product-window {
    inset: 2rem 0 auto;
    transform: none;
  }

  .window-body {
    min-height: 24rem;
    grid-template-columns: 3.4rem 1fr;
  }

  .mock-main {
    padding: 1rem;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:last-child {
    display: none;
  }

  .floating-card {
    min-width: 0;
  }

  .floating-card--top {
    right: 0;
  }

  .floating-card--bottom {
    right: auto;
    bottom: -0.3rem;
    left: 0.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .steps,
  .tab-list,
  .check-list,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    display: grid;
    column-gap: 1.2rem;
    grid-template-columns: auto 1fr;
  }

  .step-number {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0;
    grid-row: span 2;
  }

  .panel-card {
    border-radius: var(--radius-lg);
  }

  .panel-flow {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .panel-flow i {
    transform: rotate(90deg);
  }

  .canadian-block,
  .cta-band {
    border-radius: var(--radius-lg);
  }

  .canadian-mark-wrap {
    min-height: 17rem;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-nav {
    position: static;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--mist);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 28rem) {
  .mock-list {
    display: none;
  }

  .product-stage {
    min-height: 27rem;
  }

  .floating-card--bottom {
    right: 0;
    left: 0;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .benefit-card,
  .panel-card,
  .canadian-block,
  .cta-band,
  .contact-card,
  .support-card,
  .privacy-card {
    border: 2px solid CanvasText;
  }

  .eyebrow::before,
  .hero-note::before,
  .workflow-stop::before {
    background: CanvasText;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .cta-band,
  .privacy-nav {
    display: none;
  }

  body {
    color: #000;
  }

  .page-hero,
  .section,
  .privacy-card {
    padding: 1rem 0;
    background: #fff;
    box-shadow: none;
  }
}
