
:root {
  --bg-main: #050811;
  --bg-card: #0c111c;
  --accent: #ff9f3b;
  --accent-soft: #ffb86b;
  --text-main: #f5f5f5;
  --text-muted: #a3a8b8;
  --border-subtle: rgba(255,255,255,0.08);
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #121827 0, #050811 55%);
  color: var(--text-main);
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0.75rem;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
nav a:hover {
  color: var(--accent-soft);
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
  padding: 1.5rem 0 2.5rem;
}

.hero-copy-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-primary,
.button-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
             background-color 0.12s ease, border-color 0.12s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff7b22);
  color: #120b05;
  box-shadow: var(--shadow-soft);
}
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.button-ghost {
  background: rgba(8,13,24,0.8);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
.button-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(18,25,40,0.95);
}

.hero-cover-frame {
  border-radius: var(--radius-xl);
  padding: 0.9rem;
  background: radial-gradient(circle at top left, #202b3b 0, #050811 55%);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.hero-cover-frame img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
}

.hero-tagline {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* SECTIONS */

.section {
  margin-top: 2.5rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.section-title {
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  background: linear-gradient(145deg, rgba(15,21,35,0.96), rgba(8,11,22,0.98));
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0.45rem 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.card-list {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.card-list li {
  margin: 0.2rem 0;
}

.meta-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.meta-pill {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Newsletter */

.newsletter {
  margin-top: 2.5rem;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.4rem;
  background: radial-gradient(circle at top left, #222a3a 0, #050811 55%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-soft);
}

.newsletter h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.newsletter p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(5,8,17,0.9);
  color: var(--text-main);
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: #6a7184;
}

.newsletter-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Rights layout */

.rights-layout {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.rights-block h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.rights-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0.45rem 0;
}

/* Footer */

.footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.25rem 1.75rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-cover-frame {
    order: -1;
    max-width: 320px;
    margin: 0 auto 1rem;
  }
  nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .grid-2,
  .rights-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .newsletter {
    padding: 1.3rem 1.1rem;
  }
}
