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

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f7f5;
  --color-bg-dark: #1a1a1a;
  --color-accent: #e8573d;
  --color-accent-hover: #d14a32;
  --color-accent-light: #fdf0ee;
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-text-light: #ffffff;
  --color-border: #e5e5e5;
  --color-card: #ffffff;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1120px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

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

ul {
  list-style: none;
}

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

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

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

.section {
  padding: 96px 24px;
}

/* Anchor targets: offset for fixed nav (single value to avoid double gap) */
section[id] {
  scroll-margin-top: 64px;
}

.section-alt {
  background: var(--color-bg-alt);
}

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

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

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

.section-accent .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

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

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

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

/* === Nav Actions (right side) === */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-organizers {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--color-accent);
  transition: all 0.2s;
}

.nav-organizers:hover {
  background: var(--color-accent);
  color: white;
}

.nav-organizers-active {
  background: var(--color-accent);
  color: white;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-accent);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s;
}

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

/* Mobile menu (hidden on desktop) */
.nav-mobile-menu {
  display: none;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.section-dark .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: var(--color-text);
}

.btn-white {
  background: white;
  color: var(--color-accent);
  font-weight: 700;
}

.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

/* === App Store Badge === */
.app-store-badge {
  display: inline-block;
  transition: opacity 0.2s;
}

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

.app-store-badge:hover {
  opacity: 0.85;
}

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

/* Placeholder when app is in review – remove when restoring badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--color-bg-alt);
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.3;
  transition: border-color 0.2s, background 0.2s;
}
.coming-soon-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}
.coming-soon-badge__text {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1rem;
}
/* Dark CTA section */
.section-dark .coming-soon-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}
.section-dark .coming-soon-badge__icon {
  color: rgba(255, 255, 255, 0.9);
}
.section-dark .coming-soon-badge__text {
  color: var(--color-text-light);
}
.coming-soon-badge--large {
  padding: 14px 24px;
  gap: 14px;
}
.coming-soon-badge--large .coming-soon-badge__icon {
  width: 32px;
  height: 32px;
}
.coming-soon-badge--large .coming-soon-badge__text {
  font-size: 1.0625rem;
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 96px;
  text-align: center;
  background: var(--color-bg);
}

.hero-content {
  max-width: 720px;
}

.hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.hero-compact {
  min-height: auto;
  padding: 140px 24px 80px;
}

.hero-compact .hero-content {
  max-width: 680px;
}

/* === Pillars === */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.pillar {
  text-align: center;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pillar h3 {
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.pillar p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Feature Rows === */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-row-reverse {
  direction: rtl;
}

.feature-row-reverse > * {
  direction: ltr;
}

.feature-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.feature-label-light {
  color: rgba(255, 255, 255, 0.8);
}

.feature-text h2 {
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* === Phone Frame === */
.phone-frame {
  max-width: 320px;
  margin: 0 auto;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 320 / 661;
}

/* === Event Types Grid === */
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.event-type-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.event-type-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.event-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-type-info {
  padding: 20px 24px 24px;
}

.event-type-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.event-type-info h4 {
  margin-bottom: 6px;
}

.event-type-info p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* === Pain Point Grid (Organizer) === */
.pain-point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pain-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* === Organizer Teaser (Homepage) === */
.org-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.org-teaser-text h2 {
  margin-bottom: 16px;
}

.org-teaser-text > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 24px;
}

.org-teaser-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.org-teaser-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.org-teaser-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.org-teaser-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.org-teaser-phones {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.org-teaser-phones .phone-frame {
  max-width: 200px;
  flex-shrink: 0;
}

/* === Phone Duo (two phones side by side) === */
.phone-duo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.phone-duo .phone-frame {
  max-width: 220px;
  flex-shrink: 0;
}

/* === Organizer Visual Row === */
.org-visual-row {
  margin-top: 64px;
}

/* === Organizer Showcase (Chat + Map) === */
.org-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.org-showcase-phones {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}


.phone-frame-overlap {
  margin-top: 48px;
}

.org-showcase-phones .phone-frame {
  max-width: 240px;
  flex-shrink: 0;
}

.org-showcase-text h2 {
  margin-bottom: 16px;
}

.org-showcase-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 20px;
}

.org-feature-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.org-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

/* === Organizer Dual Feature (Materials + Photos) === */
.org-dual-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.org-dual-card {
  text-align: center;
}

.phone-frame-small {
  max-width: 240px;
  margin: 0 auto 28px;
}

.org-dual-text h3 {
  margin-bottom: 12px;
}

.org-dual-text p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

/* === Organizer Extras Grid === */
.org-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.org-extras-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.org-extras-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.org-extras-card h4 {
  margin-bottom: 10px;
}

.org-extras-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* === Organizer CTA Box === */
.organizer-cta-block {
  margin-top: 56px;
}

.org-cta-box-light {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  margin: 0 auto;
}

.org-cta-box-light h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.org-cta-box-light p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-header h3 {
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.pricing-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* 4-column layout for Free / Pro / Organizer / Patron */
.pricing-grid.pricing-grid-four {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* === Shipped (trust / credibility) === */
.shipped-list {
  max-width: 560px;
  margin: 32px auto 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shipped-list li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.shipped-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.8;
}

/* === Roadmap === */
.roadmap-list {
  max-width: 640px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roadmap-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.roadmap-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.roadmap-now {
  background: var(--color-accent);
  color: white;
}

.roadmap-soon {
  background: #e0efe8;
  color: #0d5c52;
}

.roadmap-next {
  background: #f0e6d3;
  color: #8b6914;
}

.roadmap-later {
  background: #e8e8e8;
  color: #666;
}

.roadmap-content h4 {
  margin-bottom: 4px;
}

.roadmap-content p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.roadmap-shipped-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: left;
}
.roadmap-shipped-block:hover {
  border-color: var(--color-accent);
  background: var(--color-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.roadmap-shipped-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.roadmap-shipped-block__text {
  color: var(--color-text-secondary);
}
.roadmap-shipped-block:hover .roadmap-shipped-block__text {
  color: var(--color-text);
}
.roadmap-shipped-block__arrow {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.roadmap-feedback {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9375rem;
}
.roadmap-feedback a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.roadmap-feedback a:hover {
  text-decoration: underline;
}

/* Shipped overlay: cards like roadmap */
.shipped-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.shipped-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.shipped-card__chip {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  background: #e8e8e8;
  color: #555;
}
.shipped-card__content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.shipped-card__content p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* === Android Waitlist === */
.android-waitlist {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.android-waitlist-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.android-waitlist h2 {
  margin-bottom: 12px;
}

.android-waitlist > p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.android-form-row {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.android-form-row input[type="email"] {
  flex: 1;
  font-family: var(--font-family);
  font-size: 1rem;
  padding: 14px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--color-bg);
  color: var(--color-text);
}

.android-form-row input[type="email"]:focus {
  border-color: var(--color-accent);
}

.android-form-row input[type="email"]::placeholder {
  color: var(--color-text-secondary);
}

.android-form-row input[type="submit"] {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.android-form-row input[type="submit"]:hover {
  background: var(--color-accent-hover);
}

.android-form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.android-beta-link {
  margin-top: 24px;
  margin-bottom: 0;
}
.android-beta-trigger {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.android-beta-trigger:hover {
  color: var(--color-accent-hover);
}
.roadmap-inline-link.android-beta-trigger {
  margin: 0;
  vertical-align: baseline;
}

/* === Overlay === */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}
.overlay.is-open {
  visibility: visible;
  opacity: 1;
}
.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 0;
}
.overlay-panel {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}
.overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.overlay-close:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
}
.overlay-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  padding-right: 36px;
}
.overlay-description {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.overlay .android-form-row {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

/* === Ambassadors === */
.ambassadors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.ambassador-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}

.ambassador-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.ambassador-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.ambassador-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ambassador-card:hover .ambassador-photo img {
  transform: scale(1.04);
}

.ambassador-info {
  padding: 20px 20px 22px;
}

.ambassador-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.ambassador-location {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.ambassador-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ambassador-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.ambassador-link-ig {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

.ambassador-link-ig:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.ambassador-link-web {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.ambassador-link-web:hover {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.ambassador-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 100px;
  background: rgba(232, 87, 61, 0.18);
  color: var(--color-accent);
  border: 1px solid rgba(232, 87, 61, 0.3);
  white-space: nowrap;
}

/* === About === */
.about-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-block h2 {
  margin-bottom: 24px;
}

.about-block p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* === CTA === */
.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-block h2 {
  margin-bottom: 16px;
}

.cta-block > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Footer === */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

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

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

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* === Legal Pages === */
.legal-page {
  padding-top: 120px;
  padding-bottom: 96px;
}

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

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.legal-header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.legal-meta strong {
  color: var(--color-text);
  font-weight: 600;
}

.legal-container h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-container h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-container p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-container strong {
  color: var(--color-text);
  font-weight: 600;
}

.legal-container ul,
.legal-container ol {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-container ol {
  list-style: decimal;
}

.legal-container li {
  margin-bottom: 6px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.legal-container li ul {
  margin-top: 6px;
  margin-bottom: 8px;
}

.legal-container a {
  color: var(--color-accent);
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-container hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 48px 0;
}

.legal-info-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-highlight {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-highlight p:last-child {
  margin-bottom: 0;
}

.legal-warning {
  background: #fef3c7;
  border-left: 3px solid #f59e0b;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-warning p:last-child {
  margin-bottom: 0;
}

.legal-caps {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .ambassadors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .nav-organizers {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-mobile-menu {
    display: block;
  }

  .nav-mobile-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    background: none;
    border: none;
    padding: 0;
  }

  .nav-mobile-toggle::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--color-text);
    box-shadow: 0 7px 0 var(--color-text), 0 14px 0 var(--color-text);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .nav-mobile-menu.is-open .nav-mobile-toggle::before {
    box-shadow: none;
    transform: translateY(7px) rotate(45deg);
  }

  .nav-mobile-menu.is-open .nav-mobile-toggle::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transform: translateY(7px) rotate(-45deg);
  }

  .nav-mobile-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 64px);
    background: var(--color-bg);
    padding: 8px 24px 32px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }

  .nav-mobile-menu.is-open .nav-mobile-panel {
    display: flex;
  }

  .nav-mobile-panel a {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 16px 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
  }

  .nav-mobile-panel a:last-child {
    border-bottom: none;
    margin-top: 16px;
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 100px;
    font-weight: 600;
  }

  .hero {
    min-height: auto;
    padding: 120px 24px 64px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 64px 24px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-row-reverse {
    direction: ltr;
  }

  .phone-frame {
    max-width: 260px;
  }

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

  .phone-duo .phone-frame {
    max-width: 240px;
  }

  .phone-duo .phone-frame-overlap {
    margin-top: 0;
  }

  .org-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .org-teaser-phones {
    order: -1;
  }

  .org-teaser-phones .phone-frame {
    max-width: 180px;
  }

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

  .pain-point-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .org-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .org-showcase-phones {
    flex-direction: column;
    align-items: center;
  }

  .org-showcase-phones .phone-frame {
    max-width: 240px;
  }

  .phone-frame-overlap {
    margin-top: 0;
  }

  .org-dual-feature {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .pricing-grid,
  .pricing-grid-two,
  .pricing-grid-four,
  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ambassadors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .android-form-row {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }

  .quote-block blockquote {
    font-size: 1.15rem;
  }
}
