:root {
  --forest: #0e2b1d;
  --forest-mid: #1a3d28;
  --amber: #c9a84c;
  --amber-light: #e8c870;
  --parchment: #f6f4f0;
  --parchment-dark: #eee9df;
  --ink: #1a1a1a;
  --ink-light: #555;
  --rule: #ddd8ce;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */
.hero-inner,
.manifesto-inner,
.features-inner,
.how-inner,
.closing-inner,
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--parchment);
  border-bottom: 1px solid var(--rule);
}

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

.nav-action-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-action-link:hover { color: var(--forest); }

.nav-action-link--primary {
  background: var(--forest);
  color: var(--amber-light);
  padding: 8px 18px;
  border-radius: 4px;
}

.nav-action-link--primary:hover {
  background: var(--forest-mid);
  color: var(--amber-light);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brandmark {
  width: 32px;
  height: 32px;
  background: var(--forest);
  color: var(--amber);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.brandname {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.3px;
}

/* --- Hero --- */
.hero {
  padding: 100px 0 80px;
  background: var(--parchment);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -1px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.hero-sub {
  margin-top: 28px;
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 400px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-demo-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--forest);
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}

.hero-demo-link:hover {
  background: var(--forest-mid);
}

/* --- Asset Grid Visual --- */
.asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.asset-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 20px;
}

.asset-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 14px;
}

/* Logo stack */
.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logo-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-letter {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--forest);
}

.logo-name {
  font-size: 12px;
  color: var(--ink-light);
}

/* Color chips */
.color-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.color-chip {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.color-hex {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
}

/* Type samples */
.type-samples {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.type-sample {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.type-face {
  font-size: 16px;
  font-weight: 500;
}

.type-sample--display .type-face {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
}

.type-sample--body .type-face {
  font-family: 'DM Sans', sans-serif;
}

.type-role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-light);
}

/* File list */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-ext {
  font-size: 10px;
  font-weight: 600;
  color: var(--amber);
  background: rgba(201, 168, 76, 0.12);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'DM Mono', monospace;
}

.file-name {
  font-size: 13px;
  color: var(--ink);
}

/* --- Manifesto --- */
.manifesto {
  padding: 80px 0;
  background: var(--forest);
  color: var(--parchment);
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: rgba(201, 168, 76, 0.4);
  margin: 0 auto 40px;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--parchment);
}

.manifesto-body {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(246, 244, 240, 0.7);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-body--accent {
  margin-top: 16px;
  color: var(--amber);
  font-weight: 500;
  font-size: 17px;
}

/* --- Features --- */
.features {
  padding: 100px 0;
  background: var(--parchment);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.feature-card {
  background: var(--parchment);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #fff;
}

.feature-icon {
  color: var(--forest);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* --- How --- */
.how {
  padding: 100px 0;
  background: var(--parchment-dark);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}

.step {
  flex: 1;
}

.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--forest);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
}

.step-connector {
  flex: 0 0 60px;
  height: 1px;
  align-self: center;
  background: var(--rule);
  margin: 0 24px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  top: calc(50% - 4px);
}

/* --- Closing --- */
.closing {
  padding: 100px 0;
  background: var(--forest);
}

.closing-statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.closing-body {
  font-size: 16px;
  color: rgba(246, 244, 240, 0.65);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid rgba(246, 244, 240, 0.2);
  background: rgba(246, 244, 240, 0.08);
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  width: 240px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(246, 244, 240, 0.4);
}

.signup-form input[type="email"]:focus {
  border-color: var(--amber);
  background: rgba(246, 244, 240, 0.12);
}

.signup-form button {
  padding: 14px 28px;
  background: var(--amber);
  color: var(--forest);
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.signup-form button:hover {
  background: var(--amber-light);
}

/* --- Footer --- */
.footer {
  padding: 60px 0 80px;
  background: var(--parchment);
  border-top: 1px solid var(--rule);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 32px;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--rule);
  margin: 0 auto 24px;
}

.footer-fine {
  font-size: 12px;
  color: var(--ink-light);
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .hero-inner,
  .manifesto-inner,
  .features-inner,
  .how-inner,
  .closing-inner,
  .footer-inner {
    padding: 0 24px;
  }

  .nav {
    padding: 20px 24px;
  }

  .manifesto, .features, .how, .closing {
    padding: 64px 0;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-light); }
