/* ============================================================
   UNDAPLAYER — Main CSS (v3)
   Modern dark, centered, calm. Full page styles.
   ============================================================ */

:root {
  /* Surfaces */
  --bg:         #0E1320;
  --bg-soft:    #131A2B;
  --bg-card:    #1A2236;
  --bg-card-hi: #212B45;

  /* Brand accents */
  --blue:       #3B5BFF;
  --blue-soft:  rgba(59,91,255,0.12);
  --blue-glow:  rgba(59,91,255,0.30);
  --green:      #3DDC84;
  --green-soft: rgba(61,220,132,0.10);

  /* Text */
  --t-strong:   #FFFFFF;
  --t-body:     #B4BCD0;
  --t-soft:     #6B7591;
  --t-faint:    #3F4761;
  --t-line:     rgba(255,255,255,0.06);
  --t-line-2:   rgba(255,255,255,0.10);

  /* Type */
  --f-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius:    14px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--t-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

/* Subtle ambient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 1200px 700px at 50% 0%, rgba(59,91,255,0.07), transparent 60%),
    radial-gradient(ellipse 800px 600px at 50% 100%, rgba(61,220,132,0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

::selection { background: var(--blue); color: var(--t-strong); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card-hi); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

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

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 19, 32, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--t-line);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--t-strong);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 18px var(--blue-glow);
  position: relative;
  font-family: var(--f-sans);
}

.brand-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--t-strong);
  letter-spacing: -0.02em;
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--t-body);
  transition: color 0.2s;
}

.nav a:hover { color: var(--t-strong); }

.nav a.active { color: var(--t-strong); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language toggle — supports Polylang output */
.lang-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--t-line-2);
  border-radius: 8px;
  overflow: hidden;
  padding: 3px;
}

.lang-toggle ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 0;
}

.lang-toggle li { display: flex; }

.lang-toggle button,
.lang-toggle a {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--t-soft);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

.lang-toggle button.is-active,
.lang-toggle a.is-active,
.lang-toggle .current-lang a {
  background: var(--blue);
  color: var(--t-strong);
}

.lang-toggle button:not(.is-active):hover,
.lang-toggle a:not(.is-active):hover {
  color: var(--t-strong);
}

.btn-dashboard {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--t-strong);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 0;
  cursor: not-allowed;
  position: relative;
  opacity: 0.55;
  font-family: inherit;
  transition: opacity 0.2s;
}

.btn-dashboard .soon-tag {
  font-size: 9px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 100px 28px 80px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--blue-soft);
  border: 1px solid rgba(59,91,255,0.25);
  border-radius: 9999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  animation: rise 0.8s var(--ease) 0.1s both;
}

.hero-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.hero h1 {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--t-strong);
  margin-bottom: 28px;
  animation: rise 1s var(--ease) 0.2s both;
}

.hero h1 .blue {
  color: var(--blue);
  display: block;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--t-body);
  max-width: 640px;
  margin: 0 auto 48px;
  animation: rise 1s var(--ease) 0.35s both;
}

.hero-download-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--t-soft);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  animation: rise 1s var(--ease) 0.45s both;
}

.hero-downloads {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: rise 1s var(--ease) 0.55s both;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--t-line-2);
  color: var(--t-strong);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.dl-btn:hover {
  background: var(--bg-card-hi);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.dl-btn.primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 6px 24px var(--blue-glow);
}

.dl-btn.primary:hover {
  background: #2c4ae0;
  border-color: #2c4ae0;
}

.dl-btn .ic {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-disclaimer-card {
  max-width: 640px;
  margin: 64px auto 0;
  padding: 20px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--t-line);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  animation: rise 1s var(--ease) 0.7s both;
}

.hero-disclaimer-card .info {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--t-soft);
  color: var(--t-soft);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-disclaimer-card h6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--t-strong);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.hero-disclaimer-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--t-body);
  margin: 0;
}

@keyframes rise {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

section {
  padding: 80px 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-h2 {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--t-strong);
  margin-bottom: 20px;
}

.section-h2 .blue { color: var(--blue); }

.section-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--t-body);
}

/* ============================================================
   AVAILABILITY
   ============================================================ */

.avail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.avail-card {
  background: var(--bg-card);
  border: 1.5px solid var(--t-line-2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.avail-card.available {
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(61,220,132,0.10);
}

.avail-card.dev {
  opacity: 0.6;
}

.avail-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.avail-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--t-body);
  stroke-width: 1.5;
  fill: none;
}

.avail-card.available .avail-icon svg { stroke: var(--green); }

.avail-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.avail-check svg { width: 12px; height: 12px; stroke: var(--green); stroke-width: 2.5; fill: none; }

.avail-status {
  font-size: 16px;
  font-weight: 700;
  color: var(--t-strong);
  margin: 4px 0 2px;
}

.avail-card.dev .avail-status { color: var(--t-soft); }

.avail-platform {
  font-size: 13px;
  color: var(--t-soft);
  margin-bottom: 18px;
}

.avail-cta {
  display: inline-flex;
  align-items: center;
  background: var(--t-strong);
  color: var(--bg);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 7px;
  gap: 6px;
}

.avail-cta-disabled {
  background: var(--bg-card-hi);
  color: var(--t-soft);
  font-weight: 600;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 7px;
  display: inline-block;
}

/* ============================================================
   FEATURES
   ============================================================ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--t-line-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.feat-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  border: 1px solid rgba(59,91,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.feat-card h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--t-strong);
  margin-bottom: 12px;
  line-height: 1.2;
}

.feat-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--t-body);
  margin-bottom: 20px;
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.3s;
}

.feat-link:hover { gap: 10px; }

.feat-link::after { content: '\2192'; }

/* ============================================================
   PRICING
   ============================================================ */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-card);
  border: 1.5px solid var(--t-line-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 32px rgba(59,91,255,0.18);
  background:
    linear-gradient(180deg, rgba(59,91,255,0.04), transparent),
    var(--bg-card);
}

.price-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.price-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--t-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card.featured .price-tag {
  color: var(--blue);
}

.price-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--bg-card-hi);
  color: var(--t-body);
  padding: 4px 8px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-amount {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--t-strong);
  line-height: 1;
  margin: 16px 0 6px;
}

.price-period {
  font-size: 14px;
  color: var(--t-soft);
  margin-bottom: 28px;
}

.price-list {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.price-list li {
  font-size: 14px;
  color: var(--t-body);
  padding: 10px 0;
  border-bottom: 1px solid var(--t-line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 4px;
}

.price-list li.muted { color: var(--t-soft); }
.price-list li.muted svg { stroke: var(--t-faint); }

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--blue);
  color: var(--t-strong);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.price-cta:hover { background: #2c4ae0; }

.price-cta.disabled {
  background: var(--bg-card-hi);
  color: var(--t-body);
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   RESOURCES
   ============================================================ */

.res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.res-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--t-line-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}

.res-card:hover {
  background: var(--bg-card-hi);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.res-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.res-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.res-card h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--t-strong);
  margin-bottom: 12px;
}

.res-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--t-body);
  margin-bottom: 18px;
}

.res-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

.res-link::after { content: '\2192'; transition: transform 0.2s; }
.res-card:hover .res-link::after { transform: translateX(4px); }

.res-all {
  text-align: center;
  margin-top: 40px;
}

.res-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--t-body);
  padding: 12px 24px;
  border: 1px solid var(--t-line-2);
  border-radius: 10px;
  transition: all 0.2s;
}

.res-all a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* ============================================================
   LEGAL
   ============================================================ */

.legal-card {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--t-line-2);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-bottom: 40px;
}

.legal-item h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-item h4::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1.5px solid var(--blue);
  flex-shrink: 0;
}

.legal-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-body);
}

.legal-divider {
  border: 0;
  height: 1px;
  background: var(--t-line);
  margin: 32px 0;
}

.legal-license h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.legal-warn {
  font-size: 14px;
  font-weight: 700;
  color: var(--t-strong);
  padding: 12px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  margin-bottom: 20px;
}

.legal-license ol {
  list-style: decimal;
  padding-left: 20px;
}

.legal-license li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-body);
  padding: 8px 0;
  padding-left: 6px;
}

.legal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--t-line);
}

.legal-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--t-line-2);
  border-radius: 9999px;
  color: var(--t-body);
  transition: all 0.2s;
  display: inline-block;
}

.legal-btn:hover {
  color: var(--t-strong);
  border-color: var(--blue);
  background: var(--blue-soft);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--t-line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  gap: 20px;
  align-items: start;
  cursor: pointer;
}

.faq-num {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  padding-top: 4px;
}

.faq-body h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--t-strong);
  margin-bottom: 12px;
  line-height: 1.25;
}

.faq-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--t-body);
}

.faq-body p a {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}

.faq-arrow {
  font-size: 18px;
  color: var(--t-soft);
  text-align: right;
  padding-top: 4px;
  transition: color 0.2s, transform 0.2s;
}

.faq-item:hover .faq-arrow { color: var(--blue); transform: translate(2px, -2px); }

/* ============================================================
   SUPPORT
   ============================================================ */

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.sup-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--t-line-2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.sup-card:hover {
  background: var(--bg-card-hi);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.sup-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.sup-card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--blue);
}

.sup-card h4 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--t-strong);
  margin-bottom: 4px;
}

.sup-card .handle {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--t-soft);
  margin-bottom: 22px;
}

.sup-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 2px;
}

.sup-cta::after { content: '\2192'; }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--t-line);
  padding: 64px 28px 32px;
  margin-top: 60px;
}

.foot-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--t-line);
}

.foot-brand .brand { margin-bottom: 18px; }

.foot-tagline {
  font-size: 14px;
  color: var(--t-body);
  line-height: 1.6;
  max-width: 300px;
}

.foot-col h6 {
  font-size: 12px;
  font-weight: 700;
  color: var(--t-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--t-body);
  padding: 7px 0;
  transition: color 0.2s;
}

.foot-col a:hover { color: var(--blue); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.foot-copy {
  font-size: 13px;
  color: var(--t-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .avail-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid  { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .support-grid { grid-template-columns: 1fr; max-width: 480px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-inner { padding: 14px 20px; }
  section { padding: 60px 20px; }
  .hero { padding: 60px 20px 40px; }
  .hero-downloads { flex-direction: column; align-items: center; }
  .dl-btn { width: 100%; max-width: 320px; justify-content: center; font-size: 13px; padding: 12px 16px; }
  .avail-grid { grid-template-columns: 1fr; }
  .feat-grid  { grid-template-columns: 1fr; }
  .res-grid   { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 32px 24px; }
  .legal-buttons { flex-direction: column; }
  .faq-item { grid-template-columns: 50px 1fr; gap: 16px; }
  .faq-arrow { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .price-grid { margin: 0 auto; }
  .sup-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-pill { font-size: 11px; }
  .hero-disclaimer-card { flex-direction: column; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .legal-buttons { gap: 8px; }
  .legal-btn { width: 100%; text-align: center; }
  .section-head { text-align: left; }
}
