:root {
  --bg: #f7f3fb;
  --surface: #ffffff;
  --surface-soft: #fbf7ff;
  --text: #231427;
  --muted: #6e5f78;
  --line: rgba(87, 47, 115, 0.12);
  --primary: #5e1988;
  --primary-strong: #3f0b63;
  --secondary: #d31df0;
  --secondary-soft: rgba(211, 29, 240, 0.12);
  --success: #e6f8ef;
  --success-text: #145a34;
  --error: #fdeaea;
  --error-text: #822727;
  --shadow-xl: 0 32px 80px rgba(54, 22, 73, 0.14);
  --shadow-md: 0 20px 40px rgba(38, 14, 52, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(211, 29, 240, 0.14), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(94, 25, 136, 0.12), transparent 28%),
    linear-gradient(180deg, #f9f4fd 0%, #f5effa 100%);
  color: var(--text);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 244, 253, 0.8);
  border-bottom: 1px solid rgba(87, 47, 115, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand-mark {
  width: min(250px, 52vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-admin {
  padding: 12px 16px;
  border: 1px solid rgba(94, 25, 136, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.hero-section,
.investor-section {
  padding: 92px 0;
}

.hero-grid,
.investor-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.hero-copy,
.investor-copy {
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

h1, h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #250f2e;
}

h1 { font-size: clamp(3.3rem, 7vw, 6.2rem); max-width: 9ch; }
h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); max-width: 11ch; }

.lead,
.investor-copy p,
.panel-header p,
.cookie-banner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.hero-highlights div,
.quote-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.hero-highlights span {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.hero-highlights p,
.quote-card p {
  margin: 0;
  color: #44314f;
  line-height: 1.7;
}

.form-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(251,247,255,0.96) 100%);
  border: 1px solid rgba(94, 25, 136, 0.1);
  box-shadow: var(--shadow-xl);
  padding: 34px;
}

.form-panel::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-strong), var(--secondary));
}

.form-panel-secondary {
  margin-top: 54px;
}

.panel-header h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  max-width: 11ch;
  margin-bottom: 14px;
}

.panel-header p {
  margin-top: 0;
}

.site-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

label {
  display: grid;
  gap: 10px;
}

label span {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  color: #5d4370;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(94, 25, 136, 0.14);
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(94, 25, 136, 0.45);
  box-shadow: 0 0 0 5px rgba(211, 29, 240, 0.10);
  transform: translateY(-1px);
}

textarea { min-height: 146px; resize: vertical; }
small { color: #9c2f57; font-size: 13px; }

button,
.primary-btn,
.ghost-btn {
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

button[type='submit'],
.primary-btn {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 18px 34px rgba(94, 25, 136, 0.22);
}

button:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  color: var(--primary);
  background: rgba(94, 25, 136, 0.08);
}

.alert {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.alert.success {
  background: var(--success);
  color: var(--success-text);
}

.alert.error {
  background: var(--error);
  color: var(--error-text);
}

.quote-card {
  margin-top: 26px;
  max-width: 520px;
}

.site-footer {
  padding: 24px 0 34px;
}

.footer-inner {
  border-top: 1px solid rgba(87, 47, 115, 0.08);
  padding-top: 20px;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
  color: #7f708a;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  max-width: 460px;
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(20, 10, 26, 0.94);
  color: #f3eaf9;
  box-shadow: 0 26px 60px rgba(14, 6, 18, 0.38);
  backdrop-filter: blur(16px);
}

.cookie-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f2b6ff;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 980px) {
  .hero-grid,
  .investor-grid,
  .hero-highlights,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .form-panel-secondary {
    margin-top: 0;
  }

  .site-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  h1,
  h2,
  .panel-header h2 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .hero-section,
  .investor-section {
    padding: 70px 0;
  }

  .form-panel {
    padding: 24px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
