:root {
  --ink: #0f172a;
  --ink-soft: #24324b;
  --ink-accent: #1b3f63;
  --paper: #f6f4ef;
  --mint: #b8f1d0;
  --coral: #f1897a;
  --cyan: #6ab9f4;
  --sun: #ffd56a;
  --plum: #2f2a4a;
  --leaf: #3bbf8a;
  --shadow: rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top left, #f3f7fb, #f6f4ef 45%, #fff3ee 80%);
  color: var(--ink);
  min-height: 100vh;
}

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

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.6;
}

.orb-a {
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  top: -120px;
  right: -60px;
}

.orb-b {
  background: radial-gradient(circle, var(--coral), transparent 70%);
  bottom: -140px;
  left: -80px;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0 0 18px 18px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
}

.brand-mark svg {
  width: 72px;
  height: 72px;
}

.brand-mark rect {
  fill: var(--ink);
}

.brand-mark path {
  fill: none;
  stroke: white;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
}

.brand-tag {
  font-size: 13px;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover {
  background: rgba(106, 185, 244, 0.18);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: linear-gradient(120deg, #1a2538, var(--plum));
  color: white;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.btn.small {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-glow {
  position: relative;
  animation: glow 1.1s ease-in-out infinite;
  background: linear-gradient(120deg, #0f8a5f, #18b36d);
  box-shadow: 0 0 0 rgba(24, 179, 109, 0.6);
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(24, 179, 109, 0.55);
  }
  50% {
    box-shadow: 0 0 16px 6px rgba(24, 179, 109, 0.45);
  }
}

.ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}

.ghost:hover {
  border-bottom-color: var(--ink);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

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

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--ink-soft);
}

h1 {
  font-size: clamp(32px, 3.6vw, 46px);
  margin: 16px 0;
  color: var(--ink-accent);
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-panel {
  background: white;
  border-radius: 28px;
  box-shadow: 0 20px 50px var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(106, 185, 244, 0.18);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: #0b5b3a;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(59, 191, 138, 0.4);
  animation: pulse 1.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 191, 138, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 191, 138, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 191, 138, 0);
  }
}

.panel-body {
  display: grid;
  gap: 14px;
}

.ticket {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(120deg, #f9fbfe, #fff7f3);
}

.ticket h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.ticket p {
  font-size: 13px;
  color: var(--ink-soft);
}

.time {
  font-size: 12px;
  color: var(--ink-soft);
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.panel-metric {
  font-size: 18px;
  font-weight: 700;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
  color: var(--ink-accent);
}

.section-header p {
  color: var(--ink-soft);
  max-width: 620px;
}

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

.card {
  background: white;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 18px 40px var(--shadow);
  border: 1px solid rgba(241, 137, 122, 0.16);
}

.card-featured {
  border: 2px solid rgba(106, 185, 244, 0.5);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
  background: linear-gradient(120deg, #ffffff, #eef7ff);
  transform: translateY(-6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card-featured h3 {
  color: var(--ink-accent);
}

.card-featured::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(106, 185, 244, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-featured:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
  border-color: rgba(106, 185, 244, 0.8);
}

.card-featured:hover::after {
  opacity: 1;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(106, 185, 244, 0.18);
  color: var(--ink-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.steps {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
  color: var(--ink-soft);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  background: linear-gradient(120deg, #fff8f2, #f4f8fd);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(106, 185, 244, 0.22);
}

.timeline-item h3 {
  margin: 10px 0 6px;
}

.band {
  background: linear-gradient(120deg, #edf6fd 0%, #fff4ee 55%, #f4fff8 100%);
  padding: 32px;
  border-radius: 28px;
}

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

.coverage h3 {
  margin-bottom: 10px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
  scroll-margin-top: 190px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-form {
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px var(--shadow);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(59, 191, 138, 0.14);
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

input,
select,
textarea {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(106, 185, 244, 0.7);
  box-shadow: 0 0 0 3px rgba(106, 185, 244, 0.16);
}

textarea {
  resize: vertical;
}

.fine {
  font-size: 12px;
  color: var(--ink-soft);
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 600px) {
  main {
    padding: 32px 20px 60px;
  }

  .hero-panel {
    padding: 18px;
  }

  .featured {
    transform: none;
  }
}
