:root {
  --page: #edf5fb;
  --page-wash: #f7fbfe;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #fbfeff;
  --surface-muted: rgba(236, 246, 251, 0.86);
  --panel-dark: #0d3b66;
  --panel-dark-2: #04162a;
  --ink: #04162a;
  --ink-soft: #365675;
  --ink-faint: #6684a1;
  --line: rgba(4, 22, 42, 0.12);
  --line-strong: rgba(13, 59, 102, 0.22);
  --accent: #20cab9;
  --accent-strong: #00a091;
  --accent-soft: #9fe4db;
  --accent-glow: rgba(32, 202, 185, 0.24);
  --mint-soft: #def6f2;
  --gold-soft: #d8e7f4;
  --white: #fffdf8;
  --shadow-lg: 0 28px 80px rgba(17, 31, 27, 0.15);
  --shadow-md: 0 18px 42px rgba(17, 31, 27, 0.11);
  --shadow-sm: 0 10px 24px rgba(17, 31, 27, 0.08);
  --radius-2xl: 36px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --max: 1200px;
  --font-sans: "Inter", "Segoe UI", sans-serif;
  --font-display: "Manrope", "Inter", "Segoe UI", sans-serif;
}

:lang(th) {
  --font-sans: "Noto Sans Thai", sans-serif;
  --font-display: "Noto Sans Thai", sans-serif;
}

:lang(hi) {
  --font-sans: "Noto Sans Devanagari", sans-serif;
  --font-display: "Noto Sans Devanagari", sans-serif;
}

:lang(ta) {
  --font-sans: "Noto Sans Tamil", sans-serif;
  --font-display: "Noto Sans Tamil", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top right, rgba(32, 202, 185, 0.16), transparent 22rem),
    radial-gradient(circle at 12% 18%, rgba(13, 59, 102, 0.12), transparent 24rem),
    linear-gradient(180deg, #f7fbfe 0%, #edf5fb 42%, #f3f9fd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 75%);
  opacity: 0.35;
}

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

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

button,
select {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(32, 202, 185, 0.28);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(28px);
}

.page-shell::before {
  width: 30rem;
  height: 30rem;
  top: 14rem;
  right: -8rem;
  background: rgba(32, 202, 185, 0.12);
}

.page-shell::after {
  width: 28rem;
  height: 28rem;
  left: -10rem;
  top: 48rem;
  background: rgba(13, 59, 102, 0.1);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(13, 59, 102, 0.9), rgba(24, 79, 131, 0.72));
  border-bottom: 1px solid rgba(159, 228, 219, 0.14);
  box-shadow: 0 10px 28px rgba(4, 22, 42, 0.18);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 0.85rem;
  color: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-pill);
  font-size: 0.93rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.locale-picker {
  min-width: 10.5rem;
  min-height: 2.8rem;
  border: 1px solid rgba(159, 228, 219, 0.16);
  border-radius: var(--radius-pill);
  padding: 0 2.9rem 0 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23DFF7F4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.9rem auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 6.8rem 0 2.8rem;
  background:
    radial-gradient(circle at 82% 16%, rgba(159, 228, 219, 0.18), transparent 0, transparent 18rem),
    radial-gradient(circle at 64% 58%, rgba(32, 202, 185, 0.28), transparent 0, transparent 26rem),
    radial-gradient(circle at 18% 8%, rgba(84, 152, 214, 0.18), transparent 0, transparent 22rem),
    linear-gradient(120deg, #184f83 0%, #0d3b66 28%, #0c4472 54%, #0a6e88 78%, #00a091 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 14rem;
  background: linear-gradient(180deg, rgba(4, 22, 42, 0), rgba(4, 22, 42, 0.26));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
  gap: 2.75rem;
  align-items: center;
  min-height: calc(100vh - 11rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  border: 0;
  color: rgba(159, 228, 219, 0.94);
  background: transparent;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #20cab9 0%, #9fe4db 100%);
  box-shadow: 0 0 0 8px rgba(32, 202, 185, 0.12);
}

.hero h1,
.section h2,
.cta-panel h2,
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 9ch;
  margin-top: 1.15rem;
  color: var(--white);
  font-size: clamp(3.8rem, 8vw, 6.9rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 44rem;
  margin: 1.2rem 0 0;
  color: rgba(236, 247, 255, 0.82);
  font-size: 1.2rem;
  line-height: 1.5;
}

.hero-accent {
  color: #9fe4db;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}

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

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

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.store-badge {
  display: block;
  height: 3.2rem;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(159, 228, 219, 0.34), transparent 32%),
    linear-gradient(135deg, #20cab9 0%, #00a091 100%);
  box-shadow: 0 22px 48px rgba(0, 160, 145, 0.24);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(159, 228, 219, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(4, 22, 42, 0.14);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  max-width: 58rem;
  margin-top: 3rem;
}

.point-card,
.feature-card,
.step-card,
.locale-card,
.quote-card,
.cta-panel,
.mockup-panel,
.audience-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 38, 34, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.point-card {
  min-height: 0;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 1.2rem;
  border-color: rgba(159, 228, 219, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(4, 22, 42, 0.12);
  backdrop-filter: blur(14px);
}

.point-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.35rem;
  background: linear-gradient(90deg, rgba(32, 202, 185, 0.92), rgba(159, 228, 219, 0.72));
}

.point-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  color: var(--white);
}

.point-card span {
  color: rgba(235, 247, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.mockup-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 2rem 1.5rem 2.3rem;
  border-radius: 2.4rem;
  border-color: rgba(159, 228, 219, 0.14);
  background:
    radial-gradient(circle at 18% 16%, rgba(159, 228, 219, 0.22), transparent 0, transparent 13rem),
    radial-gradient(circle at 86% 84%, rgba(84, 152, 214, 0.2), transparent 0, transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(16px);
}

.mockup-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-2xl) - 0.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.mockup-panel::after {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  right: -4rem;
  bottom: -5rem;
  z-index: -1;
  border-radius: 999px;
  background: rgba(32, 202, 185, 0.18);
  filter: blur(24px);
}

.mockup-device {
  position: relative;
  width: min(100%, 22rem);
  padding: 0.65rem;
  border-radius: 3.1rem;
  background: linear-gradient(160deg, #2a343a 0%, #0b0f12 38%, #1f303a 100%);
  box-shadow:
    0 30px 70px rgba(4, 22, 42, 0.34),
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.mockup-device::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 34%;
  height: 1.7rem;
  border-radius: 999px;
  background: #020303;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.mockup-screen {
  position: relative;
  overflow: hidden;
  border-radius: 2.55rem;
  background: #f6f8fb;
  aspect-ratio: 1206 / 2622;
}

.mockup-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  max-width: 12rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 251, 246, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-sm);
}

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

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

.floating-card span {
  margin-top: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.45;
}

.floating-a {
  top: 2rem;
  right: 0.45rem;
}

.floating-b {
  left: 0.35rem;
  bottom: 2.3rem;
}

.section {
  position: relative;
  padding: 5.2rem 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(var(--max), calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(24, 38, 34, 0.12), transparent);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.4rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-label {
  margin: 0 0 0.85rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1;
}

.section-header p,
.feature-card p,
.step-card p,
.locale-card p,
.quote-card p,
.audience-card p,
.cta-panel p,
.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.76;
}

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

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

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

.feature-card,
.step-card,
.locale-card,
.audience-card {
  min-height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px rgba(13, 59, 102, 0.08);
}

.feature-card {
  grid-column: span 6;
  display: grid;
  align-content: start;
  gap: 0.25rem;
  min-height: 15.5rem;
  padding-top: 4.25rem;
  border-color: rgba(13, 59, 102, 0.08);
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-card:nth-child(1) {
  background:
    radial-gradient(circle at top right, rgba(159, 228, 219, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(231, 243, 252, 0.94));
}

.feature-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(32, 202, 185, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(227, 248, 245, 0.92));
}

.feature-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(24, 79, 131, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(229, 240, 250, 0.94));
}

.feature-card:nth-child(4) {
  background:
    radial-gradient(circle at top right, rgba(159, 228, 219, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(232, 244, 248, 0.94));
}

.card-icon {
  position: absolute;
  top: 1.35rem;
  left: 1.45rem;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 0;
  color: #0d3b66;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  background: none;
  border: 0;
  box-shadow: none;
}

.feature-card h3,
.step-card h3,
.locale-card h3,
.audience-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.28rem;
  line-height: 1.14;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(159, 228, 219, 0.14);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.32rem;
  background: linear-gradient(90deg, rgba(4, 22, 42, 0.95), rgba(32, 202, 185, 0.92));
}

.step-card::after {
  content: "";
  position: absolute;
  top: 2.45rem;
  left: calc(100% - 0.2rem);
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 38, 34, 0.22), transparent);
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
  padding: 0.42rem 0.62rem;
  border-radius: 0.85rem;
  color: #9fe4db;
  background: rgba(159, 228, 219, 0.09);
  box-shadow: inset 0 0 0 1px rgba(159, 228, 219, 0.18);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 1.2rem;
}

.quote-card,
.locale-card {
  padding: 1.9rem;
  border-radius: var(--radius-2xl);
}

.quote-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(159, 228, 219, 0.18), transparent 24%),
    linear-gradient(160deg, #0d3b66 0%, #04162a 100%);
  box-shadow: 0 30px 80px rgba(8, 19, 18, 0.24);
}

.quote-card .section-label,
.quote-card p {
  color: rgba(245, 241, 233, 0.78);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 3.4vw, 3.6rem);
  line-height: 0.98;
}

.locale-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(229, 242, 248, 0.86));
  border-color: rgba(13, 59, 102, 0.08);
}

.signal-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.signal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink);
  line-height: 1.6;
}

.signal-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #20cab9 0%, #184f83 100%);
  box-shadow: 0 0 0 6px rgba(32, 202, 185, 0.1);
}

.locale-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.locale-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(13, 59, 102, 0.1);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.audience-card {
  grid-column: span 4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(234, 244, 250, 0.92));
  border-color: rgba(13, 59, 102, 0.08);
  padding-top: 2rem;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.28rem;
  background: linear-gradient(90deg, rgba(32, 202, 185, 0.88), rgba(24, 79, 131, 0.76));
}

#flow .container {
  position: relative;
  padding: 2.3rem;
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(159, 228, 219, 0.18), transparent 20rem),
    radial-gradient(circle at 18% 92%, rgba(32, 202, 185, 0.12), transparent 22rem),
    linear-gradient(145deg, #184f83 0%, #0d3b66 38%, #04162a 100%);
  box-shadow: 0 30px 84px rgba(4, 22, 42, 0.28);
}

#flow .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 80%);
  pointer-events: none;
}

#flow::before {
  display: none;
}

#flow .section-header,
#flow .steps-grid {
  position: relative;
  z-index: 1;
}

#flow .section-header {
  align-items: start;
  margin-bottom: 1.9rem;
}

#flow .section-label {
  color: rgba(159, 228, 219, 0.92);
}

#flow h2 {
  color: var(--white);
  max-width: 11ch;
  text-wrap: balance;
}

#flow .section-header > p {
  max-width: 32rem;
  color: rgba(234, 246, 255, 0.82);
  font-size: 1.04rem;
}

#flow .step-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border-color: rgba(159, 228, 219, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(4, 22, 42, 0.2);
}

#flow .step-card::before {
  background: linear-gradient(90deg, rgba(159, 228, 219, 0.88), rgba(32, 202, 185, 0.88));
}

#flow .step-card h3 {
  color: var(--white);
  font-size: 1.16rem;
}

#flow .step-card p {
  color: rgba(234, 246, 255, 0.74);
}

#flow .step-number {
  color: #9fe4db;
  background: rgba(159, 228, 219, 0.12);
  box-shadow: inset 0 0 0 1px rgba(159, 228, 219, 0.22);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 85% 18%, rgba(159, 228, 219, 0.2), transparent 18rem),
    linear-gradient(140deg, #0d3b66 0%, #04162a 100%);
  box-shadow: 0 30px 90px rgba(8, 19, 18, 0.24);
}

.cta-panel .section-label,
.cta-panel p {
  color: rgba(248, 244, 237, 0.78);
}

.cta-panel h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  line-height: 0.98;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: center;
  justify-content: flex-end;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, rgba(247, 251, 254, 0), rgba(231, 242, 250, 0.82));
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(13, 59, 102, 0.1);
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.footer-credit {
  color: #0d3b66;
  font-weight: 800;
}

.footer-credit:hover {
  color: #00a091;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

:lang(th) .hero h1,
:lang(hi) .hero h1,
:lang(ta) .hero h1,
:lang(th) .quote-card blockquote,
:lang(hi) .quote-card blockquote,
:lang(ta) .quote-card blockquote,
:lang(th) .section h2,
:lang(hi) .section h2,
:lang(ta) .section h2 {
  max-width: 12ch;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

:lang(th) .eyebrow,
:lang(hi) .eyebrow,
:lang(ta) .eyebrow,
:lang(th) .section-label,
:lang(hi) .section-label,
:lang(ta) .section-label {
  letter-spacing: 0.05em;
}

@media (max-width: 1120px) {
  .hero-grid,
  .section-header,
  .trust-grid,
  .cta-panel,
  .steps-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 5.8rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.5rem, 8vw, 5.4rem);
  }

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

  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .audience-card {
    grid-column: span 1;
  }

  .mockup-panel {
    max-width: 44rem;
    margin-inline: auto;
  }

  .step-card::after {
    display: none;
  }

  .cta-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
  }

  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: stretch;
  }

  .nav a,
  .locale-picker {
    width: 100%;
  }

  .hero {
    padding-top: 5.1rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.9rem, 14vw, 4.15rem);
    line-height: 0.96;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.58;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }

  .store-badge {
    height: 2.9rem;
  }

  .hero-points,
  .features-grid,
  .locale-list {
    grid-template-columns: 1fr;
  }

  #flow .container {
    padding: 1.45rem;
    border-radius: 1.5rem;
  }

  .feature-card,
  .audience-card {
    min-height: 0;
  }

  .section {
    padding-bottom: 4rem;
  }

  .quote-card blockquote,
  .cta-panel h2,
  .section h2 {
    line-height: 1.05;
  }

  .floating-a,
  .floating-b {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .mockup-panel {
    padding: 1.3rem;
    background: none;
    backdrop-filter: none;
  }

  .mockup-device {
    width: min(100%, 20rem);
  }

  .mockup-panel::before,
  .mockup-panel::after {
    display: none;
  }
}

@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,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
