@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg-deep: #0a0a1a;
  --bg-section: #0e0e24;
  --bg-card: #14142e;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --text-primary: #e8e4f0;
  --text-secondary: #9b95ab;
  --text-muted: #6b6580;
  --accent-purple: #7b5ea7;
  --accent-indigo: #4a3f8a;
  --gradient-celestial: linear-gradient(135deg, #1a1040 0%, #0a0a1a 40%, #0e1a2e 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c, #e8d5a0);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  background: var(--gradient-celestial);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 94, 167, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin-top: 3rem;
}

/* ---- FRAMEWORK ---- */
.framework {
  padding: 8rem 2rem;
  background: var(--bg-section);
  position: relative;
}

.framework::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-indigo), transparent);
}

.framework-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.framework h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.framework-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid rgba(123, 94, 167, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pillar:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- LAWS ---- */
.laws {
  padding: 8rem 2rem;
  background: var(--bg-deep);
  position: relative;
}

.laws-inner {
  max-width: 900px;
  margin: 0 auto;
}

.laws h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.laws-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.law-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.law-item {
  padding: 2rem;
  border-left: 2px solid var(--accent-indigo);
  transition: border-color 0.3s;
}

.law-item:hover {
  border-color: var(--gold);
}

.law-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.law-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- AUDIENCE ---- */
.audience {
  padding: 8rem 2rem;
  background: var(--bg-section);
  position: relative;
}

.audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-indigo), transparent);
}

.audience-inner {
  max-width: 900px;
  margin: 0 auto;
}

.audience h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.audience-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.audience-list li .marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 10rem 2rem;
  background: var(--gradient-celestial);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: normal;
}

.closing blockquote em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(123, 94, 167, 0.1);
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 90vh;
  }

  .framework,
  .laws,
  .audience {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .pillar {
    padding: 2rem 1.5rem;
  }
}
/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 94, 167, 0.1);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover,
.nav-cta--active {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.25rem;
  background: var(--gradient-gold);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary--center {
  margin-top: 3rem;
}

.btn-ghost-sm {
  display: inline-block;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.btn-ghost-sm:hover {
  color: var(--gold);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 2rem;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ---- HERO ACTIONS ---- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ---- BOOK HERO ---- */
.book-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 2rem 3rem;
  background: var(--gradient-celestial);
  position: relative;
  overflow: hidden;
}

.book-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.book-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.book-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.book-hero h1 em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.book-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
}

/* ---- BOOK FORM SECTION ---- */
.book-form-section {
  background: var(--bg-section);
  padding: 5rem 2rem 7rem;
  position: relative;
}

.book-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-indigo), transparent);
}

.book-form-outer {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

/* ---- ASIDE ---- */
.book-aside {
  position: sticky;
  top: 6rem;
}

.aside-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.aside-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.aside-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.aside-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 94, 167, 0.2), transparent);
  margin: 1.75rem 0;
}

.aside-what h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.aside-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aside-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-purple);
  margin-top: 0.5rem;
}

.aside-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  border: none;
  padding: 0;
}

/* ---- FORM ---- */
.book-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(123, 94, 167, 0.15);
  border-radius: 16px;
  padding: 3rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(123, 94, 167, 0.2);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.03);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gradient-gold);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.form-error {
  padding: 0.875rem 1rem;
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.25);
  border-radius: 6px;
  color: #e09090;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- SUCCESS STATE ---- */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  font-size: 2.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: block;
}

.form-success h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* ---- BOOK PAGE RESPONSIVE ---- */
@media (max-width: 768px) {
  .book-form-outer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book-aside {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .book-form-wrap {
    padding: 2rem 1.5rem;
  }

  .site-nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding-top: 7rem;
  }
}
