@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #f5f3ee;
  --bg-strong: #ded7c9;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #1e2140;
  --muted: #5e627d;
  --line: rgba(30, 33, 64, 0.12);
  --brand: #4333e7;
  --brand-deep: #25274d;
  --shadow: 0 20px 60px rgba(30, 33, 64, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(67, 51, 231, 0.12), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(37, 39, 77, 0.1), transparent 28rem),
    var(--bg);
}

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

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

p,
li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

h1,
h2,
h3,
strong {
  margin: 0;
  color: var(--text);
}

h1,
h2,
h3 {
  font-family: "Sora", "Outfit", sans-serif;
  letter-spacing: -0.04em;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.stack {
  display: grid;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 243, 238, 0.86);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

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

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0.1rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a + a {
  padding-left: 1rem;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  left: -0.25rem;
  top: 50%;
  width: 1px;
  height: 1rem;
  background: rgba(30, 33, 64, 0.18);
  transform: translateY(-50%);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 39, 77, 0.55);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--brand-deep);
}

.site-nav a.is-active {
  color: var(--brand-deep);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--muted);
  min-width: 46px;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.language-switch a.is-active {
  background: var(--brand-deep);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
}

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

.button-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-deep);
  border-color: var(--line);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0.7rem 1rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.store-badge img {
  display: block;
  height: 50px;
  width: auto;
}

.store-badge-app-store img {
  width: 150px;
}

.store-badge-google-play img {
  width: 170px;
}

.hero,
.page-hero,
.article-hero {
  padding: 4.5rem 0 2rem;
}

.hero-grid,
.page-hero-grid,
.article-hero-grid,
.promo-grid,
.footer-grid,
.legal-layout,
.article-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.page-hero-grid,
.article-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  line-height: 0.97;
}

.hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.3rem, 3.65vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-title-accent {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #4333e7 0%, #5f54ff 52%, #2f9bff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0.06em;
  right: 0.02em;
  bottom: 0.08em;
  height: 0.16em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(67, 51, 231, 0.24), rgba(47, 155, 255, 0.08));
  z-index: -1;
}

.hero-title-accent-secondary {
  background: linear-gradient(135deg, #25274d 0%, #4333e7 55%, #2f9bff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lead {
  margin: 1.25rem 0 0;
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.78;
  color: #5a5f77;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--brand);
  font-family: "Sora", "Outfit", sans-serif;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  line-height: 1.2;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.button-inline {
  min-height: 46px;
}

.audience-jump {
  display: grid;
  gap: 0.22rem;
  min-width: min(100%, 22rem);
  padding: 0.95rem 1.15rem 1rem;
  border-radius: 1.35rem;
  color: var(--brand-deep);
  background: linear-gradient(180deg, rgba(67, 51, 231, 0.08), rgba(255, 255, 255, 0.94));
  box-shadow: inset 0 0 0 1px rgba(67, 51, 231, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.audience-jump:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(67, 51, 231, 0.14), 0 12px 28px rgba(31, 34, 68, 0.08);
  background: linear-gradient(180deg, rgba(67, 51, 231, 0.11), rgba(255, 255, 255, 0.96));
}

.audience-jump-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.audience-jump strong {
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.audience-jump-meta {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.card-frame,
.surface-card,
.metric-card,
.prose-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.card-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
}

.hero-visual {
  max-width: 100%;
}

.hero-visual img {
  width: 100%;
  min-height: 490px;
  object-fit: cover;
}

.card-frame img,
.surface-card-image img,
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 1.5rem 0 3rem;
}

.section-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 22ch;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.surface-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(67, 51, 231, 0.1), rgba(37, 39, 77, 0.04));
  box-shadow: inset 0 0 0 1px rgba(67, 51, 231, 0.08);
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--brand-deep);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.surface-card h2,
.surface-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.hero-copy p:not(.eyebrow):not(.lead) {
  max-width: 58ch;
}

.surface-card-wide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-note {
  margin: 0 0 1rem;
}

.surface-card-image {
  overflow: hidden;
  padding: 0;
  min-height: 360px;
}

.surface-card-device {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(91, 76, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 252, 0.96));
}

.surface-card-device .feature-showcase-device {
  width: 100%;
  min-height: 100%;
  align-items: center;
}

.surface-card-device .feature-device {
  width: min(280px, 82%);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-grid-inline {
  margin: 1.35rem 0 1.5rem;
  gap: 0.8rem;
}

.metric-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-sm);
}

.metric-grid-inline .metric-card {
  gap: 0.25rem;
  padding: 0.9rem 1rem 0.85rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(30, 33, 64, 0.05);
  backdrop-filter: none;
}

.metric-grid-citizens {
  margin-top: 1rem;
  gap: 1rem;
}

.metric-grid-institutional {
  margin-top: 1.15rem;
  gap: 0.9rem;
}

.institutional-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.15rem 0 1.35rem;
}

.metric-grid-citizens .metric-card {
  position: relative;
  overflow: hidden;
  min-height: 8.6rem;
  align-content: end;
  gap: 0.35rem;
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 1.45rem;
  color: #fff;
  box-shadow: 0 18px 40px rgba(31, 34, 68, 0.13);
}

.metric-grid-citizens .metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%);
  pointer-events: none;
}

.institutional-point {
  position: relative;
  display: grid;
  gap: 0.38rem;
  padding-left: 0;
}

.institutional-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.8rem;
  background: rgba(37, 39, 77, 0.04);
  box-shadow: inset 0 0 0 1px rgba(37, 39, 77, 0.06);
}

.institutional-point-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: #25274d;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.institutional-point-violet .institutional-point-icon svg {
  stroke: #5b4cff;
}

.institutional-point-slate .institutional-point-icon svg {
  stroke: #25274d;
}

.institutional-point-mint .institutional-point-icon svg {
  stroke: #2c8d76;
}

.institutional-point-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-card-violet {
  background: linear-gradient(180deg, rgba(67, 51, 231, 0.18), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(67, 51, 231, 0.12);
}

.metric-card-slate {
  background: linear-gradient(180deg, rgba(37, 39, 77, 0.16), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(37, 39, 77, 0.1);
}

.metric-card-mint {
  background: linear-gradient(180deg, rgba(102, 190, 160, 0.24), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(102, 190, 160, 0.16);
}

.metric-grid-citizens .metric-card-violet {
  background: linear-gradient(135deg, #4333e7 0%, #6671ff 100%);
  box-shadow: 0 18px 40px rgba(67, 51, 231, 0.22);
}

.metric-grid-citizens .metric-card-slate {
  background: linear-gradient(135deg, #25274d 0%, #4f5b8f 100%);
  box-shadow: 0 18px 40px rgba(37, 39, 77, 0.2);
}

.metric-grid-citizens .metric-card-mint {
  background: linear-gradient(135deg, #2c8d76 0%, #73cfb1 100%);
  box-shadow: 0 18px 40px rgba(44, 141, 118, 0.18);
}

.metric-card strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.metric-grid-inline .metric-card strong {
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.05em;
}

.institutional-point strong {
  font-size: clamp(0.94rem, 1.32vw, 1.05rem);
  line-height: 1.32;
  letter-spacing: -0.035em;
  color: var(--brand-deep);
}

.metric-grid-citizens .metric-card strong {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  line-height: 0.95;
  color: #fff;
}

.metric-card-violet strong {
  color: #3326b8;
}

.metric-card-slate strong {
  color: #25274d;
}

.metric-card-mint strong {
  color: #24785f;
}

.metric-card span {
  color: var(--muted);
}

.metric-grid-inline .metric-card span {
  font-size: 0.92rem;
  line-height: 1.35;
}

.metric-grid-citizens .metric-card span {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  font-size: 0.95rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .institutional-checklist {
    grid-template-columns: 1fr;
  }
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
  width: fit-content;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4333e7 0%, #5f54ff 52%, #2f9bff 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background-color 180ms ease;
}

.section-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #3d2fe0 0%, #554bfa 52%, #278df1 100%);
}

.section-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.promo-grid,
.footer-grid {
  grid-template-columns: 1.38fr 0.62fr;
}

.text-link,
.back-link,
.resources-card a {
  color: var(--brand);
  font-weight: 600;
}

.news-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.95rem;
}

.news-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.news-card-featured {
  grid-template-columns: 360px 1fr;
  gap: 1.15rem;
  padding: 1rem;
  border: 1px solid rgba(67, 51, 231, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 244, 255, 0.94));
  box-shadow: 0 22px 54px rgba(40, 41, 60, 0.1);
}

.news-card-featured .news-image {
  min-height: 280px;
}

.news-card-featured .news-copy h2 {
  font-size: clamp(1.72rem, 2.55vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.news-card-featured .news-copy p:not(.eyebrow) {
  font-size: 1.03rem;
  line-height: 1.55;
}

.news-card-featured .news-copy {
  padding-right: 0.4rem;
}

.news-card-featured .news-date {
  color: #4333e7;
}

.news-card-featured .news-link {
  color: #4333e7;
}

.news-image {
  min-height: 210px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
}

.news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.news-copy h2 {
  margin-bottom: 0.2rem;
  max-width: none;
  font-size: clamp(1.45rem, 2.15vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.news-copy p {
  margin: 0;
}

.news-date {
  margin-bottom: 0.1rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.15rem;
}

.news-link::after {
  content: "→";
  font-size: 1rem;
}

.page-hero-updates {
  padding-bottom: 0.75rem;
}

.page-hero-grid-updates {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 1.6rem;
  align-items: center;
}

.page-hero-grid-updates h1 {
  max-width: 8ch;
}

.page-hero-grid-updates .lead {
  max-width: 56ch;
}

.updates-hero-panel {
  display: grid;
  gap: 0.45rem;
  padding: 0.35rem 0 0;
  max-width: 500px;
  justify-self: end;
  border-top: 1px solid rgba(30, 33, 64, 0.12);
}

.updates-hero-note-label {
  margin: 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(67, 51, 231, 0.82);
}

.updates-hero-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: #6d7188;
}

.page-hero-compact {
  padding-bottom: 0;
}

.page-hero-features {
  padding-bottom: 1rem;
}

.page-hero-grid-features h1 {
  max-width: 10.5ch;
}

.feature-showcase-grid {
  display: block;
}

.feature-showcase-slider {
  display: grid;
  gap: 1.2rem;
}

.feature-showcase-slider-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.feature-showcase-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-showcase-control {
  appearance: none;
  border: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-deep);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.feature-showcase-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.feature-showcase-viewport::-webkit-scrollbar {
  display: none;
}

.feature-showcase-track {
  display: flex;
  gap: 1.55rem;
  width: max-content;
}

.feature-showcase-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.75rem 1.75rem 0;
  min-height: 560px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 252, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
  flex: 0 0 calc((100% - 4.65rem) / 4);
  transition: opacity 220ms ease, transform 220ms ease;
  scroll-snap-align: start;
}

.feature-showcase-card:not([data-active="true"]) {
  opacity: 0.92;
}

.feature-showcase-card h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.95rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.feature-showcase-card p {
  margin: -0.15rem 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #6d7188;
}

.feature-showcase-device {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 290px;
}

.feature-device {
  position: relative;
  width: min(290px, 74%);
  aspect-ratio: 0.56;
  border: 8px solid #2e2e33;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, rgba(245, 248, 255, 0.96), rgba(233, 242, 246, 0.96));
  box-shadow: 0 22px 60px rgba(40, 41, 60, 0.12);
}

.feature-device-notch {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 34%;
  height: 0.75rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #2e2e33;
}

.feature-device-screen {
  position: absolute;
  inset: 1rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #eef6ff, #f8fbff 40%, #eef2ff);
  overflow: hidden;
}

.feature-screen-ui {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem 1rem;
}

.feature-screen-ui span {
  display: block;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(67, 51, 231, 0.12);
}

.feature-screen-ui span:nth-child(1) {
  width: 62%;
}

.feature-screen-ui span:nth-child(2) {
  width: 86%;
}

.feature-screen-ui span:nth-child(3) {
  width: 48%;
}

.feature-device-screen::before {
  content: "";
  position: absolute;
  top: 4.1rem;
  left: 1rem;
  right: 1rem;
  height: 7.2rem;
  border-radius: 1.35rem;
  background: linear-gradient(135deg, rgba(67, 51, 231, 0.12), rgba(47, 155, 255, 0.08));
}

.feature-device-screen::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.15rem;
  height: 6rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(67, 51, 231, 0.06);
}

.feature-device-cool .feature-device-screen {
  background: linear-gradient(180deg, #ecf7ff, #f7fbff 34%, #edf1ff);
}

.feature-device-light .feature-device-screen {
  background: linear-gradient(180deg, #f9fbff, #ffffff 30%, #eef4ff);
}

.feature-device-plain .feature-device-screen {
  background: linear-gradient(180deg, #ffffff, #fbfbff 42%, #f1f4fa);
}

.feature-device-cool .feature-device-screen::before {
  background: linear-gradient(135deg, rgba(67, 51, 231, 0.18), rgba(47, 155, 255, 0.1));
}

.feature-device-light .feature-device-screen::before {
  background: linear-gradient(135deg, rgba(98, 140, 255, 0.11), rgba(67, 51, 231, 0.06));
}

.feature-device-plain .feature-device-screen::before {
  background: linear-gradient(135deg, rgba(37, 39, 77, 0.08), rgba(67, 51, 231, 0.05));
}

.section-features-support {
  padding-top: 0.5rem;
}

.feature-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-support-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.3rem 1.25rem 1.2rem;
  min-height: 0;
  position: relative;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 247, 252, 0.92));
  box-shadow: 0 18px 44px rgba(40, 41, 60, 0.08);
}

.feature-support-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(154, 118, 233, 0.82), rgba(154, 118, 233, 0.14));
}

.feature-support-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
}

.feature-support-card h3 {
  font-size: 1.38rem;
  line-height: 1.03;
  letter-spacing: -0.04em;
  min-height: 0;
  margin-top: 0.3rem;
}

.feature-support-card p {
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.42;
  color: #6d7188;
}

.feature-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.35rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(154, 118, 233, 0.14), rgba(154, 118, 233, 0.05));
  box-shadow: inset 0 0 0 1px rgba(154, 118, 233, 0.12);
  color: #9a76e9;
  flex-shrink: 0;
}

.feature-support-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-layout {
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 108px;
}

.legal-index ol {
  padding-left: 1.25rem;
  margin: 0;
}

.prose-card {
  padding: 1.75rem;
  border-radius: var(--radius);
}

.prose-card h2 {
  margin: 1.6rem 0 0.75rem;
  font-size: 1.5rem;
}

.prose-card p:first-child {
  margin-top: 0;
}

.legal-summary {
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 1.15rem;
  background: rgba(67, 51, 231, 0.04);
  border: 1px solid rgba(67, 51, 231, 0.08);
}

.legal-summary-label {
  margin: 0 0 0.55rem;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.legal-section + .legal-section {
  margin-top: 0.5rem;
}

.legal-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-list li {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

.legal-callout {
  margin-top: 1.4rem;
  padding: 1.1rem 1.15rem 0.35rem;
  border-radius: 1.15rem;
  background: rgba(37, 39, 77, 0.04);
  border: 1px solid rgba(37, 39, 77, 0.08);
}

.delete-prose {
  padding: 2rem;
}

.delete-prose h2 {
  margin-top: 1.8rem;
}

.delete-prose a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.delete-list {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.delete-list li {
  margin-bottom: 0.45rem;
}

.delete-template {
  margin-top: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(67, 51, 231, 0.05);
  border: 1px solid rgba(67, 51, 231, 0.08);
}

.delete-template p {
  margin: 0 0 0.55rem;
}

.delete-template p:last-child {
  margin-bottom: 0;
}

.bullet::before {
  content: "• ";
  color: var(--brand);
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
}

.resources-card {
  position: sticky;
  top: 108px;
}

.muted {
  color: var(--muted);
  font-size: 0.98rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, rgba(37, 39, 77, 0.98), rgba(67, 51, 231, 0.88));
  box-shadow: var(--shadow);
}

.site-footer h2,
.site-footer p,
.site-footer a {
  color: #fff;
}

.site-footer .muted a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.footer-links span {
  font-weight: 600;
}

.footer-links small {
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.footer-downloads {
  display: grid;
  gap: 0.8rem;
}

.footer-subrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  margin-top: 1rem;
  padding: 0 1.6rem;
  text-align: center;
}

.footer-panel-title {
  margin: 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.store-badges-footer {
  margin-top: 0;
  justify-content: center;
}

.store-badges-footer .store-badge img {
  height: 46px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .article-hero-grid,
  .promo-grid,
  .footer-grid,
  .legal-layout,
  .article-layout,
  .news-card {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .metric-grid,
  .feature-support-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase-slider-head {
    justify-content: flex-end;
  }

  .feature-showcase-card {
    min-height: 500px;
    flex-basis: 100%;
  }

  .feature-device {
    width: min(280px, 76%);
  }

  .footer-subrow {
    padding: 0;
    justify-content: center;
  }

  .legal-index,
  .resources-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand lang"
      "nav nav";
    align-items: center;
    gap: 0.65rem 0.75rem;
    min-height: auto;
    padding: 0.65rem 0 0.75rem;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    gap: 0.65rem;
  }

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

  .brand span {
    font-size: 1.1rem;
  }

  .site-nav {
    grid-area: nav;
    width: auto;
    justify-content: center;
    margin: 0 auto;
    padding: 0.2rem 0;
    gap: 0.75rem;
  }

  .language-switch {
    grid-area: lang;
    justify-self: end;
    gap: 0.2rem;
    padding: 0.22rem;
  }

  .language-switch a {
    min-width: 42px;
    padding: 0.52rem 0.65rem;
    font-size: 0.82rem;
  }

  .site-nav a {
    padding: 0.2rem 0.05rem;
    font-size: 0.92rem;
  }

  .site-nav a + a {
    padding-left: 0.85rem;
  }

  .site-nav a + a::before {
    left: -0.02rem;
    height: 0.9rem;
  }

  .hero,
  .page-hero,
  .article-hero {
    padding-top: 2.5rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .article-hero h1 {
    max-width: none;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .store-badges {
    width: 100%;
    justify-content: center;
  }

  .hero-visual img {
    min-height: 280px;
  }

  .news-image {
    min-height: 200px;
  }
}
