:root {
  color-scheme: dark;
  --bg: #0d0920;
  --bg-deep: #070510;
  --surface: rgba(31, 25, 58, 0.76);
  --surface-strong: #191431;
  --surface-soft: rgba(255, 255, 255, 0.065);
  --text: #fbf9ff;
  --muted: #c8c1dc;
  --line: rgba(255, 255, 255, 0.13);
  --violet: #8065ff;
  --violet-bright: #a995ff;
  --rose: #ff6f9f;
  --coral: #ff806a;
  --blue: #55b8ff;
  --green: #58d9b1;
  --shadow: 0 28px 90px rgba(4, 2, 14, 0.52);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --page: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 290px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 9%, rgba(128, 101, 255, 0.18), transparent 31rem),
    radial-gradient(circle at 91% 25%, rgba(255, 111, 159, 0.14), transparent 28rem),
    linear-gradient(180deg, #100b27 0%, var(--bg) 40%, var(--bg-deep) 100%);
  overflow-x: hidden;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #cabfff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  inset-inline-start: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 12px;
  color: #150f2a;
  background: #fff;
  font-weight: 850;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 18, 0.76);
  backdrop-filter: blur(22px) saturate(145%);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(128, 101, 255, 0.32);
}

.brand span,
.footer-brand span {
  line-height: 1.04;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.mobile-logo {
  display: none;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a,
.footer-links a {
  padding: 10px 11px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 720;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
}

.language-switcher button:hover {
  color: var(--text);
}

.language-switcher button.is-active {
  color: #17102e;
  background: linear-gradient(135deg, #f6f2ff, #b9aaff);
  box-shadow: 0 6px 16px rgba(128, 101, 255, 0.24);
}

.hero {
  position: relative;
  min-height: min(900px, calc(100svh - 78px));
  display: grid;
  align-items: center;
  padding: 70px 0 74px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(10, 7, 26, 0.94), rgba(10, 7, 26, 0.64) 55%, rgba(10, 7, 26, 0.84)),
    url("images/marketing-background.png") center / cover no-repeat;
  opacity: 0.84;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -2;
  background: linear-gradient(transparent, #0d0920);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.hero-orb-one {
  top: 9%;
  inset-inline-start: -120px;
  background: var(--violet);
}

.hero-orb-two {
  bottom: 6%;
  inset-inline-end: -130px;
  background: var(--rose);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.eyebrow,
.kicker,
.card-label {
  margin: 0;
  color: #cbbfff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(24, 18, 50, 0.76);
  backdrop-filter: blur(16px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin: 12px 0 15px;
  font-size: clamp(2rem, 4.5vw, 3.85rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.hero-lead,
.section-heading > p:last-child,
.feature-card > p:last-child,
.feature-card > div > p:last-child,
.feature-banner-copy > p:last-child,
.privacy-callout p,
.support-card p,
.steps p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background: linear-gradient(135deg, #7357ff, #a25aff 55%, #ec6f9c);
  box-shadow: 0 16px 34px rgba(115, 87, 255, 0.32);
}

.button.primary:hover {
  box-shadow: 0 20px 42px rgba(115, 87, 255, 0.42);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(14px);
}

.button.secondary:hover {
  border-color: rgba(202, 191, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 25px;
  color: #e1dcf0;
  font-size: 0.83rem;
  font-weight: 720;
}

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

.trust-row span::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
}

.phone-composition {
  position: relative;
  height: 690px;
  min-width: 0;
}

.phone {
  position: absolute;
  width: 292px;
  aspect-ratio: 9 / 16;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background: #0c0914;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.54), inset 0 0 0 2px rgba(255, 255, 255, 0.035);
}

.phone::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 72px;
  height: 19px;
  border-radius: 999px;
  background: #09070e;
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 31px;
  object-fit: cover;
}

.phone-back {
  top: 82px;
  inset-inline-start: 18px;
  transform: rotate(-7deg) scale(0.91);
  opacity: 0.77;
}

.phone-front {
  top: 22px;
  inset-inline-end: 18px;
  z-index: 2;
  transform: rotate(4deg);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(27, 21, 52, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(140%);
  animation: float-card 5s ease-in-out infinite;
}

.floating-card-top {
  top: 122px;
  inset-inline-start: -18px;
}

.floating-card-bottom {
  bottom: 77px;
  inset-inline-end: -7px;
  animation-delay: -2.4s;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--rose));
  font-weight: 900;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 0.88rem;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.quick-strip {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: rgba(19, 14, 40, 0.78);
  backdrop-filter: blur(18px);
}

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

.quick-grid > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-inline-end: 1px solid var(--line);
}

.quick-grid > div:last-child {
  border-inline-end: 0;
}

.quick-grid strong {
  font-size: 1.04rem;
}

.quick-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.content-section {
  padding: 112px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  grid-column: span 4;
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(38, 30, 70, 0.8), rgba(18, 14, 38, 0.86));
  box-shadow: 0 18px 55px rgba(2, 1, 10, 0.24);
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--violet);
  filter: blur(76px);
  opacity: 0.1;
}

.feature-card.violet::before { opacity: 0.27; }
.feature-card.rose::before { background: var(--rose); opacity: 0.25; }
.feature-card.blue::before { background: var(--blue); opacity: 0.21; }
.feature-card.coral::before { background: var(--coral); opacity: 0.25; }

.feature-card:hover {
  border-color: rgba(202, 191, 255, 0.32);
}

.feature-card.feature-large {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.feature-card.feature-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.16rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-large > .feature-icon,
.feature-wide > .feature-icon {
  position: absolute;
  top: 28px;
  inset-inline-start: 28px;
}

.feature-large > div:not(.mini-pills),
.feature-wide > div:not(.export-stack) {
  padding-top: 85px;
}

.feature-card .card-label {
  color: #a89ae8;
}

.feature-card p {
  margin-bottom: 0;
}

.mini-pills {
  display: grid;
  grid-template-columns: repeat(2, 74px);
  gap: 9px;
  padding-bottom: 5px;
}

.mini-pills span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: #e4ddff;
  background: rgba(255, 255, 255, 0.065);
  font-weight: 850;
}

.export-stack {
  width: 174px;
  height: 176px;
  position: relative;
}

.export-stack span {
  position: absolute;
  inset-inline-end: 0;
  width: 134px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.export-stack span:nth-child(1) { top: 0; transform: rotate(5deg); }
.export-stack span:nth-child(2) { top: 54px; inset-inline-end: 23px; transform: rotate(-4deg); }
.export-stack span:nth-child(3) { top: 108px; inset-inline-end: 6px; transform: rotate(2deg); }

.workflow-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 35%, rgba(128, 101, 255, 0.14), transparent 27rem),
    rgba(13, 9, 32, 0.62);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(440px, 1.13fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.workflow-grid .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.steps > li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #7659ff, #b85cff);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.steps h3 {
  margin-top: 2px;
}

.steps p {
  margin: 0;
}

.feature-banner-section {
  padding: 112px 0 0;
}

.feature-banner {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 45px;
  padding: clamp(26px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(41, 29, 81, 0.82), rgba(23, 16, 48, 0.92));
  box-shadow: var(--shadow);
}

.feature-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/marketing-background.png") center / cover no-repeat;
  opacity: 0.12;
}

.feature-banner > * {
  position: relative;
  z-index: 1;
}

.feature-banner > img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  transform: rotate(-2deg);
}

.feature-banner-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.gallery figure {
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  transition: transform 220ms ease, border-color 220ms ease;
}

.gallery figure:nth-child(even) {
  transform: translateY(28px);
}

.gallery figure:hover {
  transform: translateY(-7px);
  border-color: rgba(202, 191, 255, 0.36);
}

.gallery figure:nth-child(even):hover {
  transform: translateY(20px);
}

.gallery img {
  width: 100%;
  border-radius: 20px;
}

.gallery figcaption {
  padding: 16px 11px 12px;
  color: #e4deef;
  font-size: 0.84rem;
  font-weight: 760;
  text-align: center;
}

.privacy-callout,
.support-card {
  display: grid;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(32, 25, 66, 0.92), rgba(20, 16, 43, 0.9));
  box-shadow: var(--shadow);
}

.privacy-callout {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.privacy-callout h2,
.support-card h2 {
  margin-top: 8px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.privacy-callout p,
.support-card p {
  max-width: 720px;
  margin-bottom: 0;
}

.privacy-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #0e2520;
  background: linear-gradient(135deg, #a5f4dd, var(--green));
  box-shadow: 0 15px 38px rgba(88, 217, 177, 0.22);
  font-size: 1.55rem;
  font-weight: 950;
}

.support-card {
  grid-template-columns: minmax(0, 1fr) auto;
  background:
    linear-gradient(110deg, rgba(73, 48, 154, 0.7), rgba(74, 37, 91, 0.66)),
    url("images/marketing-background.png") center / cover;
}

.site-footer {
  padding: 48px 0 26px;
  border-top: 1px solid var(--line);
  background: #080611;
}

.footer-grid,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8f88a3;
  font-size: 0.78rem;
}

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

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2, .75, .25, 1);
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy policy */
.policy-hero {
  position: relative;
  padding: 94px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11, 8, 27, 0.91), rgba(11, 8, 27, 0.67)),
    url("images/marketing-background.png") center / cover;
}

.policy-hero .shell {
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.policy-hero .lead {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.updated {
  display: inline-flex;
  margin-top: 23px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #ded8ef;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 720;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding-top: 70px;
  padding-bottom: 110px;
}

.policy-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(26, 20, 53, 0.72);
  backdrop-filter: blur(16px);
}

.policy-toc strong {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-toc a {
  padding: 8px 9px;
  border-radius: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 670;
}

.policy-toc a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.policy-content {
  display: grid;
  gap: 17px;
  min-width: 0;
}

.policy-card {
  padding: clamp(24px, 4vw, 38px);
  scroll-margin-top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(26, 20, 53, 0.66);
}

.policy-card h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-card h3 {
  margin-top: 28px;
  font-size: 1.08rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card a {
  color: #c7baff;
  text-underline-offset: 3px;
}

.policy-card ul {
  padding-inline-start: 22px;
}

.policy-highlight {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(88, 217, 177, 0.28);
  border-radius: 16px;
  color: #d9f8ef;
  background: rgba(88, 217, 177, 0.08);
  line-height: 1.65;
}

.table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.data-table {
  width: 100%;
  min-width: 610px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
  line-height: 1.55;
}

.data-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.policy-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 20px;
  padding: 17px;
  border-radius: 15px;
  background: rgba(128, 101, 255, 0.1);
}

.policy-note span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: #fff;
  background: var(--violet);
  font-weight: 900;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(9, 6, 22, 0.76), rgba(9, 6, 22, 0.9)),
    url("images/marketing-background.png") center / cover;
}

.error-card {
  width: min(100%, 620px);
  padding: clamp(30px, 7vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  background: rgba(22, 17, 44, 0.83);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.error-app-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 24px;
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(128, 101, 255, 0.32);
}

.error-card h1 {
  margin: 16px 0;
  font-size: clamp(2rem, 7vw, 4rem);
}

.error-card p:not(.eyebrow) {
  color: var(--muted);
}

.error-card .actions {
  justify-content: center;
}

[dir="rtl"] .phone-front { transform: rotate(-4deg); }
[dir="rtl"] .phone-back { transform: rotate(7deg) scale(0.91); }
[dir="rtl"] .feature-banner > img { transform: rotate(2deg); }
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3 {
  letter-spacing: 0;
  line-height: 1.13;
}

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr); gap: 25px; }
  .phone-composition { transform: scale(0.9); transform-origin: center; }
  .feature-card { grid-column: span 6; }
  .feature-card.feature-large,
  .feature-card.feature-wide { grid-column: span 12; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .gallery figure:nth-child(even) { transform: none; }
  .gallery figure:nth-child(even):hover { transform: translateY(-7px); }
}

@media (max-width: 820px) {
  .hero { min-height: auto; padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow,
  .hero-copy .trust-row,
  .hero-copy .actions { margin-inline: auto; justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .phone-composition { width: min(100%, 550px); height: 660px; margin: 15px auto -25px; transform: none; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid > div:nth-child(2) { border-inline-end: 0; }
  .quick-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid .section-heading { position: static; }
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner > img { transform: none; }
  .privacy-callout { grid-template-columns: auto 1fr; }
  .privacy-callout .button { grid-column: 1 / -1; }
  .support-card { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; grid-template-columns: repeat(2, 1fr); }
  .policy-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--page)); }
  .nav { min-height: 70px; gap: 10px; }
  .brand { display: none; }
  .mobile-logo {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(128, 101, 255, 0.32);
  }
  .mobile-logo img { width: 100%; height: 100%; object-fit: cover; }
  .language-switcher { flex: 0 0 auto; overflow-x: auto; }
  .language-switcher button { min-width: 34px; padding-inline: 6px; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  [dir="rtl"] h1 { font-size: clamp(2.35rem, 11.5vw, 3.75rem); }
  [dir="rtl"] .hero-copy { padding-inline: 24px; }
  [dir="rtl"] .hero-copy h1,
  [dir="rtl"] .hero-copy .hero-lead { width: calc(100% - 48px); max-width: calc(100% - 48px); margin-inline: auto; }
  [dir="rtl"] .hero-copy .trust-row { width: calc(100% - 20px); padding-inline: 8px; gap: 8px 12px; font-size: 0.75rem; }
  .phone-composition { height: 520px; margin-bottom: -15px; }
  .phone { width: 225px; border-radius: 30px; }
  .phone img { border-radius: 24px; }
  .phone::after { width: 55px; height: 15px; top: 10px; }
  .phone-back { inset-inline-start: -7px; top: 65px; }
  .phone-front { inset-inline-end: -6px; }
  .floating-card { min-width: 178px; padding: 10px; }
  .floating-card-top { inset-inline-start: -4px; top: 102px; }
  .floating-card-bottom { bottom: 48px; inset-inline-end: -3px; }
  .floating-icon { width: 32px; height: 32px; }
  .quick-grid > div { min-height: 96px; padding: 17px; }
  .content-section { padding: 82px 0; }
  .feature-banner-section { padding-top: 82px; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card.feature-large,
  .feature-card.feature-wide { grid-column: auto; min-height: 0; display: block; }
  .feature-large > .feature-icon,
  .feature-wide > .feature-icon { position: static; }
  .feature-large > div:not(.mini-pills),
  .feature-wide > div:not(.export-stack) { padding-top: 0; }
  .mini-pills { grid-template-columns: repeat(4, 1fr); margin-top: 24px; }
  .mini-pills span { aspect-ratio: auto; padding: 14px 4px; }
  .export-stack { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .privacy-callout { grid-template-columns: 1fr; }
  .privacy-mark { width: 56px; height: 56px; }
  .footer-grid,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .policy-hero { padding: 72px 0 56px; }
  .policy-layout { padding-top: 45px; }
  .policy-toc { grid-template-columns: 1fr; }
  .policy-toc strong { grid-column: auto; }
}

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