/* ============================================================
   Hopscotch Landing — Light Theme
   hopscotch.city
   ============================================================ */

/* MARK: - Regards Font */

@font-face {
  font-family: 'Regards';
  src: url('assets/fonts/Regards.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* MARK: - Reset & Base */

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

html {
  scroll-behavior: smooth;
}

/* MARK: - Design Tokens */

:root {
  /* Backgrounds */
  --bg-base:        #FFFFFF;
  --bg-surface:     #F5F5F7;
  --bg-raised:      #EBEBED;
  --bg-trust:       #F0F0F2;
  --bg-privacy:     #1A1A1F;

  /* Borders */
  --border:         #E0E0E4;
  --border-strong:  #C8C8CC;

  /* Brand teal */
  --teal-light:     #2EC4A0;
  --teal-dark:      #1A8C72;
  --teal-deep:      #146B57;
  --teal-gradient:  linear-gradient(145deg, #2EC4A0, #1A8C72);
  --teal-glow:      rgba(46, 196, 160, 0.08);

  /* Text */
  --text-primary:   #1D1D1F;
  --text-secondary: #515154;
  --text-muted:     #8E8E93;
  --text-on-dark:   #F2F2F7;
  --text-secondary-on-dark: #AEAEB2;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Shadows */
  --shadow-card:       0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 2px 8px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-device:     0 16px 56px rgba(0,0,0,0.20), 0 4px 16px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.08);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Layout */
  --content-width: 1100px;
  --section-padding-v: 96px;
  --section-padding-v-mobile: 48px;
}

/* MARK: - Global */

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* MARK: - Navigation */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.nav-wordmark {
  height: 32px;
  width: auto;
}

.nav-wordmark img {
  height: 32px;
  width: auto;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--teal-gradient);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(46, 196, 160, 0.35);
}

.nav-chevron {
  transition: transform 0.2s ease;
}

.btn-nav[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* Nav dropdown */
.nav-cta-wrapper {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  overflow: hidden;
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.1s ease;
}

.nav-dropdown-item:hover {
  background: var(--bg-surface);
}

.nav-dropdown-item + .nav-dropdown-item {
  border-top: 1px solid var(--border);
}

.nav-dropdown-item svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* MARK: - Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--teal-gradient);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(46, 196, 160, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--text-secondary);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: transparent;
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.btn-ghost:hover {
  opacity: 0.7;
}

/* Platform toggle tabs */
.platform-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-raised);
  border-radius: 100px;
  border: 1px solid var(--border);
  margin: 0 auto 40px;
  width: fit-content;
}

.platform-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.platform-tab:hover {
  color: var(--text-secondary);
}

.platform-tab.active {
  background: #FFFFFF;
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.platform-tab svg {
  flex-shrink: 0;
}

/* Feature panels */
.features-panel {
  display: none;
}

.features-panel.active {
  display: block;
}

/* Final CTA dual buttons */
.final-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* MARK: - Hero Section */

.hero {
  padding-top: calc(64px + 80px);
  padding-bottom: 96px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #FAFFFE 0%, #FFFFFF 60%);
}

.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Teal radial glow behind devices */
.hero-inner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(46, 196, 160, 0.10) 0%, rgba(46, 196, 160, 0.03) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--teal-dark);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-free-note {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin-top: 16px;
  width: 100%;
}

/* Hero Device Stack */
.hero-devices {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 32px;
}

.device-phone {
  position: relative;
  width: 280px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-device);
  animation: float 5s ease-in-out infinite;
  flex-shrink: 0;
}

.device-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 44px;
}

.device-widget {
  position: absolute;
  top: -48px;
  right: -64px;
  width: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-device);
  transform: rotate(4deg);
  animation: float-offset 5s ease-in-out infinite;
}

.device-widget img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* MARK: - Trust Bar */

.trust-bar {
  background: var(--bg-trust);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.trust-bar-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* MARK: - Section Shared Styles */

.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}

/* MARK: - The Moment Section */

.moment-section {
  padding: var(--section-padding-v) 0;
}

.moment-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  max-width: 720px;
  text-align: center;
}

/* MARK: - How It Works */

.how-section {
  padding: var(--section-padding-v) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-glow);
  border: 1px solid rgba(46, 196, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  flex-shrink: 0;
}

.how-step-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.how-step-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* MARK: - Geofence Feature Hero */

.geo-section {
  padding: var(--section-padding-v) 0;
}

.geo-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.geo-device {
  display: flex;
  justify-content: center;
}

.geo-device-frame {
  width: 260px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-device);
}

.geo-device-frame img {
  width: 100%;
  height: auto;
  display: block;
}

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

.geo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--teal-glow);
  border: 1px solid rgba(46, 196, 160, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal-dark);
  text-transform: uppercase;
  width: fit-content;
}

.geo-content .section-body {
  max-width: 480px;
}

/* MARK: - Feature Grid */

.features-section {
  padding: var(--section-padding-v) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(46, 196, 160, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-glow);
  border: 1px solid rgba(46, 196, 160, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* MARK: - Privacy Section (dark island) */

.privacy-section {
  padding: var(--section-padding-v) 0;
  background: var(--bg-privacy);
}

.privacy-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.privacy-section .section-label {
  color: var(--teal-light);
}

.privacy-section .section-headline {
  color: var(--text-on-dark);
}

.privacy-section .section-body {
  color: var(--text-secondary-on-dark);
}

.privacy-inner .section-body {
  max-width: 680px;
  margin: 0 auto;
}

.privacy-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary-on-dark);
}

.privacy-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

/* MARK: - Screenshot Showcase */

.screenshots-section {
  padding: var(--section-padding-v) 0;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.screenshots-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.screenshots-stage::before {
  content: '';
  position: absolute;
  inset: -48px;
  background: radial-gradient(ellipse at 50% 60%, rgba(46, 196, 160, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.screenshot-device {
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-device);
}

.screenshot-device.main {
  width: 260px;
  z-index: 2;
  position: relative;
}

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

/* Apple Watch specific */
.watch-device {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-device);
}

.watch-device.side {
  width: 100px;
  border-radius: 20px;
  opacity: 0.85;
  margin-bottom: 24px;
}

.watch-device img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

/* MARK: - Business Section */

.business-section {
  padding: var(--section-padding-v) 0;
}

.business-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 200, 80, 0.08);
  border: 1px solid rgba(255, 200, 80, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B8860B;
}

.coming-soon-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B8860B;
  animation: pulse-dot 2s ease-in-out infinite;
}

.email-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
}

.email-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease;
}

.email-input::placeholder {
  color: var(--text-muted);
}

.email-input:focus {
  border-color: var(--teal-dark);
  outline: 2px solid rgba(26, 140, 114, 0.2);
  outline-offset: 0;
}

.email-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* MARK: - Final CTA */

.final-cta {
  padding: var(--section-padding-v) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.final-cta-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.final-cta .section-headline {
  max-width: 640px;
}

.final-cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: -8px;
}

.final-cta-platform {
  font-size: 14px;
  color: var(--text-muted);
}

/* MARK: - Footer */

.footer {
  padding: 40px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-wordmark img {
  height: 24px;
  width: auto;
  opacity: 0.6;
}

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

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--text-secondary);
}

.footer-right {
  text-align: right;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 4px;
}

/* MARK: - Animations */

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

@keyframes float-offset {
  0%, 100% { transform: rotate(4deg) translateY(0px); }
  50%       { transform: rotate(4deg) translateY(-6px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* MARK: - Responsive */

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

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subheadline {
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-free-note {
    text-align: center;
  }

  .hero-inner::after {
    display: none;
  }

  .geo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .geo-inner .geo-device {
    order: -1;
  }

  .geo-content {
    align-items: center;
    text-align: center;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 520px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding-v: 48px;
  }

  .hero {
    padding-top: calc(64px + 48px);
    padding-bottom: 48px;
  }

  .device-phone {
    width: 220px;
  }

  .device-widget {
    width: 140px;
    right: -32px;
    top: -32px;
  }

  .trust-bar-inner {
    gap: 20px;
  }

  .trust-dot {
    display: none;
  }

  .screenshots-stage {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .watch-device.side {
    width: 120px;
    opacity: 1;
    margin-bottom: 0;
  }

  .screenshot-device.main {
    width: 240px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-input {
    border-radius: var(--radius-md);
  }

  .geo-device-frame {
    width: 220px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
