:root {
  --cream: #FAF7F2;
  --navy: #1B2A4A;
  --amber: #C9620F;
  --amber-light: #F5E8D3;
  --sage: #6B7F5E;
  --slate: #5C6B7A;
  --muted: #A8B0BB;
  --white: #FFFFFF;
  --border: #E2DDD5;
}

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

body {
  background: var(--cream);
  color: var(--navy);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-link:hover { background: var(--amber-light); color: var(--amber); }

/* HERO */
.hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 480px;
  line-height: 1.7;
}

/* WIDGET */
.widget-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(27, 42, 74, 0.08);
}
.widget-label {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 20px;
}
.widget-items { padding: 8px 0; }
.widget-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.widget-item:last-child { border-bottom: none; }
.widget-item.urgent { background: var(--amber-light); }
.item-name { font-weight: 600; color: var(--navy); }
.item-date { color: var(--amber); font-weight: 700; font-size: 13px; }
.widget-footer {
  background: var(--sage);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* SECTION SHARED */
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 48px;
}

/* DEADLINES */
.deadlines {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.deadlines-inner { max-width: 1200px; }
.deadline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deadline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-icon {
  background: var(--amber-light);
  color: var(--amber);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.card-body { padding: 20px; flex: 1; }
.card-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}
.card-body p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* FOR WHO */
.forwho {
  padding: 80px 48px;
  background: var(--navy);
}
.forwho-inner { max-width: 1200px; }
.forwho .section-title { color: var(--cream); }
.profiles { display: flex; flex-direction: column; gap: 16px; }
.profile-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 10px;
  padding: 18px 24px;
}
.profile-check {
  color: var(--amber);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.profile-item p {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.howitworks-inner { max-width: 1200px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .deadline-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .deadlines, .forwho, .howitworks { padding: 56px 24px; }
  .closing { padding: 72px 24px; }
}
@media (max-width: 600px) {
  .deadline-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 32px; }
}