/* Streamflex — RA Apps LTD */
:root {
  --bg: #07070c;
  --bg-elevated: #0e0e16;
  --bg-card: #12121c;
  --bg-card-hover: #181825;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f8;
  --text-muted: #9b9bb0;
  --text-dim: #6b6b80;
  --primary: #e10600;
  --primary-soft: rgba(225, 6, 0, 0.15);
  --primary-glow: rgba(225, 6, 0, 0.45);
  --accent: #ff2d2d;
  --accent-2: #ff5c5c;
  --gradient: linear-gradient(135deg, #ff1a1a 0%, #e10600 45%, #b30000 100%);
  --gradient-soft: linear-gradient(135deg, rgba(225, 6, 0, 0.22), rgba(255, 45, 45, 0.1));
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --font: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 12, 0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--max));
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  border-radius: 10px;
  font-size: 0.75rem;
  color: #fff;
  box-shadow: 0 0 24px var(--primary-glow);
}

.logo-text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--primary-soft) !important;
  color: #ffb3b3 !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.4);
}

.nav-cta:hover {
  background: rgba(225, 6, 0, 0.28) !important;
  color: #fff !important;
}

/* Language switcher */
.lang-mount {
  display: flex;
  align-items: center;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-switcher-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffb3b3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 0.7rem center;
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1.85rem 0.45rem 0.85rem;
  cursor: pointer;
  outline: none;
  min-width: 7.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.lang-select:hover,
.lang-select:focus {
  border-color: rgba(225, 6, 0, 0.6);
  background-color: rgba(225, 6, 0, 0.12);
}

.lang-select option {
  background: #12121c;
  color: #f4f4f8;
}

.legal-lang-banner {
  background: var(--primary-soft);
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px var(--primary-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(225, 6, 0, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 45, 45, 0.14), transparent 50%),
    radial-gradient(ellipse 40% 30% at 70% 80%, rgba(140, 0, 0, 0.12), transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: var(--primary);
  top: 15%;
  left: 10%;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: #ff2d2d;
  top: 50%;
  right: 15%;
  animation-delay: -4s;
}

.orb-3 {
  width: 160px;
  height: 160px;
  background: #8b0000;
  bottom: 10%;
  left: 40%;
  animation-delay: -7s;
  opacity: 0.35;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -24px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: #ffb3b3;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat strong {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Phone mock */
.hero-phone {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone-frame {
  width: min(280px, 100%);
  background: linear-gradient(160deg, #2a2a3a, #12121a);
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: phoneIn 1s var(--ease) both;
}

@keyframes phoneIn {
  from {
    opacity: 0;
    transform: rotateY(-8deg) rotateX(4deg) translateY(30px);
  }
  to {
    opacity: 1;
    transform: rotateY(-8deg) rotateX(4deg) translateY(0);
  }
}

.phone-notch {
  width: 90px;
  height: 22px;
  background: #0a0a10;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
}

.phone-screen {
  background: #0a0a12;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
}

.phone-ui {
  padding: 0.75rem;
}

.phone-header-ui {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}

.phone-search {
  opacity: 0.5;
}

.phone-hero-card {
  height: 160px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85)),
    linear-gradient(135deg, #5a1010, #1a1a1e 60%, #2a0808);
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}

.phone-hero-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.85rem;
}

.phone-tag {
  font-size: 0.65rem;
  background: var(--primary);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 600;
}

.phone-hero-overlay h3 {
  font-family: var(--font);
  font-size: 1rem;
  margin-top: 0.35rem;
}

.phone-hero-overlay p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.phone-poster {
  aspect-ratio: 2/3;
  border-radius: 8px;
  background: linear-gradient(145deg, #3a1515, #1a1a1e);
}

.phone-poster.p1 { background: linear-gradient(145deg, #5a1818, #1e1010); }
.phone-poster.p2 { background: linear-gradient(145deg, #401010, #141010); }
.phone-poster.p3 { background: linear-gradient(145deg, #4a2020, #181212); }

.phone-availability {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem;
}

.av-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.4rem;
}

.av-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.av-chips span {
  font-size: 0.62rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: #ffb3b3;
  border: 1px solid rgba(225, 6, 0, 0.3);
}

.av-region {
  font-size: 0.62rem;
  color: #ff8a8a;
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.eyebrow {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-head h2,
.regions-copy h2,
.cta-content h2 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.4);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: var(--gradient-soft);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
}

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

/* Discover */
.discover {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(225, 6, 0, 0.08), transparent),
    var(--bg);
}

.api-key-bar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.api-key-form label {
  display: block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.api-key-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.api-key-row input {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.api-key-row input:focus {
  border-color: var(--primary);
}

.api-hint {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.api-hint a {
  color: #ffb3b3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.discover-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tabs {
  display: inline-flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}

.tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  transition: 0.2s;
}

.tab.active {
  background: var(--primary);
  color: #fff;
}

.search-wrap {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.search-wrap input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  outline: none;
}

.search-wrap input:focus {
  border-color: var(--primary);
}

.region-select-wrap label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.region-select-wrap select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  min-width: 160px;
  cursor: pointer;
  outline: none;
}

.discover-status {
  min-height: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.discover-status.error {
  color: #ff8a9a;
}

.discover-status.success {
  color: #ff8a8a;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.15rem;
}

.media-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  padding: 0;
}

.media-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.media-poster {
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, #1e1e30, #12121c);
  object-fit: cover;
  width: 100%;
  height: auto;
}

.media-poster.placeholder {
  display: grid;
  place-items: center;
  color: var(--text-dim);
  font-size: 2rem;
}

.media-info {
  padding: 0.75rem;
}

.media-info h3 {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.rating {
  color: #ffd166;
  font-weight: 600;
}

/* How it works */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

.step-num {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Regions */
.regions {
  background: var(--bg-elevated);
}

.regions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.regions-copy p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: rgba(225, 6, 0, 0.15);
  color: #ff5c5c;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.regions-visual {
  display: grid;
  gap: 1rem;
}

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.region-card.accent {
  border-color: rgba(225, 6, 0, 0.4);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.14), rgba(255, 45, 45, 0.06));
}

.region-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.region-flag {
  font-size: 1.6rem;
}

.region-card-top strong {
  display: block;
  font-family: var(--font);
  font-size: 1rem;
}

.region-card-top span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.provider-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.provider-pills span {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.region-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* What it is / isn't */
.what-section {
  background: var(--bg-elevated);
}

.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.truth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}

.truth-card.yes {
  border-color: rgba(0, 180, 120, 0.25);
}

.truth-card.no {
  border-color: rgba(225, 6, 0, 0.3);
}

.truth-card h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.truth-card h3 em {
  font-style: normal;
  color: var(--primary);
}

.truth-card.yes h3 em {
  color: #3dd68c;
}

.no-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.no-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.no-list li::before {
  content: "✕";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: rgba(225, 6, 0, 0.15);
  color: #ff6b6b;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.truth-footnote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 1.25rem;
  background: var(--primary-soft);
  border: 1px solid rgba(225, 6, 0, 0.25);
  border-radius: var(--radius-sm);
}

.truth-footnote a {
  color: #ffb3b3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stack-card strong {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
}

.stack-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1.15rem;
}

.faq-item summary {
  font-family: var(--font);
  font-weight: 650;
  font-size: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

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

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 0 0 1.15rem;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.faq-item a {
  color: #ffb3b3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-callout {
  background: var(--primary-soft);
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

.legal-h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
}

.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
}

.legal-toc strong {
  display: block;
  font-family: var(--font);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.legal-toc a {
  color: #ffb3b3;
  text-decoration: none;
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
  color: var(--text-muted);
}

.legal-table th {
  background: rgba(225, 6, 0, 0.08);
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8rem;
}

.legal-table tbody th[scope="row"] {
  width: 32%;
  color: var(--text);
  font-weight: 600;
}

.legal-disclaimer {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin: 1.5rem 0 1rem;
  line-height: 1.5;
  font-style: italic;
}

.legal-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.sub-legal-box {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.sub-legal-box a {
  color: #ffb3b3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.og-hidden {
  display: none;
}

/* About page — clear features, calm layout */
.about-page {
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
  background:
    radial-gradient(ellipse 55% 35% at 50% 0%, rgba(225, 6, 0, 0.1), transparent 55%),
    var(--bg);
}

.about-wrap {
  max-width: 40rem;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.about-logo-simple {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
  margin: 0 auto 1.25rem;
  display: block;
  box-shadow: 0 10px 32px rgba(225, 6, 0, 0.28);
}

.about-intro .eyebrow {
  margin-bottom: 0.5rem;
}

.about-intro h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 2.75rem;
}

.about-block h2 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.about-steps {
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.about-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-step-n {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 4px 14px rgba(225, 6, 0, 0.3);
}

.about-steps h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.about-steps p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.about-features {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.about-features li {
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.about-features strong {
  display: block;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 650;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.about-features span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.about-tier-prem {
  border-color: rgba(225, 6, 0, 0.4);
  background: linear-gradient(160deg, rgba(225, 6, 0, 0.1), rgba(18, 18, 28, 0.95));
}

.about-tier h3 {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.about-tier-price {
  font-family: var(--font);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.about-tier-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.about-tier-note {
  font-size: 0.78rem;
  color: #ff8a8a;
  font-weight: 600;
  margin: -0.4rem 0 0.75rem;
}

.about-tier ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.about-tier li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.about-tier li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.about-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.about-company .about-body {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.about-dl {
  display: grid;
  gap: 1rem;
}

.about-dl dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
  font-family: var(--font);
}

.about-dl dd {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

.about-dl a {
  color: #ffb3b3;
  text-decoration: none;
}

.about-dl a:hover {
  text-decoration: underline;
}

.about-app-cta {
  text-align: center;
  margin: 0 0 1.75rem;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.about-links a {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.about-links a:hover {
  color: #ff8a8a;
}

@media (max-width: 560px) {
  .about-tiers {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .truth-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(225, 6, 0, 0.45);
  background: linear-gradient(160deg, rgba(225, 6, 0, 0.12), rgba(18, 18, 28, 0.95));
  box-shadow: 0 0 48px rgba(225, 6, 0, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffb3b3;
  background: var(--primary-soft);
  border: 1px solid rgba(225, 6, 0, 0.35);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.pricing-label {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.pricing-price {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-trial {
  color: #ff8a8a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pricing-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 1.35rem;
  position: relative;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

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

/* CTA */
.cta-section {
  padding-bottom: 4rem;
}

.cta-card {
  background: var(--gradient-soft);
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 0 80px rgba(225, 6, 0, 0.15);
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.store-badges {
  display: flex;
  gap: 1rem;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #000;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 0.7rem 1.15rem;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

a.app-store-badge:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.app-store-badge small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.7;
  line-height: 1.2;
}

.app-store-badge strong {
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.2;
}

.cta-brand {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.by-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.35rem !important;
}

.company-name {
  font-family: var(--font);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem !important;
}

.company-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.35rem !important;
}

.company-address {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0 !important;
  line-height: 1.4;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 800px);
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: modalIn 0.3s var(--ease);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-hero {
  height: 200px;
  background: linear-gradient(135deg, #3a1010, #12121c);
  background-size: cover;
  background-position: center top;
  position: relative;
}

.modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, var(--bg-elevated));
}

.modal-body {
  padding: 0 1.5rem 1.75rem;
  margin-top: -2rem;
  position: relative;
}

.modal-body h2 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.modal-meta .pill {
  background: var(--primary-soft);
  color: #ffb3b3;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.modal-overview {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.modal-section {
  margin-bottom: 1.25rem;
}

.modal-section h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.providers-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.provider-group h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
}

.provider-chip img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
}

.empty-providers {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.vpn-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.genre-chips span {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.3);
  color: #ffb3b3;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  background: #050508;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.85rem;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-links h4 {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 650;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.footer-company {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.tmdb-attr a {
  color: #ff8a8a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.legal-page h1 {
  font-family: var(--font);
  font-size: 2.25rem;
  font-weight: 750;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.legal-page .updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.65rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Skeleton loading */
.skeleton-grid .media-card {
  pointer-events: none;
}

.skeleton-poster {
  aspect-ratio: 2/3;
  background: linear-gradient(90deg, #161622 25%, #1e1e2e 50%, #161622 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}

.skeleton-line {
  height: 12px;
  border-radius: 4px;
  margin: 0.75rem;
  background: linear-gradient(90deg, #161622 25%, #1e1e2e 50%, #161622 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}

.skeleton-line.short {
  width: 40%;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-phone {
    margin-top: 1rem;
  }

  .phone-frame {
    transform: none;
  }

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

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

  .regions-layout,
  .cta-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-brand {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(7, 7, 12, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .lang-mount {
    width: 100%;
    padding: 0.5rem 0.75rem 0.75rem;
  }

  .lang-select {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .discover-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .search-wrap {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

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