:root {
  --gold: #d4af37;
  --gold-soft: #ead887;
  --ink: #090909;
  --ink-2: #121212;
  --paper: #f5f2ea;
  --paper-2: #ece7dc;
  --text: #191919;
  --muted: #716b61;
  --line: rgba(212, 175, 55, 0.34);
  --white: #fff;
  --green: #2f8f66;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

img { max-width: 100%; }

.app-shell {
  min-height: 100vh;
  overflow: hidden;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 0 5vw;
  color: #f5f5f5;
  background: rgba(9, 9, 9, 0.97);
  border-bottom: 1px solid var(--line);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.app-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #080808;
  background: var(--gold);
  font-size: 13px;
}

.app-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
}

.app-nav a {
  color: #d8d8d8;
  text-decoration: none;
}

.app-nav a:hover,
.app-nav a[aria-current="page"] { color: var(--gold-soft); }

.app-hero {
  position: relative;
  color: #f6f4ed;
  background:
    radial-gradient(circle at 85% 18%, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(125deg, #060606 0%, #111 68%, #19150b 100%);
  border-bottom: 1px solid var(--line);
}

.app-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 64px;
  width: min(1280px, 90vw);
  min-height: 610px;
  margin: 0 auto;
  padding: 82px 0;
}

.app-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.app-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #d4d1c9;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.55;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.app-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.app-button-primary {
  color: #080808;
  background: var(--gold);
}

.app-button-secondary {
  color: #f5f5f5;
  background: transparent;
}

.app-button:hover { transform: translateY(-1px); }

.app-status {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #bdb9af;
  font-size: 13px;
}

.app-status span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.app-preview {
  position: relative;
  min-height: 410px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.app-preview::before {
  display: block;
  height: 34px;
  margin: -14px -14px 14px;
  background: linear-gradient(90deg, var(--gold) 0 26%, #2a2926 26% 100%);
  content: "";
}

.app-preview iframe {
  width: 100%;
  height: 370px;
  background: #fff;
  border: 0;
  pointer-events: none;
}

.app-preview-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 7px 11px;
  color: #111;
  background: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-section {
  width: min(1280px, 90vw);
  margin: 0 auto;
  padding: 88px 0;
}

.app-section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.app-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.app-section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #d8d0c0;
  border: 1px solid #d8d0c0;
}

.app-card {
  min-height: 230px;
  padding: 30px;
  background: #f9f7f1;
}

.app-card-number {
  color: #a47f10;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.app-card h3 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.app-card p {
  margin: 0;
  color: var(--muted);
}

.app-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1px;
  color: #f5f3ed;
  background: var(--line);
  border: 1px solid var(--line);
}

.app-featured-main,
.app-featured-side {
  padding: clamp(30px, 5vw, 62px);
  background: #101010;
}

.app-featured h2 { color: #fff; }

.app-featured p { color: #c8c4ba; }

.app-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
}

.app-chip {
  padding: 7px 11px;
  color: #d8d2c2;
  border: 1px solid #3b372b;
  font-size: 12px;
}

.app-package-list,
.app-step-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.app-package-list li,
.app-step-list li {
  position: relative;
  margin: 0;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid #302e28;
}

.app-package-list li::before,
.app-step-list li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

.app-note {
  margin-top: 22px;
  padding: 18px 20px;
  color: #6e6242;
  background: #fff7dd;
  border-left: 4px solid var(--gold);
  font-size: 14px;
}

.app-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.app-tool-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 28px;
  min-height: 280px;
  padding: 34px;
  color: #f4f2ec;
  background: #111;
  border: 1px solid var(--line);
  text-decoration: none;
}

.app-tool-card h3 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.app-tool-card p { color: #bdb8ac; }

.app-tool-visual {
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 22px;
  background: linear-gradient(150deg, #211d12, #090909);
  border: 1px solid #4a3c16;
}

.app-tool-visual span {
  display: block;
  height: 12px;
  background: linear-gradient(90deg, var(--gold), #357f75);
}

.app-tool-visual span:nth-child(2) { width: 78%; }
.app-tool-visual span:nth-child(3) { width: 56%; }
.app-tool-visual span:nth-child(4) { width: 88%; }

.app-coming {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 40px;
  text-align: center;
  background: #eee9de;
  border: 1px dashed #bcb29d;
}

.app-coming strong { font-size: 22px; }

.app-footer {
  padding: 48px 5vw;
  color: #aaa59a;
  background: #090909;
  border-top: 1px solid var(--line);
}

.app-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.app-footer a { color: #d4c48c; }

@media (max-width: 980px) {
  .app-header { position: relative; align-items: flex-start; padding-top: 16px; padding-bottom: 16px; }
  .app-nav { flex-wrap: wrap; gap: 12px 18px; }
  .app-hero-inner,
  .app-section-header,
  .app-featured { grid-template-columns: 1fr; }
  .app-hero-inner { gap: 42px; }
  .app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .app-catalog { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  .app-header { display: block; }
  .app-nav { justify-content: flex-start; margin-top: 14px; font-size: 13px; }
  .app-hero-inner { grid-template-columns: 1fr; width: min(100% - 34px, 1280px); min-height: auto; padding: 62px 0; }
  .app-hero h1 { font-size: clamp(45px, 16vw, 68px); }
  .app-preview { min-height: 330px; }
  .app-preview iframe { height: 290px; }
  .app-section { width: min(100% - 34px, 1280px); padding: 62px 0; }
  .app-section-header { gap: 22px; }
  .app-grid { grid-template-columns: 1fr; }
  .app-tool-card { grid-template-columns: 1fr; }
  .app-footer-inner { display: block; }
}

