:root {
  --bg: #edf7ff;
  --paper: #f8fcff;
  --paper-strong: #ffffff;
  --ink: #0b1f33;
  --muted: #51677d;
  --line: #c8dced;
  --green: #0ea5c8;
  --green-strong: #075985;
  --green-deep: #082f49;
  --red: #ff5a6b;
  --red-strong: #e03454;
  --rose: #dcecff;
  --amber: #ffd166;
  --mint: #d8f5ff;
  --blue: #2563eb;
  --blue-bright: #38bdf8;
  --blue-soft: #e0f2fe;
  --contrast-bg: #000000;
  --contrast-text: #ffffff;
  --contrast-accent: #00e5ff;
  --contrast-emphasis: #ffff00;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-heading: var(--font-body);
  --font-scale: 1;
  --focus-ring: var(--blue);
  --shadow: 0 28px 90px rgba(8, 47, 73, 0.2);
  --shadow-soft: 0 18px 50px rgba(8, 47, 73, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-text-scale="large"] {
  --font-scale: 1.15;
}

html[data-text-scale="largest"] {
  --font-scale: 1.3;
}

html[data-contrast="high"] {
  --bg: var(--contrast-bg);
  --paper: var(--contrast-bg);
  --paper-strong: var(--contrast-bg);
  --ink: var(--contrast-text);
  --muted: var(--contrast-emphasis);
  --line: var(--contrast-accent);
  --green: var(--contrast-accent);
  --green-strong: var(--contrast-accent);
  --green-deep: var(--contrast-bg);
  --red: #ff7a90;
  --red-strong: #ff7a90;
  --rose: var(--contrast-bg);
  --mint: var(--contrast-bg);
  --blue: var(--contrast-accent);
  --blue-bright: var(--contrast-accent);
  --blue-soft: var(--contrast-bg);
  --focus-ring: var(--contrast-emphasis);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(56, 189, 248, 0.38), transparent 28rem),
    radial-gradient(circle at 86% 3%, rgba(37, 99, 235, 0.26), transparent 24rem),
    radial-gradient(circle at 74% 72%, rgba(255, 209, 102, 0.22), transparent 22rem),
    linear-gradient(180deg, #f8fcff 0%, var(--bg) 42%, #e6f3ff 100%);
  color: var(--ink);
  font-size: calc(16px * var(--font-scale));
  font-family: var(--font-body), sans-serif;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-heading), sans-serif;
  letter-spacing: 0;
}

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

html[data-contrast="high"] body {
  background: var(--contrast-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  background: var(--green-deep);
  border-radius: 0 0 14px 14px;
  color: #ffffff;
  font-weight: 700;
  left: 24px;
  padding: 12px 18px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  transition: transform 180ms ease;
  z-index: 1000;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.plan:focus-within {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

#main-content:focus {
  outline: none;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(248, 252, 255, 0.92);
  border-bottom: 1px solid rgba(200, 220, 237, 0.78);
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.08);
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 54px;
  overflow: visible;
  padding: 6px clamp(14px, 3vw, 34px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-height: 0;
  min-width: 0;
  position: relative;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: min(560px, 100%);
  width: clamp(360px, 30vw, 560px);
}

.brand-logo--flight {
  display: none;
}

.brand-text {
  color: var(--green-deep);
  font-size: clamp(calc(24px * var(--font-scale)), 3vw, calc(42px * var(--font-scale)));
  font-weight: 700;
}

.brand--flight .brand-logo--wall {
  display: none;
}

.brand--flight .brand-logo--flight {
  display: block;
}

.nav {
  align-items: center;
  display: flex;
  gap: 6px;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
  justify-content: space-between;
  width: min(100%, 1180px);
}

.nav-menu {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 6px;
  min-width: 0;
}

.nav-home-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  margin-right: auto;
  min-height: 38px;
  min-width: 0;
  padding: 4px 8px;
}

.nav-home-logo {
  display: block;
  height: auto;
  max-height: 34px;
  max-width: min(150px, 28vw);
  width: auto;
}

.nav-home-brand-text {
  color: var(--green-deep);
  font-size: calc(18px * var(--font-scale));
  font-weight: 700;
}

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

.mobile-menu-button {
  display: none;
}

.accessibility-toolbar {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}

.accessibility-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
  color: var(--green-deep);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 36px;
  min-width: 34px;
  padding: 4px 6px;
}

.accessibility-button:hover {
  background: rgba(14, 165, 200, 0.14);
  transform: none;
}

.accessibility-button[aria-pressed="true"] {
  color: var(--blue);
}

.text-size-button--regular {
  font-size: calc(17px * var(--font-scale));
}

.text-size-button--large {
  font-size: calc(21px * var(--font-scale));
}

.text-size-button--largest {
  font-size: calc(25px * var(--font-scale));
}

.contrast-toggle {
  border: 1px solid transparent;
  border-radius: 6px;
  margin-left: 4px;
  min-width: 38px;
}

.contrast-toggle[aria-pressed="true"] {
  border-color: var(--red-strong);
}

.contrast-toggle-icon {
  background: linear-gradient(90deg, var(--blue) 0 50%, #ffffff 50% 100%);
  border: 2px solid var(--blue);
  border-radius: 999px;
  display: block;
  height: 22px;
  width: 22px;
}

.nav a {
  border-radius: 999px;
  padding: 9px 14px;
}

.nav a:hover {
  background: rgba(14, 165, 200, 0.14);
  color: var(--green-strong);
}

.nav-cta {
  background: linear-gradient(135deg, var(--green-deep), var(--blue));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
  color: white !important;
}

.nav-cta--secondary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

.nav-login {
  margin-left: auto;
  white-space: nowrap;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  align-items: center;
  background: var(--blue-soft);
  border-radius: 999px;
  color: var(--green-strong);
  cursor: pointer;
  display: inline-flex;
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  gap: 8px;
  list-style: none;
  min-height: 40px;
  padding: 9px 14px;
  user-select: none;
}

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

.language-switcher summary::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
  height: 0;
  width: 0;
}

.language-switcher[open] summary::after {
  transform: rotate(180deg);
}

.language-menu {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
}

.language-menu a {
  border-radius: 6px;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  padding: 10px 12px;
}

.language-menu a:hover,
.language-menu a.active {
  background: rgba(14, 165, 200, 0.13);
  color: var(--green-strong);
  font-weight: 700;
}

.hero {
  align-items: center;
  display: grid;
  column-gap: clamp(34px, 5vw, 82px);
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  row-gap: clamp(12px, 2vw, 26px);
  min-height: calc(100vh - 54px);
  overflow: hidden;
  padding: clamp(6px, 1vw, 14px) clamp(20px, 5vw, 72px) clamp(19px, 2vw, 28px);
  position: relative;
}

.hero-copy {
  display: block;
  min-width: 0;
}

.public-page-heading {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(0, clamp(360px, 28vw, 560px)) minmax(0, 1fr);
  width: 100%;
}

.hero-title-row {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.public-page-heading-copy {
  min-width: 0;
}

.public-page-heading-copy .eyebrow {
  margin-bottom: 10px;
}

.public-page-heading-copy h1 {
  font-size: clamp(calc(36px * var(--font-scale)), 3.45vw, calc(54px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 0;
  max-width: 900px;
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.22), transparent 58%),
    linear-gradient(315deg, rgba(37, 99, 235, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(224, 242, 254, 0.28));
  border: 1px solid rgba(200, 220, 237, 0.82);
  border-radius: 34px;
  bottom: 19px;
  content: "";
  left: clamp(14px, 3vw, 34px);
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  top: 12px;
  z-index: -1;
}

.eyebrow {
  color: var(--blue);
  font-size: calc(12px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(calc(42px * var(--font-scale)), 5vw, calc(74px * var(--font-scale)));
  font-weight: 600;
  line-height: 1;
  margin-bottom: 26px;
  max-width: 780px;
}

h2 {
  font-size: clamp(calc(26px * var(--font-scale)), 3vw, calc(42px * var(--font-scale)));
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: calc(20px * var(--font-scale));
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  font-size: clamp(calc(19px * var(--font-scale)), 1.65vw, calc(25px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.75;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}

.button,
button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

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

.button.primary,
button {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 14px 30px rgba(8, 47, 73, 0.08);
  color: var(--ink);
}

.create-demo-link {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.hero-text-link {
  color: var(--blue);
  font-weight: 700;
  padding: 12px 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

html[data-contrast="high"] .site-header,
html[data-contrast="high"] .hero,
html[data-contrast="high"] .feature-card,
html[data-contrast="high"] .product-panel,
html[data-contrast="high"] .security-band,
html[data-contrast="high"] .plan,
html[data-contrast="high"] .lead-form,
html[data-contrast="high"] .site-footer,
html[data-contrast="high"] .legal-hero,
html[data-contrast="high"] .legal-content section,
html[data-contrast="high"] .visual-story-card,
html[data-contrast="high"] .case-study-card,
html[data-contrast="high"] .security-detail,
html[data-contrast="high"] .create-demo-widget-section {
  background: var(--contrast-bg);
  border-color: var(--contrast-accent);
  box-shadow: none;
}

html[data-contrast="high"] .nav a,
html[data-contrast="high"] .language-switcher summary,
html[data-contrast="high"] .accessibility-button,
html[data-contrast="high"] .button,
html[data-contrast="high"] .site-footer a,
html[data-contrast="high"] button {
  background: var(--contrast-bg);
  border-color: var(--contrast-emphasis);
  box-shadow: none;
  color: var(--contrast-accent) !important;
}

html[data-contrast="high"] .nav a:hover,
html[data-contrast="high"] .button:hover,
html[data-contrast="high"] button:hover {
  background: #101010;
}

html[data-contrast="high"] .accessibility-button {
  border-bottom-color: var(--contrast-accent);
}

html[data-contrast="high"] .contrast-toggle[aria-pressed="true"] {
  border-color: #ff7a00;
}

html[data-contrast="high"] .contrast-toggle-icon {
  background: linear-gradient(90deg, var(--contrast-accent) 0 50%, var(--contrast-bg) 50% 100%);
  border-color: var(--contrast-accent);
}

html[data-contrast="high"] .eyebrow,
html[data-contrast="high"] .hero-lead,
html[data-contrast="high"] .section-body,
html[data-contrast="high"] .feature-card p,
html[data-contrast="high"] .plan p,
html[data-contrast="high"] .faq-item p {
  color: var(--contrast-emphasis);
}

.nav .accessibility-button {
  background: transparent;
  box-shadow: none;
  color: var(--green-deep);
  min-height: 36px;
}

.nav .accessibility-button:hover {
  background: rgba(14, 165, 200, 0.14);
  transform: none;
}

.nav .accessibility-button[aria-pressed="true"] {
  color: var(--blue);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proof-list li {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
  padding: 9px 13px;
}

.product-panel {
  align-self: center;
  background: linear-gradient(180deg, #ffffff, #eff8ff);
  border: 1px solid rgba(200, 220, 237, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  justify-self: end;
  overflow: hidden;
  transform: rotate(1deg);
  width: min(100%, 940px);
}

.product-panel--screenshot {
  background: white;
  padding: 0;
  transform: rotate(0.75deg) translateY(8px);
}

.product-screenshot {
  display: block;
  height: auto;
  width: 100%;
}

.section,
.faq-section {
  padding: 96px clamp(20px, 5vw, 72px);
}

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

.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.feature-card,
.plan,
.faq-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.feature-card {
  min-height: 232px;
  position: relative;
}

.feature-card::before {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright) 62%, var(--amber));
  border-radius: 999px;
  content: "";
  display: block;
  height: 10px;
  margin-bottom: 26px;
  width: 46px;
}

.visual-story-section {
  padding: 12px clamp(20px, 5vw, 72px) 104px;
}

.visual-story-heading {
  max-width: 900px;
}

.visual-story-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.visual-story-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(200, 220, 237, 0.92);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.visual-story-image {
  aspect-ratio: 16 / 10;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.visual-story-card div {
  padding: 0 24px 26px;
}

.visual-story-card h3 {
  margin-bottom: 8px;
}

.visual-story-card p {
  margin-bottom: 0;
}

.security-band {
  align-items: start;
  background:
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--green-deep), var(--green-strong) 58%, #1d4ed8);
  color: white;
  display: grid;
  gap: 32px;
  grid-template-columns: 0.86fr 1.14fr;
  padding: 88px clamp(20px, 5vw, 72px);
}

.security-band p,
.security-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.security-points {
  display: grid;
  gap: 12px;
}

.security-points p {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  margin: 0;
  padding: 18px;
}

.security-detail-grid {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.security-detail {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
}

.security-detail h3 {
  color: white;
  font-size: calc(16px * var(--font-scale));
  margin-bottom: 8px;
}

.security-detail p {
  color: rgba(255, 255, 255, 0.78);
  font-size: calc(14px * var(--font-scale));
  margin-bottom: 0;
}

.security-cta {
  grid-column: 1 / -1;
  justify-self: start;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan {
  display: flex;
  flex-direction: column;
}

.plan.highlighted {
  background:
    radial-gradient(circle at 78% 12%, rgba(56, 189, 248, 0.22), transparent 14rem),
    linear-gradient(145deg, var(--green-deep), #0f4270 56%, #1d4ed8);
  color: white;
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.28);
  transform: translateY(-10px);
}

.plan.highlighted p,
.plan.highlighted li {
  color: rgba(255, 255, 255, 0.78);
}

.plan-badge {
  align-self: flex-start;
  background: rgba(14, 165, 200, 0.13);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  margin-bottom: 18px;
  padding: 7px 10px;
}

.plan.highlighted .plan-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #7dd3fc;
}

.plan-scope-label {
  color: var(--blue);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  margin: 16px 0 0;
  text-transform: uppercase;
}

.plan.highlighted .plan-scope-label {
  color: #7dd3fc;
}

.plan ul {
  color: var(--muted);
  line-height: 1.8;
  margin: 12px 0 24px;
  padding-left: 20px;
}

.case-studies-section {
  padding: 12px clamp(20px, 5vw, 72px) 96px;
}

.case-study-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.case-study-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.case-study-type {
  color: var(--blue);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.case-study-card dl {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.case-study-card dt {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}

.case-study-card dd {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.case-study-card blockquote {
  border-left: 4px solid var(--blue);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
  margin: 22px 0 0;
  padding-left: 16px;
}

.blog-page {
  padding: 64px clamp(20px, 5vw, 72px) 96px;
}

.blog-hero {
  max-width: 820px;
}

.blog-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1.02;
}

.blog-hero p:last-child,
.blog-card p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-card a,
.blog-back-link {
  color: var(--ink);
  text-decoration: none;
}

.blog-card a:hover,
.blog-back-link:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  display: block;
  height: auto;
  margin: -12px 0 22px;
  object-fit: cover;
  width: 100%;
}

.blog-card-meta,
.blog-post-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: calc(14px * var(--font-scale));
  margin-top: 18px;
}

.blog-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.blog-card h2 {
  font-size: calc(24px * var(--font-scale));
  letter-spacing: 0;
}

.blog-card-result {
  color: var(--ink) !important;
  font-weight: 700;
}

.blog-empty {
  color: var(--muted);
  margin-top: 32px;
}

.blog-post-page {
  padding: 42px clamp(20px, 5vw, 72px) 96px;
}

.blog-post {
  margin-inline: auto;
  max-width: 880px;
}

.blog-back-link {
  display: inline-flex;
  font-weight: 700;
  margin-bottom: 28px;
}

.blog-post-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 10px 0 18px;
}

.blog-post-hero > p {
  color: var(--muted);
  font-size: calc(20px * var(--font-scale));
  line-height: 1.65;
}

.blog-post-cover {
  aspect-ratio: 1200 / 630;
  border-radius: 8px;
  display: block;
  height: auto;
  margin-top: 32px;
  object-fit: cover;
  width: 100%;
}

.blog-post-content {
  color: var(--ink);
  font-size: calc(18px * var(--font-scale));
  line-height: 1.72;
  margin: 42px auto 0;
  max-width: 72ch;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  letter-spacing: 0;
  line-height: 1.18;
  margin: 34px 0 14px;
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol,
.blog-post-content blockquote {
  margin: 0 0 22px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 24px;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--blue);
  font-weight: 700;
  padding-left: 18px;
}

.blog-post-content img {
  border-radius: 8px;
  height: auto;
  max-width: 100%;
}

.blog-post-content code {
  background: rgba(6, 28, 44, 0.08);
  border-radius: 4px;
  padding: 2px 5px;
}

.blog-post-cta,
.blog-related {
  margin: 56px auto 0;
  max-width: 880px;
}

.blog-post-cta {
  background: linear-gradient(135deg, var(--mint), var(--rose));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
}

.blog-post-cta h2,
.blog-related h2 {
  font-size: calc(28px * var(--font-scale));
  letter-spacing: 0;
}

.plan .button {
  margin-top: auto;
}

.demo-section {
  align-items: start;
  background:
    radial-gradient(circle at 14% 20%, rgba(56, 189, 248, 0.28), transparent 20rem),
    linear-gradient(135deg, var(--rose), #f8fcff 58%, var(--mint));
  display: grid;
  gap: 38px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 96px clamp(20px, 5vw, 72px);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(224, 242, 254, 0.92));
  border-top: 1px solid var(--line);
  padding: 56px clamp(20px, 5vw, 72px) 28px;
}

.site-footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.site-footer h2 {
  font-size: calc(16px * var(--font-scale));
  margin-bottom: 14px;
}

.footer-subheading {
  margin-top: 24px;
}

.footer-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.footer-details div {
  display: grid;
  gap: 4px;
}

.footer-details dt {
  color: var(--muted);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
}

.footer-details dd {
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.form-privacy-note a,
.checkbox-label a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover,
.form-privacy-note a:hover,
.checkbox-label a:hover {
  color: var(--green-strong);
}

.footer-copyright {
  border-top: 1px solid var(--line);
  font-size: calc(13px * var(--font-scale));
  margin: 36px 0 0;
  padding-top: 20px;
}

.legal-page {
  padding: 48px clamp(20px, 5vw, 72px) 84px;
}

.legal-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(224, 242, 254, 0.72));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: clamp(32px, 5vw, 64px);
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-updated {
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
  margin-bottom: 0;
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  max-width: 920px;
}

.legal-content section {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3vw, 34px);
}

.legal-content h2 {
  font-size: calc(24px * var(--font-scale));
}

.lead-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-privacy-note {
  font-size: calc(13px * var(--font-scale));
  margin: 0;
}

.honeypot-field {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

label {
  color: var(--ink);
  display: grid;
  font-weight: 700;
  gap: 8px;
}

.checkbox-label {
  align-items: start;
  color: var(--muted);
  display: grid;
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  line-height: 1.45;
}

input,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(14, 165, 200, 0.16);
  outline: none;
}

input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.form-status.success {
  background: rgba(8, 120, 148, 0.13);
  color: var(--green-deep);
}

.form-status.error {
  background: rgba(185, 28, 58, 0.12);
  color: var(--red-strong);
}

.create-demo-page {
  min-height: 100vh;
  padding: 18px clamp(14px, 3vw, 34px) 72px;
}

.create-demo-header {
  padding: 12px 0 20px;
}

.create-demo-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(56, 189, 248, 0.24), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 242, 254, 0.72));
  border: 1px solid rgba(200, 220, 237, 0.82);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: clamp(32px, 6vw, 72px);
}

.create-demo-widget-section {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  margin-top: 28px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
}

.create-demo-widget-section h2 {
  font-size: clamp(calc(26px * var(--font-scale)), 3vw, calc(36px * var(--font-scale)));
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .hero,
  .security-band,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-panel {
    grid-column: 1;
  }

  .product-panel {
    grid-row: auto;
    justify-self: stretch;
  }

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

  .pricing-grid,
  .faq-grid,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .security-detail-grid,
  .case-study-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .plan.highlighted {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    justify-content: center;
    padding-inline: 12px;
  }

  .brand {
    max-width: min(420px, 86vw);
    min-width: 0;
  }

  .brand-logo {
    max-width: min(420px, 86vw);
  }

  .nav {
    gap: 10px;
  }

  .nav-primary-cta {
    flex: 0 0 auto;
    font-size: calc(13px * var(--font-scale));
    min-height: 42px;
    padding: 11px 13px;
  }

  .mobile-menu-button {
    align-items: center;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
    display: inline-flex;
    flex: 0 0 44px;
    flex-direction: column;
    gap: 5px;
    height: 44px;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0;
  }

  .mobile-menu-button span {
    background: var(--green-deep);
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 20px;
  }

  .nav-menu {
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: none;
    gap: 18px;
    grid-template-columns: 1fr;
    left: 12px;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 16px;
    position: fixed;
    right: 12px;
    top: 66px;
    z-index: 40;
  }

  .nav-menu[data-open="true"] {
    display: grid;
  }

  .nav-links,
  .accessibility-toolbar {
    align-items: stretch;
    display: grid;
    gap: 8px;
  }

  .nav-home-brand {
    border: 1px solid var(--line);
    border-radius: 8px;
    justify-content: flex-start;
    margin-right: 0;
    min-height: 48px;
    padding: 10px 14px;
  }

  .nav-home-logo {
    max-height: 30px;
    max-width: 136px;
  }

  .nav-menu .nav-links a,
  .nav-menu .nav-login,
  .nav-menu .language-switcher summary {
    border: 1px solid var(--line);
    border-radius: 8px;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .nav-menu .accessibility-toolbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav-menu .accessibility-button {
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 44px;
  }

  .nav-login {
    margin-left: 0;
  }

  .language-menu {
    position: static;
  }

  .public-page-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

}

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