:root {
  --bg: #0b0f17;
  --bg-soft: #111827;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f9fafb;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #f8d38d;
  --accent-2: #a7f3d0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(248, 211, 141, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 15%, rgba(167, 243, 208, 0.12), transparent 34rem),
    linear-gradient(180deg, #0b0f17 0%, #111827 48%, #0b0f17 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  backdrop-filter: blur(18px);
  background: rgba(11, 15, 23, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--text);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 2rem);
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #111827;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: rgba(248, 211, 141, 0.17);
  filter: blur(12px);
}

.card-label,
.project-number {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card p:last-child {
  position: relative;
  margin-bottom: 0;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}

.body-copy {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  min-height: 520px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
}

.project-card.elephant {
  background:
    radial-gradient(circle at 85% 10%, rgba(248, 211, 141, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.project-card.father {
  background:
    radial-gradient(circle at 85% 10%, rgba(167, 243, 208, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.project-card p,
.project-card li {
  color: var(--muted);
}

.project-card ul {
  padding-left: 1.2rem;
  margin: 1.5rem 0 0;
}

.project-card li + li {
  margin-top: 0.65rem;
}

.highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 0% 0%, rgba(248, 211, 141, 0.16), transparent 28rem),
    var(--panel);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.deliverables article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.deliverables span {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--accent);
  font-weight: 850;
}

.deliverables p {
  color: var(--muted);
  font-size: 0.98rem;
}

.closing {
  max-width: 920px;
  text-align: center;
}

.closing p {
  color: var(--muted);
  font-size: 1.15rem;
}

.closing .button {
  margin-top: 1.25rem;
}

.small-note {
  margin-top: 0.85rem;
  color: var(--soft) !important;
  font-size: 0.88rem !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 4vw, 4.5rem);
  color: var(--soft);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .highlight,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .project-card {
    min-height: auto;
  }

  .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.65rem, 15vw, 4.8rem);
  }

  .deliverables {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
