:root {
  --ink: #07111f;
  --ink-2: #0b1b30;
  --ink-3: #102744;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-tint: #edf8f5;
  --text: #0c1b2e;
  --muted: #5d6b7d;
  --muted-light: #aeb9c8;
  --line: #dce4ed;
  --line-dark: rgba(255, 255, 255, 0.13);
  --primary: #5ee4b5;
  --primary-strong: #23c990;
  --primary-deep: #078261;
  --blue: #7ea9ff;
  --orange: #ffb76b;
  --danger: #f48391;
  --shadow-sm: 0 12px 30px rgba(15, 31, 52, 0.08);
  --shadow-md: 0 26px 70px rgba(8, 24, 44, 0.14);
  --shadow-dark: 0 35px 90px rgba(0, 0, 0, 0.36);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

::selection {
  color: var(--ink);
  background: var(--primary);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.2vw, 6.65rem);
  line-height: 0.96;
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  line-height: 1.03;
  font-weight: 730;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

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

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

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(94, 228, 181, 0.12);
}

.eyebrow-dark {
  color: var(--primary-deep);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 740;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #04130e;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(35, 201, 144, 0.24);
}

.button-primary:hover {
  background: #73ebc3;
  box-shadow: 0 16px 34px rgba(35, 201, 144, 0.3);
}

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

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

.button-large {
  min-height: 56px;
  padding: 16px 25px;
  font-size: 1rem;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-deep);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(7, 130, 97, 0.28);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.text-link-light {
  color: var(--primary);
  text-decoration-color: rgba(94, 228, 181, 0.34);
}

.text-link-light:hover {
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(7, 17, 31, 0.56);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

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

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-name {
  font-size: 1.07rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-product {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 720;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: #fff;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 17%, rgba(126, 169, 255, 0.14), transparent 28%),
    radial-gradient(circle at 10% 24%, rgba(94, 228, 181, 0.12), transparent 25%),
    linear-gradient(135deg, #07111f 0%, #0a1729 58%, #0b2035 100%);
  padding: calc(var(--header-height) + clamp(64px, 8vw, 108px)) 0 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-orb-one {
  top: 180px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(94, 228, 181, 0.08);
}

.hero-orb-two {
  bottom: 120px;
  left: -180px;
  width: 360px;
  height: 360px;
  background: rgba(126, 169, 255, 0.08);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(52px, 7vw, 100px);
  align-items: center;
  padding-bottom: clamp(70px, 8vw, 112px);
}

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

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 610;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(94, 228, 181, 0.12);
  border: 1px solid rgba(94, 228, 181, 0.25);
  border-radius: 50%;
  font-size: 0.72rem;
}

.product-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.product-stage::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 84%;
  background: radial-gradient(circle, rgba(94, 228, 181, 0.16), rgba(126, 169, 255, 0.07) 48%, transparent 72%);
  border-radius: 50%;
  filter: blur(10px);
}

.product-window {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  padding: 18px;
  background: rgba(8, 23, 41, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: rotate(1.1deg);
}

.window-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 4px 2px 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.window-title {
  font-weight: 650;
}

.window-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
}

.window-status i {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(94, 228, 181, 0.1);
}

.transfer-card,
.setting-card,
.activity-card {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.transfer-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.file-tile {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(126, 169, 255, 0.12);
  border: 1px solid rgba(126, 169, 255, 0.18);
  border-radius: 15px;
}

.file-tile svg {
  width: 27px;
}

.file-copy strong,
.setting-card strong,
.activity-card strong {
  display: block;
  color: #fff;
  font-size: 0.91rem;
}

.file-copy span,
.setting-label,
.activity-line span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  color: var(--primary);
  background: rgba(94, 228, 181, 0.1);
  border: 1px solid rgba(94, 228, 181, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
}

.pill-ready {
  color: #05241a;
  background: var(--primary);
  border-color: transparent;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.setting-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
}

.setting-wide {
  grid-column: 1 / -1;
  grid-template-columns: 38px 1fr auto;
  border-color: rgba(94, 228, 181, 0.24);
  background: rgba(94, 228, 181, 0.085);
}

.setting-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(94, 228, 181, 0.08);
  border-radius: 12px;
}

.setting-icon svg {
  width: 21px;
}

.toggle {
  width: 42px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 3px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.toggle i {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
}

.toggle.is-on {
  justify-content: flex-end;
  background: var(--primary-strong);
}

.activity-card {
  padding: 16px;
  margin-top: 10px;
}

.activity-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.activity-line {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 0 3px;
}

.activity-line:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 27px;
  bottom: -12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.11);
}

.activity-line div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.activity-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 5px;
  background: var(--ink-3);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.activity-dot.complete,
.activity-dot.current {
  background: var(--primary);
  border-color: var(--primary);
}

.activity-dot.current {
  box-shadow: 0 0 0 5px rgba(94, 228, 181, 0.11);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 222px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(11, 28, 49, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 0.78rem;
}

.floating-note div span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.floating-note-one {
  top: 30px;
  right: -42px;
}

.floating-note-two {
  bottom: 34px;
  left: -58px;
}

.note-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(126, 169, 255, 0.12);
  border-radius: 12px;
  font-size: 1.3rem;
}

.note-icon-success {
  color: var(--primary);
  background: rgba(94, 228, 181, 0.1);
}

.audience-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-strip > span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
}

.audience-strip strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  letter-spacing: -0.015em;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

.section-heading-centered > p:last-child {
  margin-inline: auto;
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-card::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
  box-shadow: 0 0 0 38px currentColor, 0 0 0 76px currentColor;
}

.comparison-card h3 {
  max-width: 520px;
  margin-bottom: 30px;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  line-height: 1.12;
}

.comparison-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 610;
}

.comparison-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.55;
}

.comparison-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  margin-bottom: 34px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-label span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.comparison-email {
  color: #6c2430;
  background: #fff6f7;
  border-color: #f0d8dc;
}

.comparison-email p,
.comparison-email li {
  color: #7e4b53;
}

.comparison-email .comparison-label {
  color: #a33d4a;
  background: #ffe7ea;
}

.comparison-email .comparison-label span {
  color: #fff;
  background: #d95868;
}

.comparison-docucode {
  color: #0e3d31;
  background: linear-gradient(145deg, #eafaf4 0%, #f6fffc 100%);
  border-color: #cceade;
}

.comparison-docucode p,
.comparison-docucode li {
  color: #37675b;
}

.comparison-docucode .comparison-label {
  color: #087052;
  background: #d6f5e8;
}

.comparison-docucode .comparison-label span {
  color: #063b2c;
  background: var(--primary);
}

.features-section {
  background: #fff;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}

.split-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(28px, 3.3vw, 42px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #c9d6e2;
  box-shadow: var(--shadow-sm);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 676px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(94, 228, 181, 0.17), transparent 30%),
    linear-gradient(145deg, var(--ink) 0%, var(--ink-2) 100%);
  border-color: transparent;
}

.feature-card-large p {
  color: rgba(255, 255, 255, 0.58);
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #8794a4;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.feature-card-large .feature-number {
  color: rgba(255, 255, 255, 0.4);
}

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  color: var(--primary-deep);
  background: var(--surface-tint);
  border: 1px solid #d5eee6;
  border-radius: 17px;
}

.feature-icon-wrap svg {
  width: 28px;
}

.feature-card-large .feature-icon-wrap {
  color: var(--primary);
  background: rgba(94, 228, 181, 0.1);
  border-color: rgba(94, 228, 181, 0.16);
}

.feature-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.feature-card p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 1rem;
}

.feature-visual {
  position: absolute;
  inset: auto 28px 28px;
  min-height: 270px;
}

.expiry-visual {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
}

.expiry-date span,
.expiry-date small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
}

.expiry-date span {
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 650;
}

.expiry-date strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.expiry-date small {
  margin-top: 8px;
  font-size: 0.8rem;
}

.expiry-ring {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 11px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  border-radius: 50%;
  transform: rotate(28deg);
}

.expiry-ring span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 750;
  transform: rotate(-28deg);
}

.workflow-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 85%, rgba(94, 228, 181, 0.09), transparent 30%),
    linear-gradient(135deg, #06101d 0%, #0b1c31 100%);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.workflow-copy p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.08rem;
}

.workflow-steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.step-number {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.workflow-steps h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.45rem;
}

.workflow-steps p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}

.security-section {
  background: #fff;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 128px);
  align-items: center;
}

.security-panel {
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 228, 181, 0.12), transparent 48%),
    linear-gradient(145deg, #f2f8f6 0%, #e9f1f7 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.security-orbit {
  position: relative;
  width: min(82%, 440px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(12, 43, 55, 0.13);
  border-radius: 50%;
}

.orbit-two {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(7, 130, 97, 0.28);
}

.security-mark {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #dbe8e3;
  border-radius: 38px;
  box-shadow: var(--shadow-md);
}

.security-mark img {
  width: 78px;
  height: 78px;
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d6e9e2;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.76rem;
  font-weight: 740;
}

.orbit-label-one {
  top: 3%;
  left: 48%;
}

.orbit-label-two {
  right: -2%;
  bottom: 25%;
}

.orbit-label-three {
  left: -1%;
  bottom: 18%;
}

.security-copy h2 {
  max-width: 700px;
}

.security-lede {
  max-width: 640px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}

.security-list {
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
}

.security-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.security-list article > span {
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.security-list h3 {
  margin-bottom: 5px;
  font-size: 1.18rem;
}

.security-list p {
  margin-bottom: 0;
}

.use-cases-section {
  background: var(--surface-soft);
}

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

.use-case-grid article {
  min-height: 330px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.use-case-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.use-case-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 84px;
  color: var(--primary-deep);
  background: var(--surface-tint);
  border: 1px solid #d7eee6;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 760;
}

.use-case-grid h3 {
  font-size: 1.25rem;
}

.use-case-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-heading p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 27px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 710;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--primary-deep);
  background: var(--surface-tint);
  border: 1px solid #d7eee6;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 54px 26px 0;
  margin-bottom: 0;
}

.cta-section {
  padding: 0 0 clamp(90px, 10vw, 150px);
  background: #fff;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  padding: clamp(42px, 6vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(94, 228, 181, 0.18), transparent 33%),
    radial-gradient(circle at 90% 70%, rgba(126, 169, 255, 0.15), transparent 35%),
    linear-gradient(135deg, #07111f 0%, #0b1d33 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-card h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.cta-card p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.06rem;
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.email-link {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-glow {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.025), 0 0 0 104px rgba(255, 255, 255, 0.02);
}

.site-footer {
  color: rgba(255, 255, 255, 0.62);
  background: #050b14;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  padding: 70px 0 52px;
}

.footer-brand-block p {
  max-width: 420px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.44);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 70px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
}



/* Bilingual header and contact section */
.site-nav {
  margin-left: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.language-switch {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.language-switch a,
.language-switch > span {
  min-width: 36px;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.language-switch a {
  transition: color 180ms ease, background-color 180ms ease;
}

.language-switch a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.language-switch > [aria-current="page"] {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

.contact-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: start;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4.2vw, 4.45rem);
}

.contact-copy .button {
  margin-top: 30px;
}

.contact-details {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin: 0;
  font-style: normal;
}

.contact-detail {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-detail-link {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.contact-detail-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(94, 228, 181, 0.4);
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(94, 228, 181, 0.1);
  border: 1px solid rgba(94, 228, 181, 0.2);
  border-radius: 16px;
}

.contact-detail-icon svg {
  width: 25px;
  height: 25px;
}

.contact-detail-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail strong {
  min-width: 0;
  margin-top: 1px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-detail-note {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    width: min(100%, 760px);
    min-height: 650px;
    margin-inline: auto;
  }

  .product-window {
    width: min(100%, 630px);
  }

  .floating-note-one {
    right: -28px;
  }

  .floating-note-two {
    left: -28px;
  }

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

@media (max-width: 1040px) {
  :root {
    --header-height: 74px;
  }

  .nav-toggle {
    display: grid;
  }

  .js .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 2px;
    padding: 18px 20px 24px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease, visibility 0s linear 200ms;
  }

  .js .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav > a:not(.button),
  .site-nav .button {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding-inline: 14px;
    border-radius: 14px;
  }

  .site-nav > a:not(.button):hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .no-js .site-nav {
    display: none;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .comparison-grid,
  .split-heading,
  .workflow-layout,
  .security-layout,
  .faq-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .workflow-copy,
  .faq-heading {
    position: static;
  }

  .workflow-steps {
    margin-top: 10px;
  }

  .security-panel {
    min-height: 520px;
  }

  .feature-card-large {
    grid-row: auto;
    min-height: 600px;
  }

  .cta-actions {
    justify-items: start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .brand-product {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
  }

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

  .hero-points {
    display: grid;
  }

  .product-stage {
    min-height: 610px;
  }

  .product-window {
    padding: 12px;
    border-radius: 24px;
    transform: none;
  }

  .window-status {
    display: none;
  }

  .window-bar {
    grid-template-columns: auto 1fr;
  }

  .transfer-card {
    grid-template-columns: 48px 1fr;
  }

  .transfer-card .pill {
    grid-column: 2;
    justify-self: start;
  }

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

  .setting-wide {
    grid-column: auto;
  }

  .activity-line div {
    display: grid;
    gap: 1px;
  }

  .floating-note {
    min-width: 0;
    width: 210px;
  }

  .floating-note-one {
    top: 8px;
    right: -8px;
  }

  .floating-note-two {
    bottom: 14px;
    left: -5px;
  }

  .audience-strip {
    display: grid;
  }

  .audience-strip div {
    justify-content: flex-start;
    gap: 12px 22px;
  }

  .comparison-card {
    min-height: auto;
  }

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

  .feature-card {
    min-height: 300px;
  }

  .feature-card-large {
    min-height: 590px;
  }

  .feature-visual {
    inset: auto 18px 18px;
  }

  .expiry-visual {
    grid-template-columns: 1fr;
    min-height: 260px;
  }

  .expiry-ring {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 104px;
    height: 104px;
  }

  .workflow-steps li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .security-panel {
    min-height: 420px;
  }

  .security-orbit {
    width: 90%;
  }

  .security-mark {
    width: 106px;
    height: 106px;
    border-radius: 30px;
  }

  .security-mark img {
    width: 65px;
    height: 65px;
  }

  .orbit-label {
    font-size: 0.68rem;
  }

  .use-case-grid article {
    min-height: 280px;
  }

  .use-case-icon {
    margin-bottom: 56px;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .cta-card {
    padding: 36px 24px;
  }

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

  .footer-links {
    gap: 36px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  .floating-note {
    display: none;
  }

  .product-stage {
    min-height: 560px;
  }

  .transfer-card,
  .setting-card,
  .activity-card {
    border-radius: 15px;
  }

  .setting-wide {
    grid-template-columns: 38px 1fr;
  }

  .setting-wide .toggle {
    grid-column: 2;
  }

  .expiry-ring {
    width: 88px;
    height: 88px;
    border-width: 8px;
  }

  .expiry-ring span {
    font-size: 1.1rem;
  }

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



@media (max-width: 1040px) {
  .header-inner {
    gap: 14px;
  }

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

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

@media (max-width: 700px) {
  .header-actions {
    gap: 8px;
  }

  .language-switch a,
  .language-switch > span {
    min-width: 34px;
    padding-inline: 6px;
  }

  html[lang="bg"] h1 {
    font-size: clamp(2.8rem, 13.4vw, 4.6rem);
    line-height: 0.98;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-copy .button {
    width: 100%;
  }

  .contact-detail {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

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

  .language-switch {
    min-height: 44px;
  }

  .language-switch a,
  .language-switch > span {
    min-width: 34px;
    min-height: 38px;
    padding-inline: 5px;
    font-size: 0.7rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .contact-detail {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 13px;
    padding: 16px;
  }

  .contact-detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

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

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

  .button:hover,
  .feature-card:hover,
  .use-case-grid article:hover {
    transform: none;
  }
}

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

  .hero,
  .workflow-section {
    color: #000;
    background: #fff;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-layout,
  .workflow-layout,
  .security-layout,
  .faq-layout,
  .comparison-grid,
  .feature-grid,
  .use-case-grid {
    display: block;
  }

  .product-stage,
  .security-panel {
    display: none;
  }

  * {
    box-shadow: none !important;
  }
}
