/* Variables */
:root {
  --bg: #FAFAF9;
  --bg-alt: #F5F5F4;
  --bg-dark: #050507;
  --bg-cta: linear-gradient(135deg, #1a0a2e, #0a0514);
  --text: #0a0a0a;
  --text-secondary: #525252;
  --text-muted: #a3a3a3;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dark: #6d28d9;
  --green: #22c55e;
  --yellow: #eab308;
  --border: #e5e5e5;
  --border-dark: rgba(255,255,255,0.08);
  --white: #ffffff;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::-moz-selection {
  background: var(--purple);
  color: var(--white);
}

::selection {
  background: var(--purple);
  color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Typography */
a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.nav__logo:hover {
  color: var(--purple);
}

.nav__menu {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--purple);
}

.nav__cta {
  background-color: var(--purple);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.nav__cta:hover {
  background-color: var(--purple-dark);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu__cta {
  background-color: var(--purple);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: var(--purple);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}

.btn--outline:hover {
  background-color: var(--text);
  color: var(--white);
}

.btn--white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn--white:hover {
  background-color: var(--white);
  color: var(--text);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 12px;
}

.btn--full {
  width: 100%;
}

/* Sections */
.section {
  position: relative;
}

.section--light {
  background-color: var(--bg);
  padding: 120px 40px;
}

.section--padded {
  padding: 160px 40px;
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 120px 40px;
}

.section--cta {
  background: var(--bg-cta);
  color: var(--white);
  padding: 140px 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container--sm {
  max-width: 650px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
}

.section--dark .section-title {
  color: var(--white);
}

.section-sub {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 16px auto 0;
}

/* Typography Headings */
.editorial-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.mega-heading {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.purple {
  color: var(--purple);
}

/* Hero */
.hero {
  min-height: 100vh;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.hero__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 120px 40px 40px;
  flex: 1;
}

.hero__text {
  flex: 0 0 55%;
  padding-right: 40px;
}

.hero__title {
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__headline {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin: 16px 0;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.hero__art {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__nft-frame {
  width: 400px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #0a0a0a;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* NFT Animations */
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.5; }
}

@keyframes pulse-opp {
  0% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.nft-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.nft-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid var(--purple);
  transform: translate(-50%, -50%);
}

.nft-ring--1 {
  width: 200px;
  height: 200px;
  opacity: 0.6;
  animation: pulse 4s infinite ease-in-out;
}

.nft-ring--2 {
  width: 150px;
  height: 150px;
  opacity: 0.8;
  animation: pulse-opp 3s infinite ease-in-out;
}

.nft-ring--3 {
  width: 120px;
  height: 120px;
  opacity: 0.4;
}

.nft-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-light), var(--purple));
  box-shadow: 0 0 20px var(--purple);
}

.nft-placeholder--alt .nft-ring { border-color: var(--purple-light); }
.nft-placeholder--alt2 .nft-ring { border-color: var(--purple-dark); }
.nft-placeholder--alt3 .nft-ring--1 { width: 180px; height: 180px; }
.nft-placeholder--alt4 .nft-ring--2 { width: 160px; height: 160px; }

/* Tech Strip */
.tech-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}

.tech-strip__sep {
  color: var(--purple);
}

.tech-strip__item--accent {
  color: var(--purple);
}

/* Story */
.story {
  display: flex;
  flex-direction: row;
  gap: 80px;
}

.story__text {
  flex: 0 0 55%;
}

.story__body {
  margin-top: 32px;
}

.story__body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.story__visual {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ink-visual {
  position: relative;
  width: 300px;
  height: 300px;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
  100% { transform: translateY(0px) scale(1); }
}

.ink-visual__blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-light), var(--purple-dark));
  opacity: 0.15;
  filter: blur(60px);
  animation: float 6s infinite ease-in-out;
}

.ink-visual__blob--2 {
  top: 50px;
  left: 80px;
  width: 180px;
  height: 180px;
  animation-delay: -2s;
}

.ink-visual__blob--3 {
  top: 100px;
  left: -20px;
  width: 150px;
  height: 150px;
  animation-delay: -4s;
}

/* NFT Grid */
.nft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.nft-grid > .nft-card:nth-child(4) {
  grid-column: 1 / 2;
}

.nft-grid > .nft-card:nth-child(5) {
  grid-column: 2 / 4;
}

.nft-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #0a0a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.nft-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nft-card__art {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.nft-card:hover .nft-card__art .nft-placeholder {
  transform: translate(-50%, -50%) scale(1.05);
}

.nft-card:hover .nft-card__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
}

.nft-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background-color: rgba(10, 10, 10, 0.95);
}

.nft-card__name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--white);
}

.nft-card__tag {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--purple);
}

.nft-card__status {
  font-size: 10px;
  color: var(--text-muted);
}

/* Why Ink */
.why-ink {
  text-align: left;
}

.why-ink__body {
  max-width: 600px;
  margin-top: 40px;
}

.why-ink__body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Build Block */
.build-block {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  max-width: 550px;
  margin: 0 auto;
}

.build-block__header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-dark);
  font-family: 'JetBrains Mono', monospace;
}

.terminal-prompt {
  color: var(--purple);
}

.build-block__body {
  padding: 24px;
}

.build-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
}

.build-row:last-child {
  border-bottom: none;
}

.build-key {
  color: var(--white);
}

.build-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  margin: 0 16px;
}

.build-val {
  color: var(--text-muted);
}

.build-val--live {
  color: var(--green);
}

.build-val--wip {
  color: var(--yellow);
}

.build-val--soon {
  color: var(--text-muted);
}

/* Utility Grid */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.utility-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.utility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.utility-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.utility-card h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.utility-card p {
  color: var(--text-secondary);
  font-size: 14px;
  flex-grow: 1;
}

.utility-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 16px;
  align-self: flex-start;
}

.utility-card:nth-child(1) .utility-card__tag,
.utility-card:nth-child(2) .utility-card__tag {
  color: var(--purple);
}

.utility-card:nth-child(3) .utility-card__tag,
.utility-card:nth-child(4) .utility-card__tag {
  color: var(--purple-light);
}

/* Timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: row;
}

.timeline__track {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border);
}

.timeline__phase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 48px;
}

.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--border);
  border: 3px solid var(--white);
  position: absolute;
  top: 13px; /* vertically center with track (20 + 1 = 21, 21 - 8 = 13) */
  left: 50%;
  transform: translateX(-50%);
}

.timeline__dot--active {
  background-color: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}

.timeline__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--purple);
  margin-bottom: 6px;
}

.timeline__phase h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline__phase p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.timeline__status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.timeline__status--progress { color: var(--green); }
.timeline__status--next { color: #f97316; }
.timeline__status--soon { color: var(--yellow); }
.timeline__status--planned { color: var(--text-muted); }
.timeline__status--future { color: rgba(163, 163, 163, 0.5); }

/* Mint Panel */
.mint-panel {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.mint-panel__tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.mint-tab {
  flex: 1;
  padding: 16px;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.mint-tab--active {
  border-bottom: 2px solid var(--purple);
  font-weight: 600;
  color: var(--text);
}

.mint-panel__content {
  padding: 40px;
  text-align: center;
}

.mint-panel__content--hidden {
  display: none;
}

.mint-access {
  color: var(--text-secondary);
}

.mint-status-banner {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--bg-alt);
  padding: 16px;
  border-radius: 8px;
  margin-top: 24px;
  color: var(--text-muted);
}

/* Whitelist */
.wl-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.wl-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wl-form__field {
  margin-bottom: 20px;
}

.wl-form__field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 8px;
}

.required { color: var(--purple); }
.optional { color: var(--text-muted); font-weight: 400; text-transform: none; }

.wl-form__field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background-color: var(--bg);
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
}

.wl-form__field input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.wl-form__input-wrap {
  position: relative;
}

.wl-form__at {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.wl-form__input-wrap input {
  padding-left: 32px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.wl-success { display: none; text-align: center; }
.wl-success.show { display: block; }
.wl-success__check {
  width: 48px;
  height: 48px;
  background-color: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.wl-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.wl-success p { color: var(--text-secondary); }

.wl-error { display: none; color: #ef4444; text-align: center; margin-top: 16px; font-size: 14px;}
.wl-error.show { display: block; }

/* FAQ */
.faq-list {
  max-width: 650px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--purple);
}

.faq-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.4s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.faq-item--open .faq-a {
  max-height: 300px;
}

.faq-item.faq-item--open .faq-icon {
  transform: rotate(45deg);
}

.faq-a p {
  color: var(--text-secondary);
  padding-bottom: 24px;
  line-height: 1.7;
}

/* CTA */
.cta-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background-color: #050507;
  color: var(--white);
  padding: 60px 40px 30px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer__brand p {
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.footer__nav {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.footer__nav a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__social {
  margin-top: 24px;
}
.footer__social a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer__social a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer__legal a {
  color: var(--text-muted);
  margin-left: 16px;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--white);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.disclaimer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero__text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .hero__actions {
    justify-content: center;
  }
  .story {
    flex-direction: column;
  }
  .nft-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nft-grid > .nft-card:nth-child(4),
  .nft-grid > .nft-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .utility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline__track {
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
  }
  .timeline__phase {
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 48px;
    text-align: left;
    width: 100%;
  }
  .timeline__phase:last-child {
    padding-bottom: 0;
  }
  .timeline__dot {
    top: 0;
    left: 13px; /* vertically center with track (20 + 1 = 21, 21 - 8 = 13) */
  }
  .timeline__num {
    margin-bottom: 0;
    margin-right: 12px;
  }
  .timeline__phase h4, .timeline__phase p, .timeline__status {
    margin-left: 16px;
  }
  .wl-form__row {
    grid-template-columns: 1fr;
  }
  .footer__nav {
    flex-direction: column;
    gap: 16px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section--light, .section--dark, .section--cta, .section--padded {
    padding-left: 20px;
    padding-right: 20px;
  }
  .utility-grid {
    grid-template-columns: 1fr;
  }
  .nft-grid {
    grid-template-columns: 1fr;
  }
  .hero__nft-frame {
    width: 300px;
    height: 300px;
  }
}
