/* CAREER WEAVERZ Design System: Executive Presence Palette */
:root {
  --primary: #0f2027;
  --primary-hover: #081217;
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-glow: rgba(217, 119, 6, 0.25);
  --bg-color: #f8fafc;
  --surface-white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.94);
  --card-border: rgba(15, 32, 39, 0.08);
  --text-main: #0f172a;
  --text-muted: #475569;
  --radius-card: 16px;
  --radius-button: 8px;
  --shadow-elevated: 0 20px 40px rgba(15, 32, 39, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-floating: 0 30px 60px rgba(15, 32, 39, 0.12), 0 4px 12px rgba(15, 32, 39, 0.04);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, rgba(15, 32, 39, 0.04) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.main-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px 24px;
}

/* Header Section */
.hero-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 52px auto;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.pill-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto;
}

/* 2-Column Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.mockup-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, #0f2027 0%, #203a43 100%);
  border-radius: 12px;
  padding: 32px 28px;
  color: #ffffff;
  box-shadow: 0 25px 50px rgba(15, 32, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.35);
  position: relative;
  overflow: hidden;
}

.mockup-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.mockup-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 12px;
}

.mockup-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 10px;
}

.mockup-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 20px;
}

.mockup-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  color: #e2e8f0;
}

.mockup-meta strong {
  color: #fbbf24;
}

/* Contrast Bullets */
.contrast-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contrast-card {
  background: var(--surface-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-elevated);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
}

.contrast-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-floating);
}

.contrast-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c0392b;
  margin-bottom: 10px;
}

.contrast-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contrast-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #334155;
}

.contrast-shift {
  margin-top: 6px;
  padding: 10px 14px;
  background: rgba(217, 119, 6, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

/* Right Column */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.optin-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-floating);
  position: relative;
}

.optin-header {
  text-align: center;
  margin-bottom: 24px;
}

.optin-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.optin-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-main);
  background: var(--surface-white);
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-button);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
  transition: transform 0.2s var(--ease-spring), background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
}

.btn-submit:active {
  transform: translateY(0);
}

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

.guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Coach Card */
.coach-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--surface-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-elevated);
}

.coach-avatar-wrapper {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #0f2027;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
}

.coach-info h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 2px;
}

.coach-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.coach-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Compliance Footer */
.compliance-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-disclaimers {
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
  max-width: 850px;
  margin: 0 auto;
}

.footer-disclaimers p {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .right-column {
    order: -1;
  }
}
