/* ==========================================
   issa — Apple Intelligence / Liquid Glass
   ========================================== */

/* SF Pro Rounded — system override for Apple devices */
@font-face {
  font-family: 'SF Pro Rounded';
  src: local('SF Pro Rounded'), local('.SFNSRounded'), local('.AppleSystemUIFontRounded');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: local('SF Pro Rounded Medium'), local('.SFNSRounded-Medium');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: local('SF Pro Rounded Semibold'), local('.SFNSRounded-Semibold');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: local('SF Pro Rounded Bold'), local('.SFNSRounded-Bold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: local('SF Pro Rounded Heavy'), local('.SFNSRounded-Heavy');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: local('SF Pro Rounded Black'), local('.SFNSRounded-Black');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --blue-light: #4DA6FF;
  --blue-mid: #1F8CFF;
  --blue-dark: #1A5FD0;
  --yellow: #FFD60A;
  --white: #FFFFFF;
  --text: #1d1d1f;
  --text-secondary: #86868b;
  --surface: rgba(245, 245, 247, 0.7);
  --dark: #1C1C1E;
  --radius: 24px;
  --radius-sm: 16px;
  --font: 'SF Pro Rounded', 'Nunito', 'Inter', system-ui, sans-serif;

  /* Glass tokens */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
  --glass-blur: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   AMBIENT BACKGROUND
   ========================================== */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 166, 255, 0.35) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 95, 208, 0.25) 0%, transparent 70%);
  top: 20%;
  right: -15%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation-duration: 22s;
  animation-delay: -10s;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(77, 166, 255, 0.2) 0%, transparent 70%);
  bottom: -5%;
  right: 20%;
  animation-duration: 28s;
  animation-delay: -15s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* Noise / grain texture */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: 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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ==========================================
   GLASS SYSTEM
   ========================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 48px rgba(31, 38, 135, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-card--hero {
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-blur: 40px;
  border-radius: 32px;
}

.glass-card-mini {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.glass-chip {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.glass-pill {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.glass-pill-label {
  background: rgba(77, 166, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(77, 166, 255, 0.2);
  box-shadow: 0 2px 12px rgba(31, 140, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-phone {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ---- Highlight marker ---- */
.highlight {
  position: relative;
  display: inline;
  z-index: 1;
  white-space: nowrap;
}

.highlight::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 4px;
  height: 35%;
  background: linear-gradient(90deg, rgba(255, 214, 10, 0.6), rgba(255, 214, 10, 0.4));
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-2deg);
}

/* ---- Fade-up animation ---- */
/* Only hide elements once JS is ready (prevents white flash) */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Make all sections relative so they sit above the ambient bg */
section, nav, footer {
  position: relative;
  z-index: 2;
}

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* App icon image */
.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(31, 140, 255, 0.2);
}

.logo-img--large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 140, 255, 0.25);
}

.logo-img--small {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

/* Cedarville Cursive for "issa" brand name */
.logo-cursive {
  font-family: 'Cedarville Cursive', cursive !important;
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark)) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(31, 140, 255, 0.25);
  transition: transform 0.25s, box-shadow 0.25s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31, 140, 255, 0.35);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-logo-badge {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.hero-headline {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 44px;
}

.app-store-btn {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s;
  border-radius: 14px;
}

.app-store-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.app-store-badge {
  height: 48px;
  width: auto;
}

.app-store-badge--large {
  height: 56px;
}

.hero-link {
  color: var(--blue-mid);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
  letter-spacing: -0.01em;
}

.hero-link:hover {
  gap: 10px;
  color: var(--blue-dark);
}

.hero-link .arrow {
  font-size: 16px;
  transition: transform 0.25s;
}

.hero-link:hover .arrow {
  transform: translateY(3px);
}

/* Hero flags */
.hero-flags {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.flag-group {
  text-align: center;
}

.flag-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.flags {
  display: flex;
  gap: 6px;
  font-size: 22px;
}

/* Hero mascot */
.hero-mascot {
  position: absolute;
  bottom: -125px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 90vw;
  z-index: 1;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-14px); }
}

.mascot-svg,
.hero-mascot-img {
  width: 100%;
  height: auto;
}

/* ==========================================
   FEATURES (3-column)
   ========================================== */
.features {
  padding: 120px 0 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 40px 28px;
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* ==========================================
   VOICE SECTION (split)
   ========================================== */
.voice-section {
  padding: 100px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pill {
  display: inline-block;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.split-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}

.section-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.check {
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Screenshot frames */
.screenshot-frame {
  width: 270px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.screenshot-frame:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-tilt-left {
  transform: rotate(-3deg);
}

.screenshot-tilt-right {
  transform: rotate(3deg);
}

.screenshot-tilt-left:hover {
  transform: rotate(0deg) translateY(-6px);
}

.screenshot-tilt-right:hover {
  transform: rotate(0deg) translateY(-6px);
}

/* ==========================================
   ACCENTS SECTION
   ========================================== */
.accents-section {
  padding: 100px 0;
  text-align: center;
}

.accents-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.035em;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.chip {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s;
  letter-spacing: -0.01em;
}

.chip:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.chip--faded {
  opacity: 0.4;
}

/* ==========================================
   CAMERA + TEXT
   ========================================== */
.camera-text-section {
  padding: 100px 0;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}

.section-header .section-sub {
  font-size: 17px;
}

.phone-duo {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.035em;
}

.steps-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 32px 24px;
}

.step-num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

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

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.step-connector {
  width: 1px;
  background: rgba(0,0,0,0.08);
  margin: 24px 0;
  flex-shrink: 0;
  align-self: stretch;
}

/* ==========================================
   STATS
   ========================================== */
.stats-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Dark section glow */
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(31, 140, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), #a5d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ==========================================
   USE CASES
   ========================================== */
.use-cases {
  padding: 100px 0;
}

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

.use-card {
  padding: 32px 28px;
}

.use-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.use-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.use-card p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
  padding: 80px 0 120px;
  text-align: center;
}

.cta-content {
  padding: 64px 48px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.mascot-full {
  width: 120px;
  height: auto;
  margin-bottom: 28px;
  animation: float-cta 5s ease-in-out infinite;
}

@keyframes float-cta {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.app-store-btn--large {
  display: inline-block;
  margin-bottom: 16px;
}

.cta-fine {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark);
  padding: 36px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

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

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

.footer-logo-text {
  color: rgba(255,255,255,0.8);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  font-weight: 400;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .nav {
    top: 8px;
    left: 8px;
    right: 8px;
    border-radius: 16px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 80px 20px 0;
    min-height: 100svh;
  }

  .hero-headline {
    font-size: 38px;
  }

  .hero-flags {
    flex-direction: column;
    gap: 12px;
  }

  .hero-mascot {
    width: 300px;
    bottom: -30px;
  }

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

  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-visual {
    order: -1;
  }

  .screenshot-frame {
    width: 220px;
  }

  .phone-duo {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .screenshot-tilt-left,
  .screenshot-tilt-right {
    transform: rotate(0);
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    width: 60%;
    height: 1px;
    margin: 0;
  }

  .step {
    max-width: 100%;
  }

  .stats-row {
    flex-direction: column;
    gap: 36px;
  }

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

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

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .cta-content {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-mascot {
    width: 260px;
    bottom: -20px;
  }
}
