@font-face {
  font-family: "PageFlow Sans";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PageFlow Sans";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "PageFlow Sans";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PageFlow Sans";
  src: url("../fonts/Roboto-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #071827;
  --navy-soft: #10283a;
  --navy-muted: #17384a;
  --teal: #22c9b8;
  --teal-dark: #007d75;
  --teal-pale: #d9f7f2;
  --coral: #ff7866;
  --coral-pale: #ffe7e2;
  --paper: #f5f7f4;
  --surface: #ffffff;
  --ink: #10202a;
  --muted: #637178;
  --mist: #e2e9e7;
  --line: #d6dfdc;
  --shadow: 0 24px 70px rgba(7, 24, 39, 0.13);
  --shadow-soft: 0 14px 36px rgba(7, 24, 39, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "PageFlow Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

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

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

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--navy);
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid CanvasText;
    box-shadow: none;
  }
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 12px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(214, 223, 220, 0.82);
  background: rgba(245, 247, 244, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.7px;
  text-decoration: none;
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(7, 24, 39, 0.13);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 12px;
  color: #405057;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--navy);
}

.language-switch {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
}

.language-switch a {
  min-width: 39px;
  padding: 5px 9px;
  text-align: center;
}

.language-switch a[aria-current="true"] {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(34, 201, 184, 0.16), transparent 28%),
    radial-gradient(circle at 15% 82%, rgba(255, 120, 102, 0.12), transparent 30%),
    var(--navy);
  color: #fff;
}

.hero::before,
.page-hero::before {
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -180px;
  right: -80px;
}

.hero-grid {
  display: grid;
  min-height: 710px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  padding-block: 74px 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(34, 201, 184, 0.14);
  color: #aaf3eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(34, 201, 184, 0.12);
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 .accent {
  color: var(--teal);
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #c8d3d7;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(34, 201, 184, 0.2);
}

.button-primary:hover {
  background: #42d7c8;
  color: var(--navy);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-dark:hover {
  background: var(--navy-soft);
  color: #fff;
}

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

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: #adbbc0;
  font-size: 14px;
  font-weight: 700;
}

.platform-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.platform-row span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 430px);
  justify-self: center;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 340px);
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48px;
  background: #05131f;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.phone-frame::before {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 50%;
  width: 92px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #04101a;
  content: "";
}

.phone-frame img {
  width: 100%;
  border-radius: 39px;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(16, 40, 58, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.27);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.float-card.top {
  top: 76px;
  right: -18px;
}

.float-card.bottom {
  bottom: 74px;
  left: -30px;
}

.float-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(34, 201, 184, 0.15);
  color: var(--teal);
  font-size: 19px;
}

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

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

.trust-item {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  text-align: left;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon,
.feature-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
}

.trust-icon {
  width: 46px;
  height: 46px;
  background: var(--teal-pale);
  color: var(--teal-dark);
}

.trust-icon svg,
.feature-icon svg {
  width: 23px;
  height: 23px;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.trust-item span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-block: clamp(76px, 10vw, 124px);
}

.section-white {
  background: var(--surface);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .kicker {
  color: var(--teal);
}

.section-heading h2,
.feature-copy h2,
.showcase-copy h2,
.privacy-copy h2,
.cta-panel h2,
.support-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-dark .section-heading h2,
.section-dark .showcase-copy h2,
.cta-panel h2 {
  color: #fff;
}

.section-heading p,
.feature-copy > p,
.showcase-copy > p,
.privacy-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.section-dark .section-heading p,
.section-dark .showcase-copy > p {
  color: #bdc9cd;
}

.primary-features {
  display: grid;
  gap: 36px;
}

.feature-split {
  display: grid;
  min-height: 550px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-split.reverse {
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1fr);
}

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

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px);
}

.feature-number {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 16px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
}

.feature-split.reverse .feature-number {
  background: var(--coral-pale);
  color: #bb493a;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: #34474f;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.feature-media {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: end center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(34, 201, 184, 0.34), transparent 38%),
    var(--navy-soft);
}

.feature-split.reverse .feature-media {
  background:
    radial-gradient(circle at 48% 25%, rgba(255, 120, 102, 0.27), transparent 38%),
    #132b3a;
}

.feature-media img {
  width: min(72%, 305px);
  margin-top: 42px;
  border: 8px solid #061522;
  border-bottom: 0;
  border-radius: 39px 39px 0 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

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

.step-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.step-card::after {
  position: absolute;
  right: -18px;
  bottom: -52px;
  color: rgba(7, 24, 39, 0.045);
  content: attr(data-step);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
}

.step-label {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-card h3,
.feature-card h3,
.support-card h2,
.contact-card h2 {
  margin: 22px 0 9px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.step-card p,
.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

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

.feature-card {
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  color: var(--teal-dark);
}

.feature-card:nth-child(2n) .feature-icon {
  background: var(--coral-pale);
  color: #bb493a;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.showcase-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.showcase-point {
  display: flex;
  gap: 14px;
}

.showcase-point span:first-child {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 12px;
  background: rgba(34, 201, 184, 0.13);
  color: var(--teal);
  font-weight: 900;
}

.showcase-point strong {
  display: block;
  color: #fff;
}

.showcase-point small {
  color: #aebcc1;
  font-size: 15px;
}

.screens-stack {
  position: relative;
  min-height: 620px;
}

.screen-card {
  position: absolute;
  width: min(56%, 300px);
  overflow: hidden;
  border: 8px solid #06131e;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.42);
}

.screen-card:first-child {
  top: 20px;
  left: 7%;
  transform: rotate(-5deg);
}

.screen-card:last-child {
  right: 7%;
  bottom: 0;
  transform: rotate(5deg);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid #c5e8e2;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #e4faf6, #f8fffd);
}

.privacy-symbol {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 24px;
  background: var(--navy);
  color: var(--teal);
}

.privacy-symbol svg {
  width: 38px;
  height: 38px;
}

.privacy-copy h2 {
  font-size: clamp(30px, 3vw, 43px);
}

.privacy-copy > p {
  max-width: 720px;
  font-size: 17px;
}

.privacy-panel .button {
  white-space: nowrap;
}

.cta-section {
  padding-block: 28px 100px;
}

.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(42px, 7vw, 74px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 20%, rgba(34, 201, 184, 0.24), transparent 28%),
    var(--navy);
  color: #fff;
}

.cta-panel::after {
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -155px;
  width: 350px;
  height: 350px;
  border: 70px solid rgba(255, 120, 102, 0.09);
  border-radius: 50%;
  content: "";
}

.cta-panel p {
  max-width: 640px;
  margin: 18px 0 0;
  color: #bfccd0;
  font-size: 19px;
}

.site-footer {
  padding-block: 52px 28px;
  border-top: 1px solid var(--line);
  background: #edf1ee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-about {
  max-width: 400px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #4f5f66;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #6a777c;
  font-size: 13px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 92px 94px;
  background:
    radial-gradient(circle at 82% 28%, rgba(34, 201, 184, 0.16), transparent 26%),
    var(--navy);
  color: #fff;
}

.page-hero::before {
  right: -120px;
  bottom: -240px;
  width: 460px;
  height: 460px;
  border-width: 76px;
  border-color: rgba(255, 120, 102, 0.08);
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 70px);
}

.page-hero p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #c0cdd1;
  font-size: 20px;
}

.page-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #91a5ac;
  font-size: 14px;
  font-weight: 700;
}

.page-hero .breadcrumb a {
  color: var(--teal);
}

.content-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  justify-content: center;
  gap: clamp(36px, 7vw, 86px);
}

.toc {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.toc strong {
  display: block;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.toc nav {
  display: grid;
  gap: 8px;
}

.toc a {
  color: #58686f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.toc a:hover {
  color: var(--teal-dark);
}

.prose {
  min-width: 0;
}

.prose section + section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.prose h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.prose h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.prose p,
.prose li {
  color: #43545b;
}

.prose ul {
  padding-left: 24px;
}

.prose li + li {
  margin-top: 8px;
}

.notice {
  margin: 0 0 36px;
  padding: 22px 24px;
  border: 1px solid #c4e8e1;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  color: #234c4a;
}

.meta-line {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #b8c6ca;
  font-size: 13px;
  font-weight: 700;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
  gap: 30px;
}

.support-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.support-card {
  padding: clamp(30px, 5vw, 52px);
}

.support-card h2,
.contact-card h2 {
  margin-top: 0;
}

.support-card > p,
.contact-card > p {
  color: var(--muted);
}

.contact-card {
  padding: 32px;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #aebbb8;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-field input {
  min-height: 48px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 170px;
  padding: 12px 13px;
  line-height: 1.5;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--teal-dark);
}

.form-required,
.form-privacy,
.form-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.form-required,
.form-privacy {
  color: var(--muted);
}

.form-privacy a {
  font-weight: 700;
}

.form-status {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.form-status.is-pending {
  background: var(--teal-pale);
  color: var(--navy);
}

.form-status.is-success {
  border: 1px solid #8dd9cd;
  background: #e4faf6;
  color: #075f59;
}

.form-status.is-error {
  border: 1px solid #efb6aa;
  background: var(--coral-pale);
  color: #71372f;
}

.contact-card .button {
  width: 100%;
  margin-top: 0;
}

.contact-card .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.support-list {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  display: flex;
  gap: 12px;
  color: #43545b;
}

.support-list li::before {
  color: var(--teal-dark);
  content: "✓";
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fbfcfb;
}

.faq summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  color: var(--teal-dark);
  content: "+";
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.support-tip {
  margin-top: 30px;
  padding: 22px;
  border-radius: 18px;
  background: var(--coral-pale);
  color: #6d3b34;
}

@media (max-width: 980px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 70px 90px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(78%, 430px);
  }

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr 0.8fr;
  }

  .feature-split.reverse .feature-copy {
    order: initial;
  }

  .feature-split.reverse .feature-media {
    order: 2;
  }

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

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

  .screens-stack {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .privacy-panel {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .privacy-symbol {
    width: 70px;
    height: 70px;
  }

  .privacy-panel .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .toc {
    position: static;
  }

  .toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .language-switch {
    width: fit-content;
    margin: 8px 0 0;
  }

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

  .trust-item {
    justify-content: flex-start;
  }

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

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr;
  }

  .feature-media,
  .feature-split.reverse .feature-media {
    min-height: 480px;
    order: 2;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

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

  .contact-card {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand {
    font-size: 21px;
  }

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

  .hero-grid {
    gap: 58px;
    padding-block: 54px 76px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-lead,
  .section-heading p,
  .feature-copy > p,
  .showcase-copy > p {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    width: min(83%, 380px);
  }

  .float-card {
    padding: 11px 12px;
    font-size: 12px;
  }

  .float-card.top {
    right: -24px;
  }

  .float-card.bottom {
    left: -24px;
  }

  .section {
    padding-block: 72px;
  }

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

  .feature-copy {
    padding: 34px 26px 40px;
  }

  .feature-media,
  .feature-split.reverse .feature-media {
    min-height: 430px;
  }

  .feature-media img {
    width: min(74%, 275px);
  }

  .step-card,
  .feature-card,
  .support-card,
  .contact-card {
    padding: 26px;
  }

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

  .screens-stack {
    min-height: 500px;
  }

  .screen-card {
    width: 59%;
  }

  .screen-card:first-child {
    left: 3%;
  }

  .screen-card:last-child {
    right: 3%;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .privacy-panel .button {
    grid-column: auto;
  }

  .page-hero {
    padding-block: 66px 70px;
  }

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

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .toc,
  .hero-actions,
  .cta-section {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .page-hero {
    padding: 30px 0;
    background: #fff;
    color: #000;
  }

  .page-hero h1,
  .page-hero p,
  .prose h2,
  .prose h3,
  .prose p,
  .prose li {
    color: #000;
  }

  .section {
    padding: 30px 0;
  }
}
