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

:root {
  --bg: #0C0C0E;
  --surface: #141416;
  --surface2: #1E1E21;
  --text: #F5F0E8;
  --text-muted: #8A8680;
  --accent: #FFB547;
  --accent-dim: rgba(255, 181, 71, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
p { line-height: 1.7; color: var(--text-muted); }
em { font-style: italic; color: var(--text); }

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text);
}

.nav__tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* ─── Sections shared ─────────────────────────────────────────── */
section { padding: 96px 48px; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.05;
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 181, 71, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 600;
}

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

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

.hero__headline {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.accent-line { color: var(--accent); }

.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--surface);
}

/* Hero visual */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.frame-device {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: 260px;
}

.device-screen {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a1e 0%, #0f0f12 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}

.screen-content--after {
  opacity: 1;
}

.play-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(245, 240, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::after {
  content: '';
  width: 0; height: 0;
  border-left: 10px solid rgba(245, 240, 232, 0.3);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.play-icon--after {
  border-color: var(--accent);
}

.play-icon--after::after {
  border-left-color: var(--accent);
}

.views-label {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.device-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-right { color: var(--accent); }

/* ─── Services ─────────────────────────────────────────── */
.services {
  border-bottom: 1px solid var(--border);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.service-card:hover { background: var(--surface); }

.service-card__icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Process ─────────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.process__intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 48px;
  max-width: 360px;
}

.process__steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.step__body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.step__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Pricing ─────────────────────────────────────────── */
.pricing {
  border-bottom: 1px solid var(--border);
}

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

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card--featured {
  background: var(--surface2);
  border-color: var(--accent);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: #0C0C0E;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-card__tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-card__price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* ─── Manifesto ─────────────────────────────────────────── */
.manifesto {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.manifesto__inner { max-width: 680px; }

.manifesto__overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 28px;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.manifesto__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.manifesto__body em { font-style: italic; color: var(--text); }

/* ─── Closing ─────────────────────────────────────────── */
.closing {
  background: var(--surface);
  text-align: center;
}

.closing__inner { max-width: 580px; margin: 0 auto; }

.closing h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.closing p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 6px;
}

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

.footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 72px 24px; }
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
  }
  .hero__visual { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 48px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 40px; }
  .nav { padding: 16px 20px; }
  .nav__tag { display: none; }
}
