:root {
  color-scheme: light;
  --ink: #101c2b;
  --muted: #526174;
  --navy: #14263f;
  --navy-2: #0c1a2a;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #d7e0ea;
  --blue: #0878c9;
  --blue-dark: #005fa8;
  --lime: #c7ff4f;
  --lime-dark: #355900;
  --teal: #078575;
  --coral: #c73232;
  --amber: #9c5b00;
  --shadow: 0 24px 70px rgba(15, 31, 49, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 3px solid #73cfff;
  outline-offset: 3px;
}

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.nav-shell,
.section-inner,
.footer-inner,
.legal-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.nav-language {
  color: #2f3d50;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: var(--white);
  background: var(--blue-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #004d8a;
}

.button-secondary {
  border-color: #9eabba;
  color: var(--ink);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
}

.icon-button {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  content: "";
  background: var(--lime-dark);
}

.hero {
  overflow: hidden;
  padding: 82px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #33465b;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-claim {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-facts svg {
  width: 17px;
  color: var(--teal);
}

.hero-product {
  position: relative;
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.desktop-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid #aab8c7;
  border-radius: 8px 8px 0 0;
  background: #f3f6fa;
  box-shadow: var(--shadow);
}

.desktop-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.phone-shot {
  position: absolute;
  right: 4.5%;
  bottom: -54px;
  width: min(22%, 250px);
  overflow: hidden;
  border: 7px solid var(--navy-2);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(12, 26, 42, 0.28);
  margin: 0;
}

.phone-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
}

.hero-proof {
  position: relative;
  margin-top: 0;
  padding: 28px 0;
  color: var(--white);
  background: var(--navy);
}

.proof-grid {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 720;
}

.proof-grid svg {
  width: 19px;
  color: var(--lime);
}

.section {
  padding: 100px 0;
}

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

.section-dark {
  color: var(--white);
  background: var(--navy-2);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.video-overview {
  background: var(--white);
}

.video-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

.video-overview .section-heading {
  margin-bottom: 0;
}

.video-overview .button {
  margin-top: 18px;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid #aab8c7;
  border-radius: 8px;
  background: var(--navy-2);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.section-dark .section-heading p:last-child {
  color: #b8c8d9;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.workflow-step {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.workflow-step strong {
  display: block;
  margin-bottom: 34px;
  color: var(--blue-dark);
  font-size: 0.76rem;
}

.workflow-step svg {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--teal);
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 70px;
}

.feature-band + .feature-band {
  margin-top: 110px;
}

.feature-band.reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.84fr);
}

.feature-band.reverse .feature-copy {
  order: 2;
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.feature-list svg {
  width: 21px;
  color: var(--teal);
}

.feature-list strong {
  display: block;
}

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

.screen-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #acbac9;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 55px rgba(16, 28, 43, 0.14);
  margin: 0;
}

.screen-frame img {
  width: 100%;
  height: auto;
}

.screen-frame.desktop img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.screen-frame.phone {
  width: min(100%, 340px);
  margin-inline: auto;
  border: 6px solid var(--navy-2);
  border-radius: 26px;
}

.screen-frame.phone img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
}

.dual-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr);
  align-items: end;
  gap: 18px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #43546a;
  border-left: 1px solid #43546a;
}

.role-item {
  padding: 28px;
  border-right: 1px solid #43546a;
  border-bottom: 1px solid #43546a;
}

.role-item svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--lime);
}

.role-item p {
  margin-bottom: 0;
  color: #bdcad8;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle {
  padding-top: 22px;
  border-top: 3px solid var(--blue);
}

.principle:nth-child(2) {
  border-color: var(--teal);
}

.principle:nth-child(3) {
  border-color: var(--lime-dark);
}

.principle svg {
  width: 28px;
  margin-bottom: 18px;
  color: var(--blue-dark);
}

.principle p {
  color: var(--muted);
}

.plans-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 38px;
}

.currency-control {
  display: grid;
  gap: 7px;
  min-width: 220px;
}

.currency-control label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.currency-control select {
  min-height: 44px;
  padding: 0 36px 0 12px;
  border: 1px solid #97a7b8;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.plan {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan.featured {
  border: 2px solid var(--blue-dark);
}

.plan-label {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 8px;
  color: var(--lime-dark);
  background: var(--lime);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan h3 {
  font-size: 1.35rem;
}

.plan-price {
  display: block;
  margin: 20px 0 4px;
  font-size: 1.72rem;
  font-weight: 850;
}

.plan-period,
.plan-note,
.pricing-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.plan-storage {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.pricing-note {
  margin: 24px 0 0;
}

.retention-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.retention-timeline {
  border-top: 1px solid #43546a;
}

.retention-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #43546a;
}

.retention-row strong {
  color: var(--lime);
}

.retention-row p {
  margin: 0;
  color: #c4d0dc;
}

.cta-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--blue-dark);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 10px;
}

.cta-inner p {
  margin-bottom: 0;
  color: #d6ebfa;
}

.cta-inner .button {
  color: var(--ink);
  background: var(--lime);
}

.site-footer {
  color: #d6e0eb;
  background: var(--navy-2);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 44px;
  padding: 58px 0 42px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  color: #9fb0c2;
}

.site-footer .brand small {
  color: #9fb0c2;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-column a {
  color: #b8c6d5;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--lime);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #35465a;
  color: #96a7b9;
  font-size: 0.8rem;
}

/* Legal center */
.legal-hero {
  padding: 76px 0 58px;
  color: var(--white);
  background: var(--navy-2);
}

.legal-hero .eyebrow {
  color: var(--lime);
}

.legal-hero .eyebrow::before {
  background: var(--lime);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.legal-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #becddd;
  font-size: 1.1rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.operator-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.operator-card h2 {
  font-size: 1.5rem;
}

.identity-list {
  margin: 24px 0 0;
}

.identity-list div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.identity-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.identity-list dd {
  margin: 3px 0 0;
  font-weight: 720;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  font-size: 1.7rem;
}

.legal-content h3 {
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  color: #3f5064;
}

.legal-content ul {
  padding-left: 22px;
}

.document-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.document-link {
  min-height: 88px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.document-link:hover,
.document-link:focus-visible {
  border-color: var(--blue);
}

.document-link svg {
  width: 23px;
  color: var(--blue-dark);
}

.document-link strong,
.document-link small {
  display: block;
}

.document-link small {
  margin-top: 4px;
  color: var(--muted);
}

.policy-callout {
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  background: #edf7f5;
}

.policy-callout p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 35px rgba(16, 28, 43, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-actions {
    display: none;
  }

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

  .feature-band,
  .feature-band.reverse,
  .video-overview-grid,
  .retention-band,
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .feature-band.reverse .feature-copy {
    order: 0;
  }

  .dual-product {
    max-width: 820px;
  }
}

/* Customer-facing desktop scale. Keep app previews compact, but give the
   surrounding site the reading size and canvas expected on modern displays. */
@media (min-width: 1200px) {
  :root {
    --max: 1480px;
  }

  html {
    font-size: 18px;
  }

  .site-header,
  .nav-shell {
    min-height: 86px;
  }

  .nav-shell {
    gap: 36px;
  }

  .brand {
    gap: 13px;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-radius: 9px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .site-nav {
    gap: 34px;
  }

  .site-nav a,
  .nav-language {
    font-size: 0.94rem;
  }

  .button {
    min-height: 50px;
    padding-inline: 22px;
  }

  .button-large {
    min-height: 58px;
    padding-inline: 28px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-copy {
    max-width: 1120px;
    margin-bottom: 58px;
  }

  .hero-copy h1 {
    font-size: 7.25rem;
  }

  .hero-lead {
    max-width: 920px;
  }

  .hero-product {
    width: min(calc(100% - 56px), 1540px);
  }

  .hero-proof {
    min-height: 76px;
  }

  .section {
    padding-block: 132px;
  }

  .section-heading {
    max-width: 920px;
  }

  .section-heading p:last-child {
    max-width: 820px;
  }

  .workflow-grid p,
  .feature-copy p,
  .feature-list,
  .role-copy p,
  .principle-grid p,
  .plan-card p,
  .footer-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .section-inner,
  .footer-inner,
  .legal-shell,
  .proof-grid,
  .hero-product {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-shell {
    min-height: 64px;
  }

  .site-nav {
    inset: 64px 0 auto;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-copy {
    margin-bottom: 34px;
    text-align: left;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 2.8rem;
    overflow-wrap: anywhere;
  }

  .hero-copy .eyebrow {
    font-size: 0.7rem;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-facts {
    justify-content: flex-start;
  }

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

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

  .desktop-shot {
    display: none;
  }

  .phone-shot {
    position: static;
    width: min(78%, 340px);
    margin-inline: auto;
    border-width: 6px;
  }

  .hero-proof {
    margin-top: 30px;
  }

  .proof-grid,
  .workflow-grid,
  .role-grid,
  .principle-grid,
  .plan-grid,
  .footer-main,
  .document-links {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    gap: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .workflow-step {
    min-height: 0;
  }

  .feature-band + .feature-band {
    margin-top: 78px;
  }

  .dual-product {
    grid-template-columns: 1fr;
  }

  .dual-product .screen-frame.phone {
    width: min(76%, 310px);
  }

  .plans-head,
  .cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .currency-control {
    min-width: 0;
  }

  .retention-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-legal {
    display: grid;
  }
}

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