/* GoldSilver marketing site — shared styles */

:root {
  --bg: #0B0B0D;
  --bg-alt: #0E0E11;
  --bg-footer: #08080A;
  --card: #121215;
  --card-alt: #16161A;
  --text: #F4F1EA;
  --text-muted: #A8A49C;
  --text-dim: #8E8A83;
  --text-faint: #7E7B75;
  --text-body: #CFCAC1;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.09);
  --gold: #E1AD5A;
  --gold-soft: #D9BE8C;
  --gold-border: rgba(225, 173, 90, 0.3);
  --ink: #14100A;
  --ink-strong: #17120A;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  color: var(--text);
  font-family: Lato, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #F2D6A6;
}

::selection {
  background: rgba(225, 173, 90, 0.3);
}

img {
  max-width: 100%;
}

.serif {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

/* language toggle: elements carry data-lang="en" or data-lang="fr".
   !important is needed because these elements often also carry a component
   class (e.g. .store-badges) that sets its own `display` at equal specificity. */
[data-lang] {
  display: none !important;
}

html[data-active-lang="en"] [data-lang="en"] {
  display: var(--show-en, inline) !important;
}

html[data-active-lang="fr"] [data-lang="fr"] {
  display: var(--show-fr, inline) !important;
}

[data-lang][data-display="block"] {
  --show-en: block;
  --show-fr: block;
}

[data-lang][data-display="flex"] {
  --show-en: flex;
  --show-fr: flex;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

.wrap-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 24px;
}

.wrap-prose {
  max-width: 820px;
  margin: 0 auto;
  padding: 88px 24px;
}

.section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-alt {
  background: var(--bg-alt);
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.16em;
}

.h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  margin: 14px 0 18px;
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 44px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(225, 173, 90, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #B6B2AA;
}

.nav-links a {
  color: inherit;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(225, 173, 90, 0.2);
  border-radius: 999px;
}

.lang-pill {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  font-family: inherit;
}

.lang-pill .flag {
  font-size: 14px;
  line-height: 1;
}

.lang-pill.is-active {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
}

.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}

.btn-outline-lg {
  text-align: center;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid rgba(225, 173, 90, 0.45);
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}

/* Hero */
.hero {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1100px 420px at 18% -12%, rgba(225, 173, 90, 0.13), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px 6px 9px;
  border: 1px solid rgba(225, 173, 90, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 22px 0 0;
}

.h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
  margin: 22px 0 0;
}

.store-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.store-badges a {
  display: flex;
  align-items: center;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
}

.store-badges img {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.tagline {
  font-size: 15px;
  color: var(--gold-soft);
  margin-top: 18px;
  letter-spacing: 0.02em;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* Phone mock */
.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: 300px;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(165deg, #2A2620, #121214 58%);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(225, 173, 90, 0.18);
}

.phone-screen {
  border-radius: 34px;
  background: #101013;
  overflow: hidden;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px 6px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.phone-body {
  padding: 8px 20px 22px;
}

.phone-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.phone-balance {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 34px;
  margin-top: 4px;
}

.phone-card {
  margin-top: 16px;
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(145deg, var(--gold), #B98B3F 70%);
  color: var(--ink-strong);
}

.phone-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.phone-card-row .visa {
  font-style: italic;
  font-family: "DM Serif Display", serif;
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 400;
}

.phone-card-number {
  font-size: 14px;
  margin-top: 26px;
  letter-spacing: 0.14em;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.phone-action {
  padding: 11px;
  border-radius: 12px;
  background: #1A1A1E;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.phone-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.phone-stat {
  padding: 12px;
  border-radius: 14px;
  background: #1A1A1E;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-stat-label {
  font-size: 11px;
  color: var(--text-dim);
}

.phone-stat-value {
  font-size: 20px;
  margin-top: 2px;
}

.phone-tx-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 16px;
}

.phone-tx {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.phone-tx .label {
  color: var(--text-body);
}

.phone-tx .amount-pos {
  color: var(--gold);
}

.phone-tx .amount-neg {
  color: var(--text-muted);
}

/* Feature grid */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.grid-card {
  background: var(--card);
  padding: 30px;
}

.grid-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

.grid-card-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 10px 0 0;
}

.pull-quote {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--gold);
  margin: 48px auto 0;
  max-width: 640px;
  text-align: center;
}

/* Offer cards */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.offer-card {
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 34px;
  background: var(--card);
  display: flex;
  flex-direction: column;
}

.offer-card.featured {
  border: 1px solid rgba(225, 173, 90, 0.4);
  background: linear-gradient(170deg, #17140F, var(--card) 60%);
  box-shadow: 0 30px 70px -40px rgba(225, 173, 90, 0.45);
}

.offer-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.offer-card.featured .offer-kicker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.offer-card.featured .offer-kicker {
  color: var(--gold);
}

.offer-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(225, 173, 90, 0.14);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.offer-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.2;
  margin-top: 14px;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.offer-price {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.offer-price-period {
  font-size: 15px;
  color: var(--text-muted);
}

.offer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 12px 0 0;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 24px 0 28px;
  font-size: 15px;
  color: var(--text-body);
}

.offer-feature {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.offer-feature .diamond {
  color: var(--gold);
  font-size: 11px;
}

.offer-card a.btn-outline-lg,
.offer-card a.btn-gold-lg {
  margin-top: auto;
}

.offer-card a.btn-gold-lg {
  justify-content: center;
}

/* Cards section (physical/virtual card visuals) */
.card-visual-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-visual {
  border-radius: 20px;
  padding: 26px;
}

.card-visual.physical {
  background: linear-gradient(140deg, #E5B564, #A97E37 78%);
  color: var(--ink-strong);
  box-shadow: 0 30px 60px -30px rgba(225, 173, 90, 0.5);
}

.card-visual.virtual {
  background: var(--card-alt);
  border: 1px solid rgba(225, 173, 90, 0.18);
}

.card-visual-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card-visual.virtual .card-visual-top {
  color: var(--gold-soft);
}

.card-visual-number {
  font-size: 18px;
  letter-spacing: 0.16em;
  margin-top: 46px;
}

.card-visual.virtual .card-visual-number {
  color: var(--text);
}

.card-visual-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 14px;
  font-size: 12px;
}

.card-visual.virtual .card-visual-bottom {
  color: var(--text-muted);
}

.card-visual-bottom .visa {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 22px;
}

.card-visual.virtual .card-visual-bottom .visa {
  color: var(--text);
}

/* Numbered steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.step {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.step.first {
  border-top: 1px solid var(--gold-border);
}

.step-number {
  font-family: "DM Serif Display", serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-top: 8px;
}

.step-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 8px 0 0;
}

/* Security / trust */
.trust-card {
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(165deg, #17140F, var(--card) 70%);
}

.trust-check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.trust-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
  margin-top: 20px;
}

.trust-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 12px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.trust-tile {
  background: var(--card);
  padding: 26px;
}

.trust-tile-code {
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  color: var(--gold);
}

.trust-tile-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Fee tables */
.fee-table {
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
}

.fee-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  padding: 15px 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.fee-row.head {
  padding: 14px 24px;
  background: rgba(225, 173, 90, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
  border-top: 1px solid var(--border);
}

.fee-row:first-child {
  border-top: none;
}

.fee-row .label {
  color: var(--text-body);
}

.fee-row .value {
  text-align: right;
}

.fee-row .value.free {
  color: var(--gold);
  font-weight: 700;
}

.fee-row .value.dash {
  color: var(--text-dim);
}

.fee-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 16px 0 0;
}

/* Who it's for grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.audience {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.audience-title {
  font-size: 16px;
  font-weight: 700;
}

.audience-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 8px 0 0;
}

/* FAQ */
.faq-item {
  border-top: 1px solid var(--border-strong);
  padding: 22px 0;
}

.faq-item.last {
  border-bottom: 1px solid var(--border-strong);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
}

.faq-a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 8px 0 0;
}

/* CTA */
.cta {
  position: relative;
  border-top: 1px solid rgba(225, 173, 90, 0.18);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 320px at 50% 120%, rgba(225, 173, 90, 0.16), transparent 70%);
}

.cta-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 104px 24px;
  text-align: center;
}

.cta-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  margin: 0;
}

.cta-body {
  font-size: 17px;
  color: var(--text-muted);
  margin: 18px auto 0;
  max-width: 520px;
}

.cta-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-strong);
  background: var(--bg-footer);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.footer-brand img {
  height: 36px;
  display: block;
}

.footer-trademark {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

.footer-address {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col-title {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.footer-col a {
  color: inherit;
}

.footer-legal {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--border-strong);
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.75;
  color: #A29E97;
  max-width: 1000px;
  margin: 0;
}

.footer-disclaimer a {
  color: #A29E97;
  border-bottom: 1px solid rgba(225, 173, 90, 0.4);
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* Responsive: the source design targets a fixed 1200px desktop container
   with no mobile layout, so the nav needs to wrap below tablet widths. */
@media (max-width: 980px) {
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-inner > a.btn-gold {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    order: -1;
  }
}

