@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --brand: #f97316;
  --brand-dark: #ea580c;
  --surface-950: #0a0a0a;
  --surface-900: #171717;
  --surface-800: #262626;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-950);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 0.98; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; color: var(--muted); }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 120px 0; }
.section-dark { background: var(--surface-900); }
.text-brand { color: var(--brand); }
.text-gradient { color: transparent; background: linear-gradient(90deg, #fff, rgba(255,255,255,.78), rgba(255,255,255,.48)); -webkit-background-clip: text; background-clip: text; }
.muted { color: var(--muted); }

.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  background: rgba(10,10,10,.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font: 700 26px "Playfair Display", serif; letter-spacing: -0.04em; }
.logo-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--brand); color: white; font-family: "Inter"; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; color: rgba(255,255,255,.7); font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); color: white; padding: 10px 12px; border-radius: 8px; }

.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: rgba(255,255,255,.05); border: 1px solid var(--line); color: white; }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 140px 0 90px; position: relative; overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 999px; filter: blur(120px); pointer-events: none; }
.hero::before { background: rgba(249,115,22,.22); left: -110px; top: 22%; }
.hero::after { background: rgba(59,130,246,.12); right: -120px; bottom: 20%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line); background: rgba(255,255,255,.05); color: var(--brand); border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { font-size: clamp(52px, 8vw, 104px); max-width: 900px; }
.hero-copy { margin: 28px 0 42px; font-size: clamp(18px, 2vw, 24px); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.dashboard-card { border: 1px solid var(--line); background: #151515; border-radius: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.35); overflow: hidden; }
.dashboard-top { height: 62px; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; color: rgba(255,255,255,.34); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.window-dots { display: flex; gap: 8px; }
.window-dots span { width: 11px; height: 11px; border-radius: 99px; background: rgba(255,255,255,.16); }
.dashboard-body { padding: 30px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.metric { min-height: 112px; border: 1px solid var(--line); background: rgba(255,255,255,.05); border-radius: 20px; padding: 18px; }
.metric strong { display: block; color: white; font: 700 26px "Playfair Display"; margin-top: 8px; }
.metric span { color: var(--brand); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.trust-panel { padding: 46px; }
.trust-panel h3 { font-size: 38px; margin-bottom: 18px; }
.compact-list { margin-top: 26px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.card, .glass { background: rgba(255,255,255,.05); border: 1px solid var(--line); backdrop-filter: blur(14px); border-radius: 28px; }
.card { padding: 34px; transition: transform .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.45); }
.card h3 { font-size: 28px; margin-bottom: 14px; }
.card p { margin-bottom: 22px; }
.section-heading { max-width: 760px; margin-bottom: 64px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h1, .section-heading h2 { font-size: clamp(42px, 6vw, 76px); margin-bottom: 22px; }

.list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.78); }
.list li::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 99px; background: var(--brand); margin-right: 10px; }
.dashboard-body .list span::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 99px; background: var(--brand); margin-right: 10px; }
.feature-image { border-radius: 40px; overflow: hidden; border: 1px solid var(--line); background: var(--surface-900); aspect-ratio: 16/10; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .3s ease, transform .6s ease; }
.feature-image:hover img { filter: grayscale(0); transform: scale(1.04); }
.placeholder-image { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(255,255,255,.35); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { color: rgba(255,255,255,.45); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; background: rgba(255,255,255,.05); color: white; border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 16px; font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); }
.hp { position: absolute; left: -9999px; }

.page { padding-top: 140px; min-height: 70vh; }
.article { max-width: 860px; margin: 0 auto; }
.article h1 { font-size: clamp(42px, 6vw, 72px); margin-bottom: 24px; }
.article-body { color: rgba(255,255,255,.82); font-size: 19px; }
.article-body p, .article-body ul, .article-body ol, .article-body blockquote { margin: 0 0 22px; }
.article-body h2, .article-body h3 { margin: 42px 0 16px; }
.faq-list { display: grid; gap: 18px; max-width: 920px; margin: 0 auto; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.final-cta { text-align: center; max-width: 900px; }
.final-cta h2 { font-size: clamp(44px, 7vw, 84px); margin-bottom: 24px; }
.final-cta p { font-size: 22px; margin: 0 auto 34px; max-width: 720px; }

.footer { border-top: 1px solid rgba(255,255,255,.06); background: var(--surface-950); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 42px; margin-bottom: 56px; }
.footer h4 { font-size: 20px; margin-bottom: 18px; }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; color: rgba(255,255,255,.52); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.34); font-size: 13px; }

[data-animate] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: #0d0d0d; border-right: 1px solid var(--line); padding: 28px; position: sticky; top: 0; height: 100vh; }
.admin-main { padding: 42px; }
.admin-nav { display: grid; gap: 10px; margin-top: 40px; }
.admin-nav a, .admin-nav button { display: flex; width: 100%; color: rgba(255,255,255,.68); background: none; border: 0; padding: 12px 14px; border-radius: 12px; text-align: left; font: inherit; cursor: pointer; }
.admin-nav a:hover, .admin-nav .active, .admin-nav button:hover { color: white; background: rgba(255,255,255,.06); }
.admin-header { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 32px; }
.table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.table th, .table td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.06); text-align: left; vertical-align: top; }
.table th { color: rgba(255,255,255,.45); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.notice { padding: 14px 18px; border-radius: 16px; margin-bottom: 22px; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25); color: #86efac; }
.notice.error { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.25); color: #fca5a5; }

@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3, .footer-grid, .admin-shell { grid-template-columns: 1fr; }
  .dashboard-card { display: none; }
  .nav-links { display: none; position: absolute; top: 76px; left: 16px; right: 16px; background: var(--surface-900); border: 1px solid var(--line); border-radius: 18px; padding: 18px; flex-direction: column; align-items: flex-start; }
  .nav-links.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .section { padding: 84px 0; }
  .footer-bottom, .admin-header { flex-direction: column; align-items: flex-start; }
  .admin-sidebar { position: static; height: auto; }
  .admin-main { padding: 24px 16px; }
}
