:root {
  --bg: #070709;
  --bg2: #101014;
  --card: rgba(24, 22, 28, 0.85);
  --ink: #f6f1e8;
  --mute: #9a94a3;
  --gold: #e8a54b;
  --gold2: #ffd56a;
  --green: #6bcf9a;
  --line: rgba(255,255,255,0.08);
  --radius: 18px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
.noise {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nav, .hero, .section, .foot { position: relative; z-index: 1; }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 1.25rem;
  background: rgba(7,7,9,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink); font-weight: 900;
  letter-spacing: 0.08em;
}
.nav-links { display: flex; flex-wrap: wrap; gap: 0.35rem 0.85rem; align-items: center; }
.nav-links a {
  color: var(--mute); text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 0.45rem 0.65rem; border-radius: 999px;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #1a1005 !important; padding: 0.55rem 1rem !important;
}
.nav-burger {
  display: none; background: transparent; border: 1px solid var(--line);
  color: var(--ink); border-radius: 10px; min-height: 44px; min-width: 44px;
  font-size: 1.2rem; cursor: pointer;
}

.hero {
  max-width: 1100px; margin: 0 auto; padding: 3.5rem 1.25rem 2.5rem;
}
.hero-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,165,75,0.22), transparent 65%);
  top: -80px; right: -40px; filter: blur(10px); pointer-events: none;
}
.pill {
  display: inline-block; margin: 0 0 1rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(232,165,75,0.35);
  color: var(--gold); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  margin: 0; font-size: clamp(2.6rem, 8vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.04em;
}
.hero h1 .line { display: block; animation: fadeUp 0.7s ease both; }
.hero h1 .line:nth-child(2) { animation-delay: 0.08s; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold2), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  max-width: 34rem; color: var(--mute); font-size: 1.15rem;
  margin: 1.1rem 0 1.5rem; animation: fadeUp 0.75s ease 0.1s both;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  animation: fadeUp 0.75s ease 0.15s both;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0.75rem 1.2rem; border-radius: 14px;
  font-weight: 800; text-decoration: none; font-size: 1.02rem;
  border: 2px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #1a1005;
  box-shadow: 0 12px 40px rgba(232,165,75,0.25);
}
.btn-ghost {
  border-color: var(--line); color: var(--ink); background: rgba(255,255,255,0.03);
}
.hook {
  margin-top: 1.5rem; max-width: 36rem;
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  background: rgba(232,165,75,0.08);
  border-radius: 0 12px 12px 0;
  animation: fadeUp 0.8s ease 0.2s both;
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  margin-top: 2rem; max-width: 640px;
}
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem; backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat:hover { border-color: rgba(232,165,75,0.4); transform: translateY(-2px); }
.stat strong { display: block; font-size: 1.35rem; color: var(--gold); }
.stat span { color: var(--mute); font-size: 0.9rem; }

.section { max-width: 1100px; margin: 0 auto; padding: 3rem 1.25rem; }
.section.alt {
  max-width: none; padding-left: 0; padding-right: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent);
}
.section.alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.section-head { margin-bottom: 1.25rem; }
.section-head h2 { margin: 0 0 0.35rem; font-size: clamp(1.6rem, 4vw, 2.1rem); letter-spacing: -0.02em; }
.section-head p { margin: 0; color: var(--mute); max-width: 36rem; }

.price-grid, .portfolio, .posts, .steps {
  display: grid; gap: 0.85rem;
}
.price-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.portfolio, .posts { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.steps { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.price-card, .port-card, .post-card, .step-card, .about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.price-card:hover, .port-card:hover, .post-card:hover, .step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,165,75,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.price-card strong { display: block; font-size: 1.05rem; }
.price-card .amt {
  font-size: 1.55rem; font-weight: 900; color: var(--gold); margin: 0.4rem 0;
}
.price-card p { margin: 0; color: var(--mute); font-size: 0.92rem; }
.step-card .n {
  display: inline-grid; place-items: center;
  width: 2rem; height: 2rem; border-radius: 999px;
  background: rgba(232,165,75,0.15); color: var(--gold); font-weight: 900;
  margin-bottom: 0.5rem;
}
.step-card h3 { margin: 0 0 0.35rem; }
.step-card p { margin: 0; color: var(--mute); font-size: 0.95rem; }
.ship-notes {
  margin-top: 1.25rem; color: var(--mute); white-space: pre-wrap;
  font-size: 0.95rem; max-width: 48rem;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.15rem;
  background: rgba(0,0,0,0.25);
}
.port-card img, .post-card img {
  width: 100%; height: 170px; object-fit: cover; border-radius: 12px;
  margin-bottom: 0.7rem; background: #1a1520;
}
.port-card h3, .post-card h3 { margin: 0 0 0.35rem; font-size: 1.08rem; }
.port-card p, .post-card p { margin: 0; color: var(--mute); font-size: 0.92rem; }

.about-grid {
  display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 1.25rem; align-items: start;
}
.about-card { display: flex; flex-direction: column; gap: 0.75rem; }
.about-logo { width: 100%; height: auto; max-width: 280px; }
.meta { color: var(--mute); }

.foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding: 2rem 1.25rem 3rem; border-top: 1px solid var(--line);
  max-width: 1100px; margin: 0 auto; color: var(--mute);
}
.foot-links { display: flex; gap: 1rem; }
.foot-links a { color: var(--ink); font-weight: 700; text-decoration: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch;
    background: rgba(10,10,12,0.98); padding: 0.75rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
