:root {
  --ink: #0f1217;
  --night: #121724;
  --storm: #1a2233;
  --sand: #f6f1e7;
  --coral: #f17e66;
  --mint: #69d5b1;
  --sun: #f5c15c;
  --cream: #fff8ef;
  --shadow: rgba(15, 18, 23, 0.2);
}

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

body {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f8efe6 0%, #efe6db 40%, #e6d9cb 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.glow {
  position: absolute;
  inset: -20% 0 0 0;
  background: radial-gradient(circle at 20% 10%, rgba(241, 126, 102, 0.35), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(105, 213, 177, 0.35), transparent 45%),
    radial-gradient(circle at 60% 70%, rgba(245, 193, 92, 0.25), transparent 55%);
  z-index: 0;
}

.noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  padding: 32px 8vw 60px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: 0 16px 40px var(--shadow);
  backdrop-filter: blur(8px);
}

.logo {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(15, 18, 23, 0.7);
}

.nav-button {
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
}

.hero-content {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(15, 18, 23, 0.6);
  margin-bottom: 12px;
}

.subhead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(15, 18, 23, 0.75);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.primary,
.ghost,
.secondary {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
}

.primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 10px 20px rgba(241, 126, 102, 0.35);
}

.ghost {
  background: transparent;
  border: 1px solid rgba(15, 18, 23, 0.2);
  color: var(--ink);
}

.secondary {
  background: var(--night);
  color: var(--cream);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.hero-meta h3 {
  font-size: 1.5rem;
}

.hero-meta p {
  font-size: 0.85rem;
  color: rgba(15, 18, 23, 0.6);
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px var(--shadow);
  display: grid;
  gap: 18px;
  animation: float 6s ease-in-out infinite;
}

.card-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(15, 18, 23, 0.6);
}

.card-row {
  display: grid;
  gap: 8px;
}

.card-row .label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(15, 18, 23, 0.5);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(105, 213, 177, 0.2);
  color: var(--storm);
  font-weight: 600;
  width: fit-content;
}

.bar {
  background: rgba(15, 18, 23, 0.1);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--coral));
}

.card-row ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
}

main {
  position: relative;
  z-index: 2;
  padding: 0 8vw 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.grid article {
  background: rgba(255, 255, 255, 0.75);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(15, 18, 23, 0.12);
  display: grid;
  gap: 16px;
}

.grid h2,
.timeline h2,
.cta h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.6rem;
}

.metric {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.metric strong {
  font-size: 1.6rem;
}

.metric em {
  font-style: normal;
  color: rgba(15, 18, 23, 0.6);
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div,
.list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 18, 23, 0.04);
}

.steps strong {
  color: var(--storm);
}

.list strong {
  font-size: 0.85rem;
  color: rgba(15, 18, 23, 0.7);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 126, 102, 0.2);
  font-size: 0.85rem;
}

.timeline {
  background: var(--night);
  color: var(--cream);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  gap: 28px;
  margin-bottom: 60px;
}

.insights {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}

.brief-pack {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}

.pack-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.pack-header p {
  max-width: 520px;
  color: rgba(15, 18, 23, 0.7);
  margin-top: 8px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pack-panel {
  background: rgba(255, 255, 255, 0.78);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(15, 18, 23, 0.12);
  display: grid;
  gap: 12px;
}

.pack-panel h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.25rem;
}

.pack-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: rgba(15, 18, 23, 0.6);
}

.pack-panel p {
  color: rgba(15, 18, 23, 0.75);
  line-height: 1.5;
}

.pack-metrics {
  display: grid;
  gap: 10px;
}

.pack-metrics div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 18, 23, 0.04);
  font-size: 0.9rem;
}

.pack-metrics strong {
  font-size: 1rem;
}

.pack-panel.emphasis {
  background: linear-gradient(140deg, rgba(105, 213, 177, 0.2), rgba(245, 193, 92, 0.2));
}

.pack-lanes {
  display: grid;
  gap: 12px;
}

.pack-lanes div {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.pack-checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(15, 18, 23, 0.75);
  font-size: 0.95rem;
}

.pack-checklist li {
  padding-left: 18px;
  position: relative;
}

.pack-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--coral);
}

.pack-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: rgba(18, 23, 36, 0.9);
  color: var(--cream);
  padding: 22px;
  border-radius: 24px;
}

.pack-footer span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 6px;
}

.decision-studio {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}

.studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.studio-header p {
  max-width: 520px;
  color: rgba(15, 18, 23, 0.7);
  margin-top: 8px;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.studio-card {
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(15, 18, 23, 0.12);
  display: grid;
  gap: 12px;
}

.studio-card h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.25rem;
}

.studio-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(15, 18, 23, 0.6);
}

.studio-card p {
  color: rgba(15, 18, 23, 0.75);
  line-height: 1.5;
}

.studio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(15, 18, 23, 0.6);
}

.studio-card.highlight {
  background: linear-gradient(140deg, rgba(105, 213, 177, 0.2), rgba(241, 126, 102, 0.2));
}

.studio-lane {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background: rgba(18, 23, 36, 0.9);
  color: var(--cream);
  padding: 24px;
  border-radius: 24px;
}

.studio-lane span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 6px;
}

.studio-lane strong {
  font-size: 1.3rem;
}

.studio-lane p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.field-notes {
  display: grid;
  gap: 26px;
  margin-bottom: 60px;
}

.brief-pack {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}

.pack-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.pack-header p {
  max-width: 520px;
  color: rgba(15, 18, 23, 0.7);
  margin-top: 8px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pack-card {
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(15, 18, 23, 0.12);
  display: grid;
  gap: 14px;
}

.pack-card h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.25rem;
}

.pack-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.65rem;
  color: rgba(15, 18, 23, 0.55);
}

.pack-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(15, 18, 23, 0.75);
  padding-left: 0;
}

.pack-list li {
  padding-left: 16px;
  position: relative;
}

.pack-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--coral);
}

.pack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pack-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 18, 23, 0.08);
  font-size: 0.85rem;
}

.pack-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(15, 18, 23, 0.6);
}

.pack-score {
  display: grid;
  gap: 10px;
  background: rgba(15, 18, 23, 0.05);
  padding: 14px;
  border-radius: 16px;
}

.pack-score span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: rgba(15, 18, 23, 0.55);
  display: block;
  margin-bottom: 6px;
}

.pack-score strong {
  font-size: 1.2rem;
}

.pack-checklist {
  display: grid;
  gap: 10px;
}

.pack-checklist div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 18, 23, 0.04);
  font-size: 0.9rem;
}

.pack-card.highlight {
  background: linear-gradient(140deg, rgba(241, 126, 102, 0.2), rgba(105, 213, 177, 0.2));
}

.field-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.field-header p {
  max-width: 520px;
  color: rgba(15, 18, 23, 0.7);
  margin-top: 8px;
}

.note-pulse {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(15, 18, 23, 0.1);
}

.note-pulse span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: rgba(15, 18, 23, 0.55);
  display: block;
  margin-bottom: 6px;
}

.note-pulse strong {
  font-size: 1.1rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.note-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 32px rgba(15, 18, 23, 0.12);
  display: grid;
  gap: 12px;
}

.note-card h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.25rem;
}

.note-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.65rem;
  color: rgba(15, 18, 23, 0.55);
}

.note-card p {
  color: rgba(15, 18, 23, 0.75);
  line-height: 1.5;
}

.note-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(15, 18, 23, 0.6);
}

.note-card.spotlight {
  background: linear-gradient(140deg, rgba(241, 126, 102, 0.2), rgba(245, 193, 92, 0.2));
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.insights-header p {
  max-width: 520px;
  color: rgba(15, 18, 23, 0.7);
  margin-top: 8px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.insight-card {
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(15, 18, 23, 0.12);
  display: grid;
  gap: 12px;
}

.insight-card h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.3rem;
}

.insight-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(15, 18, 23, 0.6);
}

.insight-card p {
  color: rgba(15, 18, 23, 0.75);
  line-height: 1.5;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(15, 18, 23, 0.6);
}

.insight-card.accent {
  background: linear-gradient(140deg, rgba(105, 213, 177, 0.2), rgba(245, 193, 92, 0.2));
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.timeline-grid div {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 18px;
}

.timeline-grid span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

.cta {
  background: linear-gradient(120deg, rgba(241, 126, 102, 0.9), rgba(105, 213, 177, 0.9));
  border-radius: 28px;
  padding: 36px;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .insights-header {
    align-items: flex-start;
  }

  .studio-header {
    align-items: flex-start;
  }

  .field-header {
    align-items: flex-start;
  }

  .pack-header {
    align-items: flex-start;
  }

  .note-pulse {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
