:root {
  --bg: #050505;
  --panel: #111111;
  --panel-soft: #171717;
  --text: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.66);
  --muted-soft: rgba(245, 240, 232, 0.45);
  --gold: #d8b75d;
  --gold-soft: rgba(216, 183, 93, 0.14);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(216, 183, 93, 0.5);
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 85% 8%, rgba(58, 78, 42, 0.26), transparent 32%),
    radial-gradient(circle at 18% 0%, rgba(216, 183, 93, 0.08), transparent 22%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 44px 0 34px;
}

.logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.btn-gold {
  background: var(--gold);
  color: #050505;
  border-color: var(--gold);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.header-note {
  max-width: 270px;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  min-height: 620px;
  padding: 54px 0 78px;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(216, 183, 93, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.89;
  letter-spacing: -0.075em;
  max-width: 610px;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 30px 0 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-panel {
  background:
    radial-gradient(circle at top right, rgba(216, 183, 93, 0.13), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.browser {
  background: #030303;
  border-radius: 24px;
  padding: 28px;
  min-height: 340px;
}

.browser-dots {
  display: flex;
  gap: 9px;
  margin-bottom: 24px;
}

.browser-dots span {
  width: 11px;
  height: 11px;
  background: rgba(255,255,255,0.24);
  border-radius: 50%;
}

.browser-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
  border-radius: 17px;
  padding: 24px;
  margin-bottom: 16px;
}

.browser-card span {
  display: block;
  color: var(--muted-soft);
  font-size: 0.88rem;
  margin-bottom: 7px;
}

.browser-card strong {
  font-size: 1.18rem;
}