/* =============================================
   BlinkSend Landing Page
   Dark, dramatic, privacy-focused
   ============================================= */

:root {
  --purple: #a855f7;
  --pink: #ec4899;
  --orange: #f97316;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #22c55e;
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-elevated: #1a1a24;
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-muted: #52525b;
  --border: rgba(255,255,255,0.08);
  --gradient: linear-gradient(135deg, var(--purple), var(--pink));
  --gradient-wide: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', var(--font);
  --container: 1100px;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; font-weight: 700; }

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

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

/* Section shared */
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-sub { text-align: center; color: var(--text-dim); font-size: 1.1rem; margin-bottom: 56px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; border-radius: 50px;
  padding: 12px 28px; cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--gradient); color: #fff; border-color: transparent; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4); }
.btn--ghost { background: transparent; color: var(--text-dim); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--purple); color: var(--text); }
.btn--white { background: #fff; color: var(--bg); border-color: #fff; }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }
.btn--large { padding: 16px 36px; font-size: 1.05rem; }
.btn--glow { box-shadow: 0 0 30px rgba(168, 85, 247, 0.3); }
.btn--glow:hover { box-shadow: 0 0 50px rgba(168, 85, 247, 0.5); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
              var(--bg);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 15s ease-in-out infinite;
}
.hero__orb--1 { width: 400px; height: 400px; background: var(--purple); top: -10%; left: 20%; }
.hero__orb--2 { width: 300px; height: 300px; background: var(--pink); top: 30%; right: -5%; animation-delay: -5s; }
.hero__orb--3 { width: 250px; height: 250px; background: var(--orange); bottom: 10%; left: -5%; animation-delay: -10s; opacity: 0.3; }

.hero__noise {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: all var(--transition); }
.nav.scrolled { background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; }
.nav__icon { width: 36px; height: 36px; border-radius: 10px; }
.nav__cta {
  font-weight: 600; font-size: 0.9rem; padding: 8px 20px;
  border: 1px solid var(--border); border-radius: 50px;
  transition: all var(--transition);
}
.nav__cta:hover { border-color: var(--purple); color: var(--purple); }

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

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 12px;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-switcher__btn:hover { border-color: var(--purple); color: var(--text); }
.lang-switcher__globe { flex-shrink: 0; opacity: 0.7; }
.lang-switcher__current { letter-spacing: 0.04em; }
.lang-switcher__chevron { flex-shrink: 0; transition: transform 0.2s ease; opacity: 0.5; }
.lang-switcher__dropdown.open ~ .lang-switcher__btn .lang-switcher__chevron,
.lang-switcher__btn[aria-expanded="true"] .lang-switcher__chevron { transform: rotate(180deg); }

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.lang-switcher__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}
.lang-switcher__option:hover { background: rgba(168, 85, 247, 0.1); color: var(--text); }
.lang-switcher__option.active { color: var(--purple); font-weight: 600; }
.lang-switcher__flag { font-size: 1.1rem; line-height: 1; }

/* Hero content */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 120px 24px 60px;
  position: relative;
  z-index: 2;
}

.hero__text { text-align: center; max-width: 580px; }

/* Hero logo */
.hero__logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.hero__logo-img {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  transform: rotate(-6deg);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(168, 85, 247, 0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.hero__logo-img:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(168, 85, 247, 0.35);
}

.hero__title { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero__line { display: block; }
.hero__line--accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle { font-size: 1.15rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Phone mockup */
.hero__phone { position: relative; }

.phone-mockup {
  width: 260px;
  height: 520px;
  background: linear-gradient(180deg, #1c1c2e 0%, #0f0f1a 100%);
  border-radius: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(168, 85, 247, 0.15);
}

.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-mockup__screen { padding: 8px; height: 100%; }

.phone-screen {
  height: 100%;
  background: linear-gradient(180deg, #1a0a2e 0%, #0d0d1a 100%);
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-screen__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 8px; font-size: 0.7rem; color: var(--text-dim);
}

.phone-screen__content {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 20px;
}

.phone-screen__icon { width: 60px; height: 60px; }
.phone-screen__icon img { width: 100%; border-radius: 14px; }
.phone-screen__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.phone-screen__tagline { font-size: 0.75rem; color: var(--text-muted); }

/* Radar animation */
.phone-screen__radar {
  position: relative;
  width: 160px;
  height: 160px;
  margin-top: 16px;
}

.radar-pulse {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  animation: radarPulse 3s ease-out infinite;
}
.radar-pulse--2 { animation-delay: 1s; }
.radar-pulse--3 { animation-delay: 2s; }

@keyframes radarPulse {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1); opacity: 0; }
}

.radar-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple);
  animation: radarBlink 2s ease-in-out infinite;
}
.radar-dot--1 { top: 25%; left: 65%; animation-delay: 0.3s; }
.radar-dot--2 { top: 55%; left: 25%; animation-delay: 0.8s; background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.radar-dot--3 { top: 70%; left: 70%; animation-delay: 1.5s; background: var(--orange); box-shadow: 0 0 10px var(--orange); width: 8px; height: 8px; }

@keyframes radarBlink {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 24px; height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 8px;
}

.scroll-indicator__dot {
  width: 4px; height: 8px;
  background: var(--text-dim);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ========== FLOW (How it works) ========== */
.flow {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.flow__step {
  flex: 0 1 280px;
  text-align: center;
  padding: 32px 24px;
}

.flow__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1rem;
  border-radius: 50%;
  margin-bottom: 20px;
}

.flow__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  color: var(--purple);
}
.flow__icon svg { width: 100%; height: 100%; }

.flow__step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.flow__step p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

.flow__connector {
  display: none;
  align-items: center;
  padding-top: 80px;
  width: 60px;
}
.flow__connector svg { width: 100%; }

@media (min-width: 860px) {
  .flow__connector { display: flex; }
  .flow__steps { flex-wrap: nowrap; }
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 0;
  background: var(--bg-card);
}

.features .section-title { max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.1);
}

.feature__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature__icon--purple { background: rgba(168, 85, 247, 0.15); color: var(--purple); }
.feature__icon--pink { background: rgba(236, 72, 153, 0.15); color: var(--pink); }
.feature__icon--orange { background: rgba(249, 115, 22, 0.15); color: var(--orange); }
.feature__icon--green { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.feature__icon--blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); }
.feature__icon--cyan { background: rgba(6, 182, 212, 0.15); color: var(--cyan); }

.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

/* ========== VANISH ========== */
.vanish {
  padding: 100px 0;
  background: var(--bg);
}

.vanish__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .vanish__inner { flex-direction: row; }
}

.vanish__text { flex: 1; }
.vanish__text h2 { font-size: 2.2rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.vanish__text p { color: var(--text-dim); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }

.vanish__timer { display: flex; align-items: center; gap: 16px; }
.vanish__timer-ring { position: relative; width: 80px; height: 80px; }
.vanish__timer-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.vanish__timer-circle { animation: timerCountdown 10s linear infinite; }
@keyframes timerCountdown {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 226; }
}
.vanish__timer-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem;
  color: var(--text);
}
.vanish__timer-label { color: var(--text-muted); font-size: 0.9rem; }

/* Vanish card */
.vanish__visual { flex: 0 0 auto; }

.vanish__card {
  width: 240px; height: 320px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.1); }
  50% { box-shadow: 0 0 60px rgba(168, 85, 247, 0.25); }
}

.vanish__card-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.vanish__card-content {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.vanish__card-eye { width: 48px; height: 48px; opacity: 0.6; }
.vanish__card-eye svg { width: 100%; height: 100%; }

/* ========== ENCRYPTION ========== */
.encrypt {
  padding: 100px 0;
  background: var(--bg-card);
}

.encrypt__inner { text-align: center; }

.encrypt__badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.encrypt__title { font-size: 2.2rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.encrypt__desc { color: var(--text-dim); font-size: 1.05rem; max-width: 640px; margin: 0 auto 48px; line-height: 1.7; }

.encrypt__chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.encrypt__node {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px;
}

.encrypt__node-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--purple);
}
.encrypt__node-icon svg { width: 28px; height: 28px; }

.encrypt__node--server .encrypt__node-icon {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

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

.encrypt__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100px;
}

.encrypt__arrow-line {
  width: 100%;
  height: 2px;
  background: var(--gradient);
  position: relative;
}

.encrypt__arrow-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .encrypt__chain { flex-direction: column; }
  .encrypt__arrow { width: 2px; height: 40px; flex-direction: row; gap: 8px; }
  .encrypt__arrow-line { width: 2px; height: 100%; }
}

/* ========== DOWNLOAD ========== */
.download {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.download__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 60%);
}

.download__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.download__orb--1 { width: 400px; height: 400px; background: var(--purple); top: -20%; left: 30%; }
.download__orb--2 { width: 300px; height: 300px; background: var(--pink); bottom: -20%; right: 20%; }

.download__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.download__icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.download__inner h2 { font-size: 2.2rem; letter-spacing: -0.02em; }
.download__inner p { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 12px; }

/* ========== FOOTER ========== */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  display: flex; flex-direction: column; gap: 24px;
}

.nav__logo--footer { margin-bottom: 4px; }
.footer__left p { font-size: 0.85rem; color: var(--text-muted); }

.footer__links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer__links a { font-size: 0.9rem; color: var(--text-dim); transition: color var(--transition); }
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__made-by {
  display: flex; align-items: center; gap: 6px;
}

.footer__webbit-logo {
  height: 20px; width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.footer__webbit-logo:hover { opacity: 1; }

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; align-items: flex-start; flex-wrap: wrap; justify-content: space-between; }
  .footer__left { flex: 1; }
  .footer__links { flex: 1; justify-content: flex-end; }
  .footer__bottom { flex: 0 0 100%; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ========== DESKTOP HERO ========== */
@media (min-width: 860px) {
  .hero__content {
    flex-direction: row;
    align-items: center;
    padding: 140px 24px 80px;
  }
  .hero__text { text-align: left; flex: 1; }
  .hero__logo { justify-content: flex-start; }
  .hero__logo-img { width: 180px; height: 180px; border-radius: 38px; }
  .hero__title { font-size: 4.5rem; }
  .hero__actions { justify-content: flex-start; }
  .hero__phone { flex: 0 0 auto; }
  .section-title { font-size: 2.6rem; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 5rem; }
}

/* ========== SMALL SCREENS ========== */
@media (max-width: 480px) {
  .hero__title { font-size: 2.8rem; }
  .phone-mockup { width: 220px; height: 440px; }
  .section-title { font-size: 1.8rem; }
  .vanish__text h2, .encrypt__title, .download__inner h2 { font-size: 1.8rem; }
}
