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

:root {
  --bg: #0a0c10;
  --surface: #111318;
  --surface-2: #181b22;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.06);
  --text: #f0ede8;
  --text-muted: #8a8d94;
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Epilogue', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 60%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 2px;
  width: fit-content;
  background: var(--accent-glow);
}

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

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-accent {
  color: var(--accent);
  position: relative;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 32px;
}

/* ===== WEBSITE MOCKUP ===== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 80px 40px;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.website-mockup {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.08),
    0 32px 64px rgba(0,0,0,0.6),
    0 0 80px rgba(245,158,11,0.04);
}

.mockup-browser-bar {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-url {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.mockup-content {
  padding: 20px;
}

.mockup-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.1em;
}

.mockup-links {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.mockup-hero-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.mockup-hero-text { display: flex; flex-direction: column; gap: 8px; }

.mockup-h1 {
  height: 20px;
  background: var(--text);
  border-radius: 3px;
  width: 100%;
}

.mockup-h1.short { width: 70%; }

.mockup-btn {
  height: 24px;
  width: 80px;
  background: var(--accent);
  border-radius: 3px;
  margin-top: 4px;
}

.mockup-hero-img {
  height: 80px;
  background: var(--surface-2);
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mockup-hero-img::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 50%;
}

.mockup-services-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.mockup-card {
  height: 50px;
  background: var(--surface-2);
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 80px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 0 20px;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 56px;
}

.service-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s ease;
}

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

.service-card--website::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.service-card--flyer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, transparent);
}

.service-card--google::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #34d399, transparent);
}

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

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== VERTICALS ===== */
.verticals {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.verticals-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.verticals-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 520px;
}

.verticals-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vertical-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

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

/* ===== PRICING ===== */
.pricing {
  background: var(--surface);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: rgba(245, 158, 11, 0.3);
  background: var(--surface-2);
}

.pricing-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0c10;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 4px 4px;
}

.pricing-tier-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pricing-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  align-self: stretch;
}

.pricing-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.pricing-card--featured .pricing-cta {
  background: var(--amber);
}

.pricing-ideal {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.5;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 80px;
}

.philosophy-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.philosophy-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.philosophy-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 120px 0;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 80px;
}

.closing-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-body:last-of-type { margin-bottom: 48px; }

.closing-cta-block {
  display: inline-block;
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 24px 32px;
  background: var(--accent-glow);
  border-radius: 4px;
}

.closing-cta-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.closing-cta-detail {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-location {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-year {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner {
    padding: 100px 32px 48px;
  }

  .hero-visual {
    padding: 0 32px 64px;
  }

  .website-mockup {
    max-width: 100%;
  }

  .hero-visual::before { display: none; }

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

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

  .verticals-list {
    grid-template-columns: 1fr;
  }

  .manifesto-inner,
  .services-inner,
  .verticals-inner,
  .pricing-inner,
  .philosophy-inner,
  .closing-inner,
  .footer-inner {
    padding: 0 32px;
  }

  .manifesto-inner { padding-top: 64px; padding-bottom: 64px; }
  .services-inner { padding-top: 64px; padding-bottom: 64px; }
  .verticals-inner { padding-top: 64px; padding-bottom: 64px; }
  .pricing-inner { padding-top: 64px; padding-bottom: 64px; }
  .philosophy-inner { padding-top: 64px; padding-bottom: 64px; }
  .closing-inner { padding-top: 80px; padding-bottom: 80px; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider { display: none; }

  .nav { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 44px; }
  .pricing-price { font-size: 44px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
}