/* ===========================================
   GezApp Landing Styles
   Aesthetic: Modern Editorial Travel
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* === CSS Variables === */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(0, 201, 167, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 201, 167, 0.2);

  --text-primary: #f5f5f3;
  --text-secondary: #a8a8a3;
  --text-tertiary: #6b6b66;

  --accent: #00C9A7;
  --accent-soft: rgba(0, 201, 167, 0.15);
  --accent-glow: rgba(0, 201, 167, 0.4);
  --gold: #F5C542;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
  --space-2xl: 160px;

  /* Layout */
  --max-width: 1280px;
  --content-width: 1080px;
  --text-width: 720px;
}

/* === Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* === Atmospheric Background === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 201, 167, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(245, 197, 66, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 201, 167, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.03;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid var(--border-subtle);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.logo__mark {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 201, 167, 0.4));
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-secondary);
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
}

.nav__lang-btn {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  border-radius: 100px;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav__lang-btn.active {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
}

.nav__lang-btn:hover:not(.active) {
  color: var(--text-primary);
}

/* === Hero Section === */
.hero {
  padding-top: 160px;
  padding-bottom: var(--space-xl);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s ease 0.1s backwards;
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s ease 0.2s backwards;
}

.hero__title-line {
  display: block;
}

.hero__title-line:nth-child(1) { animation: fadeUp 0.8s ease 0.2s backwards; }
.hero__title-line:nth-child(2) { animation: fadeUp 0.8s ease 0.35s backwards; }
.hero__title-line:nth-child(3) { animation: fadeUp 0.8s ease 0.5s backwards; }

.hero__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s ease 0.65s backwards;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: fadeUp 0.8s ease 0.8s backwards;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.app-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 245, 243, 0.15);
}

.app-store-button--disabled {
  background: var(--bg-tertiary);
  color: var(--text-tertiary);
  border-color: var(--border-subtle);
  cursor: not-allowed;
  position: relative;
}

.app-store-button--disabled:hover {
  transform: none;
  box-shadow: none;
}

.app-store-button--disabled .app-store-button__small {
  color: var(--accent);
  font-weight: 600;
}

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-store-button__icon {
  width: 28px;
  height: 28px;
}

.app-store-button__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.app-store-button__small {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 400;
}

.app-store-button__big {
  font-size: 17px;
  font-weight: 600;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  animation: fadeUp 0.8s ease 1s backwards;
}

.hero__stat {
  position: relative;
  padding: var(--space-md);
  background: linear-gradient(145deg,
    rgba(0, 201, 167, 0.08) 0%,
    rgba(0, 201, 167, 0.02) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  text-align: left;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__stat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

.hero__stat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: linear-gradient(145deg,
    rgba(0, 201, 167, 0.12) 0%,
    rgba(0, 201, 167, 0.04) 100%);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* === Hero Phone Mockup === */
.hero__phone {
  position: relative;
  animation: fadeIn 1.2s ease 0.5s backwards;
}

.phone {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  border-radius: 48px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 12px;
  position: relative;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 16px 32px rgba(0, 201, 167, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1500px) rotateY(-12deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone:hover {
  transform: perspective(1500px) rotateY(-8deg) rotateX(0deg);
}

.phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 100px;
  z-index: 2;
}

.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #0e0e0e 0%, #1a1a1a 100%);
  overflow: hidden;
  position: relative;
}

/* Placeholder content inside phone */
.phone__placeholder {
  padding: 60px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.phone__greeting {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  padding: 0 4px;
  margin-top: 8px;
}

.phone__subgreeting {
  font-size: 12px;
  color: var(--text-tertiary);
  padding: 0 4px;
  margin-bottom: 8px;
}

.phone__hero-card {
  height: 130px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.15) 0%, rgba(245, 197, 66, 0.08) 100%);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.phone__hero-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  border-radius: 50%;
}

.phone__hero-badge {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  background: var(--gold);
  color: #5a3800;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone__hero-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.phone__hero-meta {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 3px;
}

.phone__section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0 4px;
  margin-top: 6px;
}

.phone__cards {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.phone__mini-card {
  flex: 1;
  height: 80px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.phone__mini-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.2), transparent);
}

.phone__mini-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.15), transparent);
}

.phone__mini-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.1), transparent);
}

/* === Section Styles === */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}

.section__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* === Features Grid === */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: var(--content-width);
  margin: 0 auto;
}

.feature {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature:hover {
  background: rgba(0, 201, 167, 0.07);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.feature:hover::before {
  opacity: 1;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 24px;
  border: 1px solid var(--border-accent);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.feature__description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* === Business Section === */
.business {
  background: linear-gradient(135deg,
    rgba(0, 201, 167, 0.04) 0%,
    rgba(245, 197, 66, 0.02) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.business__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.business__content {
  text-align: left;
}

.business__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.business__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}

.business__description {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.tiers {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tier:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.tier__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.tier__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier__badge--top {
  background: var(--accent-soft);
  color: var(--accent);
}

.tier__badge--promoted {
  background: rgba(245, 197, 66, 0.15);
  color: var(--gold);
}

.tier__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.tier__price-unit {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 400;
  font-family: var(--font-body);
  margin-left: 4px;
}

.business__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
}

.business__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--accent-glow);
}

/* === Download Section === */
.download {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.download__inner {
  max-width: 680px;
  margin: 0 auto;
}

/* === Footer === */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--bg-secondary);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__brand {
  max-width: 320px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: var(--text-secondary);
}

.footer__social a:hover {
  background: var(--accent-soft);
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* === Animations === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Scroll-triggered animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* === Responsive === */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .hero__phone {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .business__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

@media (max-width: 640px) {
  :root {
    --space-2xl: 96px;
    --space-xl: 64px;
  }

  .nav {
    gap: var(--space-md);
  }

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

  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero__stats {
    flex-direction: row;
    width: 100%;
  }

  .hero__stat {
    flex: 1;
  }

  .hero__stat-value {
    font-size: 24px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .tier {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .tier__price {
    align-self: flex-end;
  }
}

/* === Legal Pages (Privacy/Terms) === */
.legal {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
}

.legal__container {
  max-width: var(--text-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal__header {
  margin-bottom: var(--space-xl);
  text-align: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

.legal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-sm);
}

.legal__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}

.legal__updated {
  font-size: 14px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.legal__lang-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-secondary);
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  margin-top: var(--space-md);
}

.legal__lang-switcher a {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  border-radius: 100px;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal__lang-switcher a.active {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
}

.legal__lang-switcher a:hover:not(.active) {
  color: var(--text-primary);
}

.legal__content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.legal__content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.legal__content p {
  margin-bottom: var(--space-md);
}

.legal__content ul,
.legal__content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.legal__content li {
  margin-bottom: 8px;
}

.legal__content li::marker {
  color: var(--accent);
}

.legal__content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal__content a {
  color: var(--accent);
  border-bottom: 1px solid var(--border-accent);
  transition: all 0.2s ease;
}

.legal__content a:hover {
  border-bottom-color: var(--accent);
}

.legal__content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 14px;
}

.legal__content table th,
.legal__content table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.legal__content table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--border-accent);
}

.legal__content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.legal__content hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: var(--space-lg) 0;
}

.legal__content code {
  background: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'SF Mono', Monaco, monospace;
  color: var(--accent);
}

/* Special callout style */
.legal__content .callout {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: var(--space-md);
  margin: var(--space-md) 0;
}
