:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --card: #111f34;
  --card-2: #16243a;
  --gold: #d4af37;
  --gold-soft: #f3d27a;
  --gold-pale: #fff0b6;
  --text: #f8fafc;
  --muted: #a8b4c7;
  --line: rgba(212, 175, 55, 0.22);
  --white-line: rgba(255, 255, 255, 0.08);
  --green: #38a169;
  --purple: #8157d6;
  --orange: #d98020;
  --gray: #7b8493;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[lang="tr"] [data-lang="en"],
html[lang="en"] [data-lang="tr"] {
  display: none !important;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 10% 3%,
      rgba(212, 175, 55, 0.11),
      transparent 26rem
    ),
    radial-gradient(
      circle at 90% 25%,
      rgba(76, 111, 172, 0.12),
      transparent 30rem
    ),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

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

.shell {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 34px rgba(212, 175, 55, 0.13);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.lang-switch {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.lang-switch button {
  border: 0;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
}

html[lang="tr"] #lang-tr,
html[lang="en"] #lang-en {
  color: var(--bg);
  background: var(--gold-soft);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: center;
  padding: 86px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.07);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0 20px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -3.2px;
}

.hero h1 strong {
  color: var(--gold-soft);
  font-weight: 950;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
}

.button.primary {
  color: #101726;
  border-color: var(--gold);
  background:
    linear-gradient(
      135deg,
      #d8ad32,
      #ffe181
    );
  box-shadow: 0 15px 42px rgba(212, 175, 55, 0.12);
}

.button.secondary {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.035);
}

.store-note {
  margin-top: 15px;
  color: #7f8ba0;
  font-size: 12.5px;
}

.phone-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.18),
      transparent 65%
    );
  filter: blur(2px);
}

.phone {
  position: relative;
  width: min(360px, 88vw);
  padding: 14px;
  border: 1px solid rgba(243, 210, 122, 0.33);
  border-radius: 44px;
  background: #030a13;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(255, 255, 255, 0.025);
  transform: rotate(2deg);
}

.phone-screen {
  min-height: 520px;
  padding: 22px 18px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 5% 4%,
      rgba(212, 175, 55, 0.12),
      transparent 13rem
    ),
    #0a1525;
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.phone-head img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.phone-head small {
  color: var(--muted);
}

.phone-card {
  margin-top: 12px;
  padding: 17px;
  border: 1px solid var(--white-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.phone-card.gold {
  border-color: rgba(212, 175, 55, 0.35);
  background:
    linear-gradient(
      120deg,
      rgba(212, 175, 55, 0.12),
      rgba(255, 255, 255, 0.035)
    );
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
  font-size: 13px;
  color: var(--muted);
}

.metric-row strong {
  color: var(--text);
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-soft)
    );
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 34px;
}

.kicker {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.7px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.feature-card,
.trust-card,
.link-card {
  border: 1px solid var(--white-line);
  border-radius: 25px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.02)
    );
}

.feature-card {
  min-height: 230px;
  padding: 23px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  font-size: 21px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 22px;
}

.trust-card {
  padding: 28px;
}

.trust-bands {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.trust-band {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.trust-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.trust-dot.green {
  background: var(--green);
}

.trust-dot.purple {
  background: var(--purple);
}

.trust-dot.orange {
  background: var(--orange);
}

.trust-dot.gray {
  background: var(--gray);
}

.trust-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-note h3 {
  margin: 0 0 13px;
  font-size: 28px;
}

.trust-note p {
  margin: 0 0 13px;
  color: var(--muted);
}

.disclaimer {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 5px 14px 14px 5px;
  background: rgba(212, 175, 55, 0.07);
  color: #c7d0dd;
  font-size: 13px;
}

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

.link-card {
  padding: 19px;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.38);
}

.link-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-soft);
}

.link-card span {
  color: var(--muted);
  font-size: 13px;
}

.cta {
  margin: 54px 0 80px;
  padding: 42px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(
      125deg,
      rgba(212, 175, 55, 0.16),
      rgba(14, 32, 57, 0.78)
    );
}

.cta > div:first-child {
  margin-right: auto;
}

.cta h2 {
  margin: 0 0 7px;
  font-size: 31px;
}

.cta p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--white-line);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.footer-brand {
  margin-right: auto;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand p {
  max-width: 430px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 12.5px;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 22px;
  color: #6e7a8e;
  font-size: 12px;
}

.subpage-hero {
  max-width: 820px;
  padding: 92px 0 40px;
}

.subpage-hero h1 {
  margin: 12px 0;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -2.6px;
  line-height: 1;
}

.subpage-hero p {
  color: var(--muted);
  font-size: 18px;
}

.content-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0 80px;
}

.content-card {
  padding: 25px;
  border: 1px solid var(--white-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.content-card h2 {
  margin: 0 0 9px;
  color: var(--gold-soft);
  font-size: 21px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 58px;
  }

  .phone-stage {
    min-height: 530px;
  }

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

  .trust-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 26px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

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

  .hero {
    padding: 48px 0 44px;
  }

  .hero h1 {
    letter-spacing: -2.2px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 500px;
  }

  .phone {
    width: min(330px, 92vw);
  }

  .feature-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .cta {
    align-items: stretch;
    flex-direction: column;
    padding: 28px;
  }

  .footer-top {
    flex-direction: column;
  }
}

/* ========================================================================== */
/* KALWORI WEBSITE V1-B                                                       */
/* ========================================================================== */

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--gold-soft);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.mobile-panel-inner {
  display: grid;
  gap: 10px;
  padding: 12px 0 20px;
}

.mobile-nav-card {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid var(--white-line);
  border-radius: 19px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.022)
    );
}

.mobile-nav-card-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.08);
  font-weight: 950;
}

.mobile-nav-card-copy {
  min-width: 0;
  flex: 1;
}

.mobile-nav-card-copy strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.mobile-nav-card-copy small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.mobile-nav-arrow {
  color: var(--gold);
  font-size: 21px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--gold-soft);
}

.page-intro {
  max-width: 820px;
  padding: 78px 0 36px;
}

.page-intro h1 {
  margin: 12px 0 14px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1;
  letter-spacing: -2.4px;
}

.page-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.data-source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.data-source-card {
  padding: 22px;
  border: 1px solid var(--white-line);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.035);
}

.data-source-card .source-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.07);
  font-weight: 950;
}

.data-source-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.data-source-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.confidence-table {
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.03);
}

.confidence-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--white-line);
}

.confidence-row:last-child {
  border-bottom: 0;
}

.confidence-range {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 950;
}

.confidence-range i {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 5px;
}

.confidence-range i.green {
  background: var(--green);
}

.confidence-range i.purple {
  background: var(--purple);
}

.confidence-range i.orange {
  background: var(--orange);
}

.confidence-range i.gray {
  background: var(--gray);
}

.confidence-copy strong {
  display: block;
  margin-bottom: 2px;
}

.confidence-copy span {
  color: var(--muted);
  font-size: 13px;
}

.help-search-wrap {
  position: relative;
  margin: 24px 0 34px;
}

.help-search {
  width: 100%;
  min-height: 58px;
  padding: 0 18px 0 52px;
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}

.help-search::placeholder {
  color: #728096;
}

.help-search:focus {
  border-color: rgba(243, 210, 122, 0.72);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.help-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-soft);
  font-size: 20px;
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}

.help-category {
  padding: 21px;
  border: 1px solid var(--white-line);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
}

.help-category-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.07);
  color: var(--gold-soft);
  font-weight: 950;
}

.help-category h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.help-category p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-bottom: 60px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  font-weight: 850;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-plus {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  font-size: 21px;
  transition: transform 160ms ease;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 19px 19px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.help-empty {
  display: none;
  margin: 20px 0 50px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
}

.help-empty.is-visible {
  display: block;
}

.section-anchor {
  scroll-margin-top: 105px;
}

.mini-link {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(243, 210, 122, 0.32);
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .mobile-menu-button {
    display: block;
  }

  .mobile-panel.is-open {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .data-source-grid,
  .help-category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .page-intro {
    padding: 52px 0 28px;
  }

  .page-intro h1 {
    letter-spacing: -1.8px;
  }

  .mobile-panel-inner {
    padding-bottom: 15px;
  }

  .mobile-nav-card {
    min-height: 67px;
  }

  .data-source-grid,
  .help-category-grid {
    grid-template-columns: 1fr;
  }

  .confidence-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .confidence-range {
    font-size: 15px;
  }
}

/* KALWORI WEBSITE V1-C */

.legal-page {
  padding-bottom: 72px;
}

.legal-hero {
  max-width: 920px;
  padding: 58px 0 30px;
}

.legal-hero h1 {
  margin: 14px 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.03;
  letter-spacing: -2px;
}

.legal-lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 16px;
}

.legal-lead p {
  margin: 0;
}

.legal-card {
  max-width: 1040px;
  padding: 34px;
  border: 1px solid var(--white-line);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.021)
    );
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--gold-soft);
  font-size: 21px;
  line-height: 1.25;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #c5cfdd;
  font-size: 14.5px;
  line-height: 1.68;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul,
.legal-card ol {
  padding-left: 23px;
  margin: 8px 0 18px;
}

.legal-card a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(243, 210, 122, 0.38);
  text-underline-offset: 3px;
}

.legal-card strong {
  color: var(--text);
}

.legal-meta {
  max-width: 1040px;
  margin-top: 18px;
  color: #738096;
  font-size: 12px;
}

.legal-language-note {
  max-width: 1040px;
  margin-top: 18px;
  padding: 11px 14px;
  border: 1px solid var(--white-line);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
}

.download-page {
  overflow-x: hidden;
}

.download-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 66px;
  padding: 70px 0 66px;
}

.download-hero h1 {
  max-width: 720px;
  margin: 20px 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.99;
  letter-spacing: -3px;
}

.download-hero h1 strong {
  color: var(--gold-soft);
}

.download-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

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

.store-coming {
  min-width: 190px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.store-coming small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
}

.store-coming strong {
  font-size: 17px;
}

.download-preview {
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 34px;
  background: #081221;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.36);
}

.download-preview-inner {
  padding: 23px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 8% 4%,
      rgba(212, 175, 55, 0.11),
      transparent 15rem
    ),
    #0d192a;
}

.download-preview-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.download-preview-title img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.download-metric {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid var(--white-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

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

.download-feature {
  padding: 24px;
  border: 1px solid var(--white-line);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.035);
}

.download-feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.075);
  color: var(--gold-soft);
  font-weight: 950;
}

.download-feature h3 {
  margin: 0 0 7px;
}

.download-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.download-notice {
  margin: 18px 0 72px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(
      125deg,
      rgba(212, 175, 55, 0.12),
      rgba(14, 32, 57, 0.65)
    );
  color: #d8dfeb;
}

@media (max-width: 900px) {
  .download-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 0;
  }

  .download-preview {
    max-width: 520px;
  }

  .download-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .legal-hero {
    padding: 42px 0 24px;
  }

  .legal-hero h1 {
    letter-spacing: -1.4px;
  }

  .legal-card {
    padding: 21px;
    border-radius: 21px;
  }

  .legal-card h2 {
    font-size: 18px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 13.5px;
  }

  .download-hero h1 {
    letter-spacing: -2px;
  }

  .store-buttons {
    display: grid;
  }

  .store-coming {
    min-width: 0;
  }
}
