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

:root {
  --bg: #08080F;
  --bg2: #0E0E1A;
  --surface: #13131F;
  --surface2: #1A1A2E;
  --violet: #7C3AED;
  --violet-dim: rgba(124, 58, 237, 0.12);
  --violet-glow: rgba(124, 58, 237, 0.25);
  --white: #FFFFFF;
  --off-white: #E2E2EF;
  --dim: #7A7A9A;
  --border: rgba(255,255,255,0.07);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;
}

html { scroll-behavior: smooth; }

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

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

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--dim);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

.hero-right {
  position: relative;
}

.hero-device {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.device-label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  background: rgba(8,8,15,0.7);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  z-index: 1;
  animation: bob 2.5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ===== SECTION UTILITIES ===== */
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

/* ===== PLATFORM ===== */
.platforms {
  padding: var(--space-2xl) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.platforms-header {
  margin-bottom: var(--space-xl);
}

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

.platform-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.platform-card:hover {
  background: var(--surface2);
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--violet-dim);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.6;
}

.platform-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.platform-desc {
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.platform-stat {
  font-size: 0.7rem;
  color: var(--violet);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== EDITING ===== */
.editing {
  background: var(--bg2);
  padding: var(--space-2xl) 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.editing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.editing-body {
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.editing-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.editing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--off-white);
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--violet-dim);
  border: 1px solid rgba(124,58,237,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.check-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.editing-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.editing-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.editing-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  background: rgba(8,8,15,0.7);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: var(--space-2xl) 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.manifesto-label { }

.manifesto-quote {
  border-left: 3px solid var(--violet);
  padding-left: var(--space-lg);
}

.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 64ch;
}

.manifesto-body p {
  color: var(--dim);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

.manifesto-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.manifesto-outro p {
  color: var(--off-white);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 60ch;
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-2xl) 2rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.closing-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.closing-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}

.closing-accent { color: var(--violet); }

.closing-body {
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.closing-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--violet);
  background: var(--violet-dim);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--dim);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 36ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.footer-col-head {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li {
  font-size: 0.85rem;
  color: var(--off-white);
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

.footer-copy, .footer-note {
  font-size: 0.75rem;
  color: var(--dim);
}

/* ===== INTAKE / PRICING ===== */
.intake {
  padding: var(--space-2xl) 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.intake-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.intake-header,
.intake-form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.intake-subhead {
  color: var(--dim);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  font-weight: 300;
}

/* ---- Pricing Grid ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--space-2xl);
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}

.pricing-card--featured {
  border-color: rgba(124, 58, 237, 0.45);
  background: var(--surface2);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.15);
}

.tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.tier-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.75rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.tier-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.tier-period {
  font-size: 1rem;
  color: var(--dim);
  font-weight: 400;
}

.tier-tagline {
  font-size: 0.8rem;
  color: var(--violet);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.tier-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex: 1;
}

.tier-deliverables li {
  font-size: 0.85rem;
  color: var(--off-white);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.tier-deliverables li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--violet-dim);
  border: 1px solid rgba(124, 58, 237, 0.25);
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-image: radial-gradient(circle at 40% 40%, var(--violet) 3px, transparent 3px);
  background-repeat: no-repeat;
}

.tier-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--off-white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.tier-cta:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.5);
  color: var(--white);
}

.tier-cta--primary {
  background: var(--violet);
  border-color: var(--violet);
  color: white;
}

.tier-cta--primary:hover {
  background: #6d28d9;
  border-color: #6d28d9;
}

/* ---- Intake Form ---- */
.intake-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 3rem;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.02em;
}

.field-hint {
  font-weight: 400;
  color: var(--dim);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field select option {
  background: var(--bg2);
  color: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--dim);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

/* Platform checkboxes */
.platform-checkboxes {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.platform-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.6rem 1.1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.platform-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--violet);
  cursor: pointer;
}

.platform-checkbox:has(input:checked) {
  border-color: rgba(124, 58, 237, 0.5);
  background: var(--violet-dim);
  color: var(--white);
}

.platform-checkbox:hover {
  border-color: rgba(124, 58, 237, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.form-submit-btn {
  background: var(--violet);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.form-submit-btn:hover:not(:disabled) {
  background: #6d28d9;
  transform: translateY(-1px);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-feedback {
  font-size: 0.82rem;
  line-height: 1.4;
  min-height: 1.4em;
}

.form-feedback--success { color: #34d399; }
.form-feedback--error   { color: #f87171; }
.form-feedback--info    { color: var(--dim); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner,
  .editing-inner,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .hero-right { order: -1; }

  .hero-headline { font-size: 2.2rem; }

  .hero-img { height: 240px; }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero { padding-top: 7rem; }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }

  .manifesto-quote { padding-left: 1rem; }

  .manifesto-quote p { font-size: 1.3rem; }

  .editing-img { height: 260px; }
}
