
:root {
  --bg: #100c0a;
  --panel: rgba(38, 25, 18, 0.82);
  --panel2: rgba(255, 239, 205, 0.08);
  --text: #fff4df;
  --muted: #d9b98e;
  --accent: #f2a84b;
  --accent2: #7dd3c7;
  --line: rgba(255,255,255,0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(242,168,75,.22), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(125,211,199,.12), transparent 28%),
    linear-gradient(180deg, #160f0b 0%, #0d0a08 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 36px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(16,12,10,.72);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .2px; }
.logo {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, #f2a84b, #4b2412);
  display: grid; place-items: center;
  box-shadow: 0 0 24px rgba(242,168,75,.28);
}
.logo span { font-size: 22px; }
.links { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-weight: 650; font-size: 14px; }
.links a:hover { color: var(--text); }
.hero { padding: 84px 0 46px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: center; }
.badge {
  display: inline-flex; gap: 8px; align-items: center;
  border: 1px solid var(--line); color: var(--muted);
  padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.05);
  font-weight: 700; font-size: 14px;
}
h1 { font-size: clamp(42px, 7vw, 76px); line-height: .96; margin: 20px 0 18px; letter-spacing: -2.5px; }
.lead { color: #ead7bd; font-size: clamp(18px, 2.5vw, 22px); line-height: 1.55; max-width: 720px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  border: 1px solid var(--line); border-radius: 14px; padding: 13px 18px;
  font-weight: 800; background: rgba(255,255,255,.06);
}
.btn.primary { background: linear-gradient(135deg, #f2a84b, #d87922); color: #1b1007; border: none; }
.card {
  background: linear-gradient(180deg, var(--panel), rgba(20,13,10,.88));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.app-card {
  min-height: 430px;
  display: flex; flex-direction: column; justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.64)),
    radial-gradient(circle at 50% 20%, rgba(242,168,75,.25), transparent 38%),
    linear-gradient(135deg, #2a170f, #0d0806);
}
.typewriter {
  width: 100%; aspect-ratio: 1.05; border-radius: 24px;
  display: grid; place-items: center; font-size: 96px;
  background:
    radial-gradient(circle, rgba(242,168,75,.26), transparent 44%),
    rgba(255,255,255,.05);
  border: 1px solid var(--line);
}
.section { padding: 44px 0; }
.section h2 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 14px; letter-spacing: -1.4px; }
.section p { color: #ead7bd; line-height: 1.65; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.feature { padding: 22px; border-radius: 22px; background: var(--panel2); border: 1px solid var(--line); }
.feature h3 { margin: 0 0 8px; }
.feature p { margin: 0; color: #d9c4a7; font-size: 15px; }
.page { padding: 54px 0; }
.page .card { max-width: 900px; }
.page h1 { font-size: clamp(36px, 5vw, 58px); }
.footer { border-top: 1px solid var(--line); margin-top: 50px; padding: 28px 0; color: var(--muted); font-size: 14px; }
.footer .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .hero-grid, .grid3 { grid-template-columns: 1fr; }
  .links { gap: 11px; font-size: 13px; }
  .hero { padding-top: 48px; }
}
