:root {
  --bg: #0b0b0e;
  --card-bg: #16161d;
  --card-raised: #1d1d26;
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-strong: rgba(99, 102, 241, 0.38);
  --text-primary: #f2f2f7;
  --text-secondary: #9898a0;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.16);
  --orange: #ff922b;
  --orange-glow: rgba(255, 146, 43, 0.16);
  --success: #34c759;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(99, 102, 241, 0.14), transparent 31rem),
    radial-gradient(circle at 4% 38%, rgba(82, 20, 150, 0.13), transparent 28rem),
    var(--bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 4px;
}

.site-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.34));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.nav-links a.active,
.nav-links .nav-pill.active {
  padding: 7px 15px;
  border: 1px solid var(--card-border-strong);
  border-radius: 999px;
  color: var(--accent-light);
  background: var(--accent-glow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.76fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  min-height: calc(100vh - 84px);
  padding: 64px 0 90px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  margin-bottom: 22px;
  border: 1px solid rgba(99, 102, 241, 0.32);
  border-radius: 999px;
  background: var(--accent-glow);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

h1,
h2,
h3 {
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  font-weight: 850;
}

.accent-text {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 660px;
  margin-top: 26px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: var(--card-bg);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--card-raised);
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(99, 102, 241, 0.3);
}

.button.primary:hover {
  background: #7477f5;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: var(--text-secondary);
  font-size: 0.86rem;
}

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

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

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}

.hero-visual::before {
  position: absolute;
  inset: 9% -13% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), rgba(65, 35, 150, 0.08) 56%, transparent 72%);
  filter: blur(18px);
  content: "";
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -26px;
  bottom: 10%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 146, 43, 0.28);
  border-radius: 14px;
  background: rgba(18, 18, 24, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  color: var(--orange);
  font-size: 0.87rem;
  font-weight: 750;
  backdrop-filter: blur(18px);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  margin-bottom: 11px;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 830;
}

.section-heading p {
  max-width: 640px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 1.04rem;
}

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

.feature-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(29, 29, 38, 0.95), rgba(18, 18, 24, 0.96));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.2);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 11px;
  background: var(--accent-glow);
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.showcase {
  overflow: hidden;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(99, 102, 241, 0.035);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.screenshot-card:nth-child(2) {
  margin-top: 48px;
}

.screenshot-card:nth-child(3) {
  margin-top: 96px;
}

.screenshot-card img {
  width: 100%;
  height: auto;
}

.screenshot-card figcaption {
  padding: 17px 19px 19px;
  border-top: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 840px);
  margin: 28px auto 0;
}

.gallery-strip figure {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--card-bg);
}

.gallery-strip img {
  width: 100%;
  height: auto;
}

.gallery-strip figcaption {
  padding: 14px 16px 16px;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--card-border-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.3), transparent 26rem),
    linear-gradient(140deg, rgba(99, 102, 241, 0.12), rgba(22, 22, 29, 0.98));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.cta-panel p {
  max-width: 620px;
  margin-top: 15px;
  color: var(--text-secondary);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0 46px;
  border-top: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  margin: 0 2px;
  user-select: none;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.16);
  font-weight: 300;
  margin: 0 4px;
  user-select: none;
}

/* Platform Switcher & Showcase Views */
.platform-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 6px;
  background: var(--card-bg);
  border: 1px solid var(--card-border-strong);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tab-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 750;
  cursor: pointer;
  transition: all 220ms ease;
}

.tab-button:hover {
  color: #ffffff;
}

.tab-button.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
}

.platform-view {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.platform-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Other Projects / Product Cards */
.product-card {
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(29, 29, 38, 0.95), rgba(18, 18, 24, 0.98));
  box-shadow: var(--shadow);
}

.product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(99, 102, 241, 0.3);
  font-size: 1.8rem;
}

.product-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.product-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

.product-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 20px;
  max-width: 760px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Support page */
.support-main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 110px;
}

.support-header {
  margin-bottom: 34px;
}

.support-header h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.support-header > p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

/* Page Layouts & Policy Document Cards */
.page-main {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 100px;
}

.page-header {
  margin-bottom: 34px;
}

.page-header h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.page-header > p {
  max-width: 650px;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.effective-date {
  color: var(--accent-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 8px;
}

.contact-card,
.support-card,
.policy-card {
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  margin-bottom: 24px;
}

.policy-card h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #ffffff;
}

.policy-card p,
.policy-card li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.policy-card ul {
  margin: 12px 0 16px 20px;
}

.policy-card li + li {
  margin-top: 6px;
}

.contact-card {
  margin-bottom: 24px;
  border-color: rgba(99, 102, 241, 0.34);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(22, 22, 29, 0.96));
}

.contact-card h2,
.support-card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.contact-card p,
.support-card p,
.support-card li {
  color: var(--text-secondary);
}

.contact-address {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-light);
  font-size: clamp(1rem, 4vw, 1.24rem);
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.support-card {
  margin-top: 24px;
}

.support-card ul {
  margin: 16px 0 0 21px;
}

.support-card li + li {
  margin-top: 8px;
}

.faq-list {
  margin-top: 16px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 18px 34px 18px 0;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 2px;
  color: var(--accent-light);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 34px 18px 0;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p,
  .hero-copy h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .button-row,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(88%, 430px);
  }

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

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

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .site-shell,
  .support-main {
    width: min(100% - 28px, 1160px);
  }

  .site-nav {
    min-height: 72px;
  }

  .nav-links a:not(.nav-pill):not(.lang-option),
  .nav-links .nav-disabled {
    display: none !important;
  }

  .nav-links {
    gap: 0;
  }

  .lang-switcher {
    margin-left: 0;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 54px 0 76px;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4.4rem);
  }

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

  .section {
    padding: 78px 0;
  }

  .feature-grid,
  .screenshot-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .feature-number {
    margin-bottom: 32px;
  }

  .screenshot-card:nth-child(2),
  .screenshot-card:nth-child(3) {
    margin-top: 0;
  }

  .gallery-strip {
    gap: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-main {
    padding-top: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Google Play Beta Modal & Card Styles */
.beta-card {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.07), rgba(22, 22, 29, 0.98));
  box-shadow: var(--shadow);
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.beta-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.beta-step-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card-bg);
  transition: transform 200ms ease, border-color 200ms ease;
}

.beta-step-item:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.4);
}

.beta-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.beta-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-weight: 850;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.beta-step-title {
  font-size: 1.08rem;
  font-weight: 750;
  color: #ffffff;
}

.beta-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.beta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--card-raised);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: all 180ms ease;
  width: 100%;
}

.beta-btn:hover {
  background: #16a34a;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-1px);
}

/* Modal Popup Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid rgba(52, 199, 89, 0.4);
  border-radius: 24px;
  background: var(--bg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  transform: scale(0.94);
  transition: transform 250ms ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}

.modal-close:hover {
  color: #ffffff;
  background: var(--card-raised);
}

/* Language Switcher Dropdown */
.lang-switcher {
  position: relative;
  display: inline-block;
  margin-left: 8px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--card-border-strong);
  border-radius: 999px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 180ms ease;
}

.lang-btn:hover {
  background: var(--card-raised);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1000;
  min-width: 140px;
  padding: 6px;
  border: 1px solid var(--card-border-strong);
  border-radius: 14px;
  background: rgba(22, 22, 29, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

@media (hover: hover) {
  .lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.lang-option:hover {
  background: rgba(99, 102, 241, 0.15);
  color: #ffffff;
}

.lang-option.active {
  color: var(--accent-light);
  font-weight: 750;
}

/* Roadmap Disabled Link Styles */
.nav-links a.nav-disabled,
.nav-links .nav-disabled {
  color: rgba(255, 255, 255, 0.28) !important;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0;
  user-select: none;
  pointer-events: none;
  position: relative;
  font-weight: 600;
}

.nav-links a.nav-disabled:hover {
  color: rgba(255, 255, 255, 0.28) !important;
}

.nav-soon-tag {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.35);
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -6px;
  margin-left: 3px;
}

.footer-disabled {
  color: rgba(255, 255, 255, 0.28) !important;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0;
  pointer-events: none;
  position: relative;
}

.footer-soon-tag {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1.5px 4px;
  border-radius: 3px;
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -5px;
  margin-left: 2px;
}

/* Roadmap Page Styles */
.roadmap-main {
  padding: 64px 0 100px;
}

.roadmap-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.roadmap-header p {
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.6;
  margin-top: 14px;
}

.roadmap-section {
  margin-bottom: 64px;
}

.roadmap-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--card-border);
}

.roadmap-section-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
}

.roadmap-section-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.roadmap-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roadmap-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.roadmap-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.roadmap-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.roadmap-card-body h3 {
  font-size: 1.2rem;
  font-weight: 750;
  margin-bottom: 8px;
}

.roadmap-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.58;
}

.roadmap-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.roadmap-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.platform-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.roadmap-status {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
  line-height: 1.2;
}

.status-dev {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.status-planned {
  background: rgba(168, 85, 247, 0.18);
  color: #d8b4fe;
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.status-exploring {
  background: rgba(245, 158, 11, 0.18);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

@media (max-width: 768px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-main {
    padding-top: 42px;
  }
}

