/* ===========================
   VELA — CREATOR AI AGENT
   Brand: Maritime night meets studio warmth
   Palette: Navy #0B1D2E | Coral #FF6B4A | Cream #F5EFE6
   Fonts: Sora (headings) + DM Sans (body)
   =========================== */

:root {
  --navy:    #0B1D2E;
  --navy-mid: #122337;
  --coral:   #FF6B4A;
  --coral-light: #FFB4A2;
  --cream:   #F5EFE6;
  --cream-mid: #EDE5D8;
  --white:   #FDFCFB;
  --text:    #E8E2DA;
  --text-dim: rgba(232, 226, 218, 0.55);
  --blue-accent: #4A90D9;
  --yellow-accent: #F5C842;
}

/* === RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11, 29, 46, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 74, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.nav-tag {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255, 107, 74, 0.25);
  border-radius: 20px;
}

/* === SECTION SHARED === */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-headline em {
  font-style: normal;
  color: var(--coral);
}

.section-headline.left { text-align: left; }

.section-body {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 540px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
}

/* Sail illustration */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sail-wrapper {
  width: 100%;
  max-width: 420px;
}

.sail-svg {
  width: 100%;
  height: auto;
  animation: sailFloat 6s ease-in-out infinite;
}

@keyframes sailFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* === WHAT IT DOES === */
.what-it-does {
  padding: 120px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,107,74,0.08);
  border-bottom: 1px solid rgba(255,107,74,0.08);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.workflow-item {
  padding: 32px 28px;
  border: 1px solid rgba(255,107,74,0.12);
  border-radius: 16px;
  background: rgba(255,107,74,0.03);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.workflow-item:hover {
  border-color: rgba(255,107,74,0.35);
  background: rgba(255,107,74,0.07);
}

.workflow-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.workflow-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.workflow-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* === DAILY REPORT === */
.daily-report {
  padding: 120px 0;
  background: var(--navy);
}

.report-card {
  margin-top: 48px;
  border: 1px solid rgba(255,107,74,0.15);
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-mid);
  max-width: 720px;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,107,74,0.1);
}

.report-from {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--cream);
  font-size: 14px;
}

.report-date {
  font-size: 12px;
  color: var(--text-dim);
}

.report-subject {
  padding: 20px 28px 0;
  font-size: 15px;
  color: var(--text-dim);
  font-style: italic;
}

.report-body {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-section {}

.report-section p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 4px;
}

.report-section strong {
  color: var(--cream);
}

.report-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.report-status.green { background: rgba(72,199,116,0.15); color: #48C774; }
.report-status.blue  { background: rgba(74,144,217,0.15); color: #4A90D9; }
.report-status.yellow{ background: rgba(245,200,66,0.12); color: #F5C842; }
.report-status       { background: rgba(255,107,74,0.12); color: var(--coral); }

/* === PHILOSOPHY === */
.philosophy {
  padding: 120px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,107,74,0.08);
  border-bottom: 1px solid rgba(255,107,74,0.08);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-content p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 0;
  background: var(--navy);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(255,107,74,0.1);
  border: 1px solid rgba(255,107,74,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.outcome {
  padding: 48px 40px;
  background: var(--navy-mid);
  text-align: center;
}

.outcome-metric {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.outcome-label {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* === MANIFESTO === */
.manifesto {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(255,107,74,0.08);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.manifesto-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}

.manifesto-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  padding: 64px 0;
  border-top: 1px solid rgba(255,107,74,0.08);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .section-inner, .manifesto-inner, .footer-inner { padding: 0 24px; }
  .hero { padding: 100px 24px 80px; }
}

@media (max-width: 600px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 24px; }
  .nav-tag { display: none; }
}