/* === DESIGN TOKENS === */
:root {
  --bg: #0A0A0A;
  --bg-2: #0F0F0F;
  --surface: #141414;
  --surface-2: #1A1A1A;
  --border: #222222;
  --border-2: #2E2E2E;
  --teal: #00C2C7;
  --teal-dim: rgba(0, 194, 199, 0.12);
  --teal-glow: rgba(0, 194, 199, 0.25);
  --coral: #FF4D6D;
  --coral-dim: rgba(255, 77, 109, 0.12);
  --gray: #EDEDED;
  --white: #FFFFFF;
  --text: #AAAAAA;
  --text-muted: #666666;
  --ff-head: 'Montserrat', -apple-system, sans-serif;
  --ff-body: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn:active { transform: translateY(0); }

.btn-teal {
  background: var(--teal);
  color: var(--bg);
}
.btn-teal:hover { box-shadow: 0 0 30px var(--teal-glow); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-lg { padding: 0.875rem 2.25rem; font-size: 1rem; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wordmark-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--white); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--teal);
  color: var(--bg) !important;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: box-shadow 0.2s;
}
.nav-cta:hover { box-shadow: 0 0 20px var(--teal-glow); opacity: 1; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_188053/1a35c1ff-7f8d-4b9a-b6f8-ade49a1b32b9.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(10,10,10,1) 100%
  );
}

.hero-gradient-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,194,199,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-headline .teal { color: var(--teal); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* === SECTION LABELS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--teal);
}

/* === PAGE WRAPPER === */
.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === FEATURES === */
.features {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.features-sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--teal-dim);
  border: 1px solid rgba(0,194,199,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* === STATS STRIP === */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0 3rem;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* === LOGO STRIP === */
.logo-strip {
  padding: 4rem 0;
  background: var(--bg-2);
}

.logo-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.logo-strip-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0.55;
  transition: opacity 0.3s;
  cursor: default;
}

.logo-item:hover { opacity: 1; }

.logo-name {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-city {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  letter-spacing: -0.03em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(0, 242, 234, 0.4);
  transform: translateY(-3px);
}

.testimonial-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--teal);
  font-weight: 900;
  margin-bottom: -0.5rem;
  margin-left: -0.25rem;
  user-select: none;
  display: block;
  height: 52px;
  overflow: visible;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-quote-mark { font-size: 56px; }
}

/* === FEED PREVIEW === */
.feed-preview {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.feed-preview-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.feed-preview-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-brand-name {
  font-family: var(--ff-head);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.sidebar-brand-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sidebar-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.sidebar-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.5;
}

.sidebar-info-item svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal);
}

.sidebar-section-title {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sidebar-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.sidebar-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text);
  transition: color 0.2s;
}

.sidebar-social-link:hover { color: var(--teal); }

.sidebar-rights {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.5;
}

.sidebar-rights svg { color: var(--teal); flex-shrink: 0; margin-top: 1px; }

.feed-preview-main { }

.feed-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.feed-preview-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.see-more-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}

.see-more-link:hover { gap: 0.6rem; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.feed-card:hover { border-color: var(--border-2); transform: translateY(-2px); }

.feed-card-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--bg-2);
}

.feed-card-thumb video,
.feed-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.feed-card-perm-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px; height: 28px;
  background: rgba(10,10,10,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-card-body {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.feed-card-creator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feed-card-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}

.feed-card-avatar img { width: 100%; height: 100%; object-fit: cover; }

.feed-card-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-card-caption {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-card-engagement {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feed-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal); }

.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--teal); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-teal { color: var(--teal); }

/* === LAUNCH ANNOUNCEMENT === */
.launch-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.launch-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,194,199,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.launch-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.launch-label {
  margin-bottom: 1.25rem;
}

.launch-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.launch-teal {
  color: var(--teal);
}

.launch-sub {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.launch-props {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.launch-prop {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.launch-prop svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.launch-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  box-shadow: 0 0 30px rgba(255, 77, 109, 0.35);
}

.launch-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.launch-social a {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.launch-social a:hover {
  color: var(--teal);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .launch-section { padding: 4rem 0; }
  .launch-ctas { flex-direction: column; }
  .launch-ctas .btn { width: 100%; justify-content: center; }
  .launch-props { text-align: left; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-preview-inner { grid-template-columns: 1fr; }
  .feed-preview-sidebar { position: static; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-right { align-items: flex-start; }
  .stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-card { padding: 1.5rem 1.25rem; }
  .stat-divider { display: none; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .logo-row { gap: 2rem; }
}

@media (max-width: 480px) {
  .stat-card { padding: 1rem; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 600px) {
  .site-header nav { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-links { gap: 1.25rem; }
}