/* ═══════════════════════════════════════════════════════
   FlashClip Official Website – styles.css
   Design: Dark tech aesthetic with electric indigo accents
   ═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --brand: #4F39F6;
  --brand-light: #6B56FF;
  --brand-dark: #3E29DB;
  --brand-glow: rgba(79, 57, 246, 0.35);

  --bg: #080B14;
  --bg-card: #0D1120;
  --bg-elevated: #111827;
  --bg-dark: #060910;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  --text-primary: #F1F5FF;
  --text-secondary: #8892A4;
  --text-muted: #4B5669;

  --accent1: #00E5FF;
  --accent2: #FF4D9D;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-glow: 0 0 40px rgba(79, 57, 246, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.6);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Fira Code', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

img,
svg {
  display: block;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--accent1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo {
  filter: drop-shadow(0 0 8px var(--brand-glow));
  border-radius: 10px;
}

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

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn:hover {
  border-color: var(--brand);
  color: var(--text-primary);
  background: rgba(79, 57, 246, 0.1);
}

.lang-icon {
  font-size: 15px;
  line-height: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(79, 57, 246, 0.35);
}

.btn-primary:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  box-shadow: 0 6px 30px rgba(79, 57, 246, 0.5);
  transform: translateY(-1px);
}

.btn-store {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-store:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 28px rgba(79, 57, 246, 0.45);
  transform: translateY(-1px);
}

.btn-store--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-store--outline:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 28px rgba(79, 57, 246, 0.45);
  transform: translateY(-1px);
}

.store-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 57, 246, 0.5) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
  top: 100px;
  right: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 157, 0.15) 0%, transparent 70%);
  bottom: 0;
  left: 40%;
  animation: orb-float 12s ease-in-out infinite 3s;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(79, 57, 246, 0.4);
  border-radius: 100px;
  background: rgba(79, 57, 246, 0.1);
  font-size: 13px;
  font-weight: 500;
  color: #A395FF;
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-light);
  box-shadow: 0 0 8px var(--brand-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.title-line {
  display: block;
}

.hero-desc {
  max-width: 560px;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.meta-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meta-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── Browser Mockup ── */
.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 64px;
}

.browser-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float), 0 0 0 1px rgba(79, 57, 246, 0.1);
  max-width: 780px;
  margin: 0 auto;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #FF5F57;
}

.browser-dots span:nth-child(2) {
  background: #FFBD2E;
}

.browser-dots span:nth-child(3) {
  background: #28CA41;
}

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.browser-content {
  padding: 32px;
  position: relative;
  min-height: 280px;
}

.mock-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-line {
  height: 14px;
  background: linear-gradient(90deg, var(--border) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-radius: 4px;
  width: 100%;
}

.mock-line.mock-title {
  height: 20px;
  width: 65%;
  background: rgba(255, 255, 255, 0.08);
}

.mock-line.mock-short {
  height: 14px;
  width: 75%;
  display: flex;
  align-items: center;
  background: none;
}

.mock-line.mock-medium {
  width: 85%;
}

.mock-selected {
  display: inline-block;
  background: rgba(79, 57, 246, 0.3);
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: #C4BAFF;
  animation: select-highlight 3s ease-in-out infinite 1s;
}

@keyframes select-highlight {

  0%,
  70%,
  100% {
    background: rgba(79, 57, 246, 0.3);
  }

  40% {
    background: rgba(79, 57, 246, 0.5);
  }
}

.mock-menu {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-float);
  animation: menu-appear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.5s;
}

@keyframes menu-appear {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.85) translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
}

.mock-action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.mock-action.active,
.mock-action:hover {
  background: rgba(79, 57, 246, 0.15);
  color: #A395FF;
}

.mock-action.active {
  background: rgba(79, 57, 246, 0.25);
  color: #C4BAFF;
}

.mock-action-icon {
  font-size: 15px;
  line-height: 1;
}

.mock-result {
  position: absolute;
  bottom: 20px;
  right: 24px;
  width: 340px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-float);
  animation: result-appear 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) both 1.2s;
}

@keyframes result-appear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.mock-result-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.mock-result-body {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.mock-typing {
  flex: 1;
}

.mock-cursor {
  width: 2px;
  height: 14px;
  background: var(--brand-light);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  flex-shrink: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(79, 57, 246, 0.3);
  border-radius: 100px;
  background: rgba(79, 57, 246, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: #A395FF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 640px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card--large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  align-items: start;
  padding: 32px;
}

.feature-card--large .feature-icon-wrap {
  grid-row: span 2;
  margin-bottom: 0;
}

.feature-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.feature-highlight-body {
  flex: 1;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(79, 57, 246, 0.4);
  transform: translateY(-2px);
}

.feature-highlight {
  border-color: rgba(79, 57, 246, 0.3);
  background: linear-gradient(135deg, rgba(79, 57, 246, 0.08) 0%, var(--bg-card) 100%);
}

.feature-icon-wrap {
  margin-bottom: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(79, 57, 246, 0.12) 0%, rgba(0, 229, 255, 0.04) 100%);
  border: 1px solid rgba(79, 57, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-light);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  grid-column: 2 / -1;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.tag svg {
  stroke: var(--text-muted);
  flex-shrink: 0;
}

.feature-glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 57, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   PROVIDERS
═══════════════════════════════════════════════════════ */
.providers-flat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.provider-chip {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: default;
}

.provider-chip:hover {
  border-color: var(--brand);
  color: #A395FF;
  background: rgba(79, 57, 246, 0.08);
}

.provider-chip--special {
  border-color: rgba(0, 229, 255, 0.22);
  color: rgba(0, 229, 255, 0.75);
  background: rgba(0, 229, 255, 0.05);
}

.providers-note {
  padding: 16px 28px;
  border-radius: var(--radius-md);
  background: rgba(79, 57, 246, 0.07);
  border: 1px solid rgba(79, 57, 246, 0.18);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   INSTALL / STEPS
═══════════════════════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}

.step-card {
  flex: 1;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.step-card:hover {
  border-color: rgba(79, 57, 246, 0.4);
}

.step-num {
  font-size: 44px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--brand);
  opacity: 0.5;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 48px;
  display: flex;
  align-items: center;
}

.step-arrow svg {
  stroke: var(--text-muted);
}

.install-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-right: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  display: none;
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES (privacy.html & terms.html)
═══════════════════════════════════════════════════════ */
.legal-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(79, 57, 246, 0.05) 0%, transparent 100%);
}

.legal-hero .section-badge {
  margin-bottom: 16px;
}

.legal-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-body {
  padding: 60px 0 100px;
}

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

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 6px;
}

.legal-content ul li {
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--brand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--accent1);
}

.legal-highlight {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(79, 57, 246, 0.08);
  border: 1px solid rgba(79, 57, 246, 0.2);
  margin: 24px 0;
}

.legal-highlight p {
  margin: 0;
}

.legal-warn {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 180, 0, 0.06);
  border: 1px solid rgba(255, 180, 0, 0.2);
  margin: 24px 0;
}

.legal-warn p {
  margin: 0;
  color: rgba(255, 200, 80, 0.85);
}

/* ── Scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--large {
    grid-column: span 2;
  }

  .feature-card--wide {
    grid-column: span 2;
    flex-direction: column;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .meta-divider {
    width: 60px;
    height: 1px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

  .feature-card--large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .feature-card--large .feature-icon-wrap {
    grid-row: auto;
  }

  .feature-card--wide {
    grid-column: span 1;
  }

  .feature-tags {
    grid-column: 1 / -1;
  }

  .browser-content {
    padding: 20px;
    min-height: 220px;
  }

  .mock-result {
    width: 260px;
  }

  .install-btns {
    flex-direction: column;
    align-items: center;
  }

  .install-btns .btn {
    width: 280px;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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