/* ═══════════════════════════════════════════════════════════════
   offgrid — landing page styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */

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

:root {
  /* Brand */
  --accent: #C1FF72;
  --accent-rgb: 193, 255, 114;
  --accent-dark: #9EDB50;

  /* Dark palette */
  --bg-dark: #0D0D1A;
  --bg-dark-2: #1A1A2E;
  --bg-dark-3: #2A2A3E;
  --text-light: #FFFFFF;
  --text-light-2: #BFBFBF;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.05);

  /* Light palette */
  --bg-light: #FAFBFC;
  --bg-light-2: #F0F2F5;
  --text-dark: #111111;
  --text-dark-2: #666666;
  --glass-border-light: rgba(0, 0, 0, 0.06);
  --glass-bg-light: rgba(255, 255, 255, 0.75);

  /* Spacing */
  --nav-height: 72px;
  --section-pad: 120px;
  --section-pad-mobile: 72px;
  --container-max: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

input, button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ── Utility ──────────────────────────────────────────────── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* ── Grain overlay ────────────────────────────────────────── */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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='.85' 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;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 0 32px rgba(var(--accent-rgb), 0.4);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ── Section headers ──────────────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.section-title-light {
  color: var(--text-light);
}

/* ── Glass cards ──────────────────────────────────────────── */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.glass-card-light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}


/* ══════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(13, 13, 26, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

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

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light-2);
  transition: color 0.3s;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  z-index: 10;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 13, 26, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: var(--accent);
}

.mobile-menu-cta {
  margin-top: 16px;
}


/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #12122A 50%, var(--bg-dark-2) 100%);
  overflow: hidden;
  padding: var(--section-pad) 0;
  padding-top: calc(var(--nav-height) + var(--section-pad));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12), transparent 70%);
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06), transparent 70%);
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light-2);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.25em;
}

.hero-headline .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-headline.revealed .word-inner {
  transform: translateY(0);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light-2);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-privacy {
  font-size: 13px;
  color: var(--text-light-2);
  opacity: 0.6;
  margin-top: 12px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--text-light-2);
  opacity: 0.4;
  letter-spacing: 0.06em;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* Hero phone */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: #111122;
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(var(--accent-rgb), 0.08);
}

.phone-mockup-sm {
  width: 240px;
  height: 500px;
  border-radius: 38px;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0a0a1a;
  border-radius: 20px;
  z-index: 3;
}

.phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 38px;
  background: var(--bg-dark-2);
  overflow: hidden;
}

.phone-mockup-sm .phone-screen {
  border-radius: 32px;
}

/* Placeholder app UI inside phone */
.placeholder-app {
  padding: 48px 16px 16px;
}

.placeholder-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.placeholder-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
}

.placeholder-avatar-small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-dark-3);
}

.placeholder-stories {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.placeholder-story-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), rgba(var(--accent-rgb), 0.3));
  flex-shrink: 0;
}

.placeholder-story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--bg-dark-2);
}

.placeholder-post {
  margin-bottom: 16px;
}

.placeholder-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.placeholder-post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.placeholder-post-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.placeholder-bar {
  border-radius: 4px;
  background: var(--bg-dark-3);
}

.placeholder-post-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-dark-3), var(--bg-dark));
}

/* Screenshot placeholder */
.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-light-2);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.6;
}


/* ══════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════ */

.features {
  padding: var(--section-pad) 0;
  position: relative;
}

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

.feature-card {
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(var(--accent-rgb), 0.1);
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark-2);
}


/* ══════════════════════════════════════════════════════════════
   WIDGET SHOWCASE
   ══════════════════════════════════════════════════════════════ */

.widget-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0F0F24 100%);
}

.widget-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.widget-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.widget-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light-2);
  margin-bottom: 32px;
  max-width: 440px;
}

.widget-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light-2);
}

/* Widget phone mockup */
.widget-phone-bg {
  position: relative;
  width: 280px;
  height: 500px;
  background: linear-gradient(180deg, #1a1a2e, #111122);
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(var(--accent-rgb), 0.06);
}

.home-screen {
  padding: 56px 20px 20px;
}

.home-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.home-widget {
  padding: 20px;
  margin-bottom: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(var(--accent-rgb), 0.15);
}

.home-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.home-widget-logo {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.home-widget-avatars {
  display: flex;
  gap: -4px;
  margin-bottom: 12px;
}

.hw-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark-2);
  margin-left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
}

.hw-avatar:first-child {
  margin-left: 0;
}

.hw-avatar-more {
  background: var(--bg-dark-3) !important;
}

.home-widget-text {
  font-size: 12px;
  color: var(--text-light-2);
}

.home-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 8px;
}

.home-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   CIRCLES
   ══════════════════════════════════════════════════════════════ */

.circles-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.circles-accent-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06), transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.circles-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: rgba(var(--accent-rgb), 0.1);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

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

.circles-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark-2);
  margin-bottom: 32px;
  max-width: 460px;
}

.circles-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.circle-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark-2);
}

.circle-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Circles illustration */
.circles-illustration {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(var(--accent-rgb), 0.25);
}

.circle-ring-1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-slow 30s linear infinite;
}

.circle-ring-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-slow 45s linear infinite reverse;
}

@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.circle-avatar {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ca-1 { top: -18px; left: 50%; transform: translateX(-50%); }
.ca-2 { bottom: -18px; left: 20%; }
.ca-3 { bottom: -18px; right: 20%; }
.ca-4 { top: -18px; left: 30%; }
.ca-5 { top: -18px; right: 30%; }
.ca-6 { bottom: -18px; left: 50%; transform: translateX(-50%); }
.ca-7 { top: 50%; right: -18px; transform: translateY(-50%); }

.circle-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.circle-center-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}


/* ══════════════════════════════════════════════════════════════
   SCREENSHOTS
   ══════════════════════════════════════════════════════════════ */

.screenshots-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-2) 100%);
}

.screenshots-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.screenshot-item {
  position: relative;
}


/* ══════════════════════════════════════════════════════════════
   CTA / DOWNLOAD
   ══════════════════════════════════════════════════════════════ */

.cta-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0F0F24 0%, var(--bg-dark) 100%);
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light-2);
  margin-bottom: 40px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.waitlist-form-cta {
  margin: 0 auto 48px;
  justify-content: center;
}

.waitlist-input-wrap {
  position: relative;
  flex: 1;
}

.waitlist-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light-2);
  opacity: 0.5;
}

.waitlist-input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 15px;
  transition: all 0.3s;
}

.waitlist-input::placeholder {
  color: var(--text-light-2);
  opacity: 0.5;
}

.waitlist-input:focus {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.08);
}

/* Store badges */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: default;
}

.store-badge:hover {
  opacity: 0.8;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
}

.store-badge-small {
  font-size: 10px;
  color: var(--text-light-2);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.store-badge-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.footer {
  background: #080814;
  color: var(--text-light-2);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 0.8fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-light-2);
  opacity: 0.6;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-light-2);
  opacity: 0.6;
  transition: all 0.3s;
}

.footer-link:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light-2);
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 13px;
  opacity: 0.4;
}


/* ══════════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 100px;
  color: var(--text-light);
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  z-index: 10000;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}


/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */

/* Fade up */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Text reveal */
.anim-text-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.anim-text-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-text-reveal.revealed .word-inner {
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .waitlist-form {
    justify-content: center;
    margin: 0 auto;
  }

  .hero-privacy {
    text-align: center;
  }

  .widget-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .widget-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .widget-features {
    align-items: center;
  }

  .circles-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .circles-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .circles-features {
    align-items: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .hero-headline {
    font-size: clamp(32px, 8vw, 48px);
  }

  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist-input-wrap {
    width: 100%;
  }

  .screenshots-grid {
    gap: 20px;
  }

  .phone-mockup-sm {
    width: 200px;
    height: 420px;
    border-radius: 32px;
  }

  .phone-mockup-sm .phone-notch {
    width: 80px;
    height: 22px;
    top: 10px;
  }

  .phone-mockup-sm .phone-screen {
    border-radius: 26px;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
  }

  .footer-top {
    gap: 32px;
  }

  .circles-illustration {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 240px;
    height: 500px;
    border-radius: 38px;
  }

  .phone-mockup .phone-screen {
    border-radius: 32px;
  }

  .phone-mockup .phone-notch {
    width: 80px;
    height: 24px;
    top: 10px;
  }

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

  .hero-scroll-hint {
    display: none;
  }
}
