/* =========================================================
   AHAD SAEIDI · LANDING PAGE STYLES
   Built per Visual Design Guide v1.0
   ========================================================= */

/* Brand color tokens */
:root {
  --deep-navy: #0A1A2F;
  --mid-navy: #2A4A6F;
  --soft-blue-grey: #EEF3FA;
  --white: #FFFFFF;
  --teal: #00C4B3;
  --lime: #C5FF3E;
  --soft-white: rgba(255, 255, 255, 0.72);
  --soft-white-strong: rgba(255, 255, 255, 0.85);
  --rule: rgba(255, 255, 255, 0.12);
  --rule-light: rgba(10, 26, 47, 0.1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  background: var(--deep-navy);
  min-height: 100vh;
}

/* Mono tag (used everywhere) */
.mono-tag {
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
}
.mono-tag-center { text-align: center; display: block; margin-bottom: 16px; }

/* Lime highlights — used on key words only (per brand book 1% rule) */
.lime-highlight {
  display: inline-block;
  background: var(--lime);
  color: var(--deep-navy);
  padding: 0 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.lime-highlight-thin {
  border-bottom: 4px solid var(--lime);
  padding-bottom: 1px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  background: var(--deep-navy);
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 196, 179, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(0, 196, 179, 0.08) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(0, 196, 179, 0.05) 31px, rgba(0, 196, 179, 0.05) 32px),
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(0, 196, 179, 0.05) 31px, rgba(0, 196, 179, 0.05) 32px);
  padding: 56px 32px 80px;
  min-height: 100vh;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

/* LEFT: copy + mockup */
.hero-left .mono-tag { margin-bottom: 36px; }

.headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}

.sub-headline {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--soft-white);
  margin-bottom: 40px;
  max-width: 580px;
}

/* Mockup */
.mockup-wrapper { margin-bottom: 40px; }
.mockup-frame { position: relative; }

.mockup-placeholder {
  background: linear-gradient(180deg, #FAFBFC 0%, #EEF3FA 100%);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--rule);
  position: relative;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}
.mockup-placeholder:hover { transform: rotate(0deg); }

.mockup-header {
  border-bottom: 1px solid rgba(10, 26, 47, 0.1);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.mockup-tag {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 6px;
}
.mockup-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}

.mockup-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(10, 26, 47, 0.04);
  border-radius: 4px;
  border-left: 3px solid var(--teal);
}
.mockup-step-highlight {
  background: var(--lime);
  border-left-color: var(--deep-navy);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--mid-navy);
  letter-spacing: 0.06em;
  min-width: 22px;
}
.mockup-step-highlight .step-num { color: var(--deep-navy); }
.step-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-navy);
  letter-spacing: -0.01em;
}

.mockup-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 26, 47, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--mid-navy);
  opacity: 0.7;
}

.mockup-caption {
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-style: italic;
}

/* Author block */
.author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #006e64 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--rule);
}
.author-avatar span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-navy);
  letter-spacing: 0.04em;
}
.author-text { display: flex; flex-direction: column; gap: 2px; }
.author-text strong {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.author-text span {
  font-size: 13px;
  color: var(--soft-white);
  line-height: 1.45;
}

/* =========================================================
   FORM (RIGHT COLUMN)
   ========================================================= */
.hero-right { position: sticky; top: 32px; }

.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 44px 36px;
  position: relative;
}

.lime-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--lime);
  border-radius: 0 0 4px 4px;
}

.mono-tag-lime {
  color: var(--lime);
  margin-bottom: 28px;
  margin-top: 8px;
  text-align: center;
}

.form-heading {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
  margin-bottom: 14px;
}

.form-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--soft-white);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Form fields */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.2s ease;
}
.field input::placeholder { color: rgba(255, 255, 255, 0.35); }
.field input:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(197, 255, 62, 0.15);
}

/* Qualifier */
.qualifier-field { margin-top: 24px; margin-bottom: 28px; }
.qualifier-label {
  font-family: 'JetBrains Mono', monospace !important;
  text-transform: uppercase;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  color: var(--teal) !important;
  margin-bottom: 12px !important;
  line-height: 1.5;
}
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  letter-spacing: -0.005em !important;
  color: var(--soft-white-strong) !important;
  text-transform: none !important;
  line-height: 1.4;
  margin-bottom: 0 !important;
}
.radio-option:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 196, 179, 0.3);
}
.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  margin: 1px 0 0 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.radio-option input[type="radio"]:checked {
  border-color: var(--lime);
}
.radio-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.radio-option:has(input:checked) {
  background: rgba(197, 255, 62, 0.06);
  border-color: rgba(197, 255, 62, 0.4);
}

/* CTA button */
.cta-button {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--lime);
  color: var(--deep-navy);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  text-decoration: none;
  text-align: center;
}
.cta-button:hover:not(:disabled) {
  background: #d6ff5e;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(197, 255, 62, 0.3);
}
.cta-button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.privacy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 18px;
  line-height: 1.4;
}

.form-error {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: #ff9999;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
  text-align: center;
}

/* Success state */
.success-state { text-align: center; padding: 16px 0; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--deep-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700;
  margin: 0 auto 24px;
  animation: pop 0.4s ease-out;
}
@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.success-heading {
  font-family: 'Inter', sans-serif;
  font-size: 30px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.success-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--soft-white);
  margin-bottom: 28px; line-height: 1.5;
}
.cta-button-success { margin-bottom: 16px; }
.success-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* =========================================================
   OUTCOMES SECTION — 3 tiles
   ========================================================= */
.outcomes {
  background: var(--deep-navy);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(0, 196, 179, 0.10) 0%, transparent 60%);
  padding: 96px 32px 80px;
  border-top: 1px solid var(--rule);
}

.outcomes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.outcomes-header {
  text-align: center;
  margin-bottom: 56px;
}

.outcomes-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.outcome-tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.outcome-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 196, 179, 0.3);
}

.outcome-tile-highlight {
  background: rgba(197, 255, 62, 0.04);
  border-color: rgba(197, 255, 62, 0.25);
}
.outcome-tile-highlight:hover {
  border-color: rgba(197, 255, 62, 0.5);
}

.outcome-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 196, 179, 0.08);
  border-radius: 4px;
}
.outcome-tile-highlight .outcome-num {
  color: var(--deep-navy);
  background: var(--lime);
}

.outcome-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}

.outcome-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--soft-white);
}

.outcomes-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--soft-white);
  text-transform: uppercase;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { position: static; }
  .form-card { max-width: 540px; margin: 0 auto; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 20px 56px; }
  .hero-left .mono-tag { margin-bottom: 24px; }
  .form-card { padding: 32px 24px; }
  .form-heading { font-size: 26px; }
  .mockup-placeholder { padding: 24px 20px; }
  .mockup-title { font-size: 18px; }
  .outcomes { padding: 64px 20px 56px; }
  .outcome-tile { padding: 28px 22px; }
  .outcome-title { font-size: 20px; }
}
