@font-face {
  font-family: 'Lazare Grotesk';
  src: url('/fonts/LazareGroteskTrial-Regular-BF647806db2b1eb.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lazare Grotesk';
  src: url('/fonts/LazareGroteskTrial-Medium-BF647806db24482.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lazare Grotesk';
  src: url('/fonts/LazareGroteskTrial-Bold-BF647806db04a12.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lazare Grotesk';
  src: url('/fonts/LazareGroteskTrial-Black-BF647806db20415.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f9ff;
  --bg-deep: #e6ebff;
  --text: #0c0c16;
  --muted: #52556f;
  --accent: #2151F6;
  --accent-dark: #1a42d4;
  --mono: 'Lazare Grotesk', 'SFMono-Regular', Menlo, monospace;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  color-scheme: light;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScaleUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeSlideUpCentered {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeSlideUpLight {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Fallback: show elements if JavaScript doesn't load */
.no-js .reveal,
.reveal.no-js {
  opacity: 1;
  transform: none;
}

.promo-ticker.reveal {
  transform: translate(-50%, 30px);
}

.page-loaded .reveal {
  animation: fadeSlideUp 0.9s ease forwards;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-loaded .promo-ticker.reveal {
  animation: fadeSlideUpFloating 0.9s ease forwards;
}

.page-loaded .hero-visual.reveal {
  animation-name: fadeScaleUp;
}

.reveal-delay-sm {
  animation-delay: 0.15s;
}

.reveal-delay-md {
  animation-delay: 0.3s;
}

.reveal-delay-lg {
  animation-delay: 0.45s;
}

.reveal-delay-xl {
  animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .page-loaded .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Ensure elements are visible after animation completes */
.page-loaded .reveal,
body:not(.no-js) .reveal {
  animation: fadeSlideUp 0.9s ease forwards;
}

body:not(.no-js) .promo-ticker.reveal {
  animation: fadeSlideUpFloating 0.9s ease forwards;
}

@keyframes fadeSlideUpFloating {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

body:not(.no-js) .hero-visual.reveal {
  animation: fadeScaleUp 1s ease forwards;
}

.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

html > body {
  height: 100%;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.preloader-logo .preloader-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: scale(1);
  transition: opacity 0.3s ease 0.2s;
  transform-origin: center center;
}

.preloader-logo.zoom .preloader-icon {
  opacity: 0;
}

.preloader-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  background: white;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  z-index: -1;
}

.preloader-logo.zoom::after {
  transform: scale(20);
}

.preloader-prompt {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s ease 0.2s;
  pointer-events: none;
  animation: pulse 2s ease-in-out infinite;
}

.preloader-logo.zoom ~ .preloader-prompt {
  opacity: 0;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.preloader.zooming {
  background: #ffffff;
  transition: background 0.3s ease 0.6s;
}

.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffffff;
  overflow: hidden;
  pointer-events: none;
  mask: radial-gradient(ellipse at center, transparent 0%, transparent 40%, black 70%);
  -webkit-mask: radial-gradient(ellipse at center, transparent 0%, transparent 40%, black 70%);
}

.node-network {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.node-network circle {
  fill: #2151F6;
  opacity: 0.8;
}

.node-network line {
  stroke: #2151F6;
  stroke-width: 1.5;
  opacity: 0.35;
}

html > body {
  margin-bottom: 0;
  padding-bottom: 0;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  height: 100%;
  font-family: 'Lazare Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}

body > main,
body > section {
  flex-shrink: 0;
}

body.has-floating-ticker {
  /* Padding removed - footer now sticks to bottom */
}

body:not(.preloader-complete) > *:not(.preloader) {
  opacity: 0;
  pointer-events: none;
}

body.preloader-complete > *:not(.preloader) {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

button:active {
  transform: scale(0.97);
}

.primary-button {
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(33, 81, 246, 0.25);
}

.primary-button:hover {
  background: var(--accent-dark);
}

.secondary-button {
  background: rgba(33, 81, 246, 0.08);
  color: var(--accent);
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  border: 1px solid rgba(33, 81, 246, 0.3);
}

.ghost-button {
  background: transparent;
  color: var(--accent);
  padding: 0.35rem 1rem;
  font-weight: 600;
}

.ghost-button.close {
  color: var(--muted);
  font-size: 1.15rem;
}

.promo-ticker {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2.5rem);
  transform: translateX(-50%);
  width: min(92vw, 620px);
  margin: 0;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(33, 81, 246, 0.94);
  color: #fff;
  font-family: var(--mono);
  box-shadow: 0 25px 60px rgba(12, 25, 72, 0.25),
              0 0 35px rgba(33, 81, 246, 0.45);
  backdrop-filter: blur(16px);
  z-index: 1000;
  animation: borderPulse 3s ease-in-out infinite;
}

.promo-ticker-left {
  display: contents;
}

.promo-ticker-right {
  display: contents;
}

@keyframes borderPulse {
  0%, 100% {
    box-shadow: 0 25px 60px rgba(12, 25, 72, 0.25),
                0 0 0 0 rgba(33, 81, 246, 0.45),
                0 0 35px rgba(33, 81, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow: 0 30px 70px rgba(12, 25, 72, 0.35),
                0 0 0 8px rgba(33, 81, 246, 0.2),
                0 0 40px rgba(90, 126, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.75);
  }
}

.promo-ticker .mono-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.promo-ticker .mono-value {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  flex: 1;
  min-width: 230px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-ticker a.mono-value {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.promo-ticker a.mono-value:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.promo-ticker .ghost-button {
  color: #fff;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.promo-ticker .ghost-button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.promo-links {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.promo-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(33, 81, 246, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.promo-link:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.promo-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: none;
  display: block;
}

.promo-link img.dex-icon {
  width: 18px;
  height: 18px;
}

.promo-ticker .ghost-button.close {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  width: min(100%, 1100px);
  margin: 0 auto clamp(1.5rem, 4vw, 3rem);
  padding: 0 1rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 2rem) 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: auto;
  height: 42px;
  object-fit: contain;
  display: block;
}

.status-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(33, 81, 246, 0.08);
  border: 1px solid rgba(33, 81, 246, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(33, 81, 246, 0.7);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(33, 81, 246, 0);
  }
}

.status-text {
  letter-spacing: 0.02em;
}

.hero {
  width: min(100%, 1100px);
  margin: 0 auto clamp(1.5rem, 5vw, 3rem);
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  justify-items: center;
  position: relative;
  min-height: 60vh;
  flex: 1;
  transition: grid-template-columns 0.6s ease 0.4s, gap 0.6s ease 0.4s, justify-items 0.6s ease 0.4s;
  background: #ffffff;
  z-index: 1;
}

.page-loaded .hero {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: stretch;
}

/* Initial centered state */
.hero-copy {
  text-align: center;
  max-width: 800px;
  width: 100%;
  transition: text-align 0.6s ease 0.4s, max-width 0.6s ease 0.4s;
}

.page-loaded .hero-copy {
  text-align: left;
  max-width: none;
}

/* Visual will be hidden by opacity animation, grid handles layout */
.hero-visual {
  background: radial-gradient(circle, #f2f5ff 0%, #fff 60%);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  padding: 0;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-visual:hover {
  border-color: rgba(12, 12, 22, 0.1);
}

/* Stage 1: Heading shows first */
.hero-stage-1 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUpLight 0.6s ease 0.1s forwards;
}

/* Stage 2: Description and eyebrow fade in */
.hero-stage-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUpLight 0.6s ease 0.3s forwards;
}

.hero-copy .eyebrow.hero-stage-2 {
  animation-delay: 0.2s;
}

/* Stage 3: Layout transition happens via .hero-copy transition */

/* Stage 4: Visual and buttons fade in */
.hero-visual.hero-stage-4 {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  animation: fadeScaleUp 0.7s ease 0.6s forwards;
}

.hero-cta.hero-stage-4 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUpLight 0.6s ease 0.7s forwards;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.hero-image-static {
  position: relative;
  opacity: 1;
}

.hero-image-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-visual:hover .hero-image-static {
  opacity: 0;
}

.hero-visual:hover .hero-image-video {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .hero-image-static {
    display: none;
  }
  
  .hero-image-video {
    position: relative;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  .hero-visual:hover .hero-image-static {
    opacity: 1;
  }
  
  .hero-visual:hover .hero-image-video {
    opacity: 1;
  }
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0;
  font-weight: 400;
}

.hero-copy h1 span {
  color: var(--accent);
  font-weight: 500;
}

.hero-copy .subhead {
  color: var(--muted);
  max-width: 44ch;
  margin-top: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
  align-items: center;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cta-links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.hero-cta-link {
  width: 3.3rem;
  height: 3.3rem;
  min-width: 3.3rem;
  border-radius: 50%;
  background: rgba(33, 81, 246, 0.08);
  border: 1px solid rgba(33, 81, 246, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.hero-cta-link:hover {
  background: rgba(33, 81, 246, 0.15);
  transform: translateY(-1px);
}

.hero-cta-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.hero-cta-link img.dex-icon {
  width: 24px;
  height: 24px;
}

.hero-cta .secondary-button {
  font-weight: 500;
}

.waitlist {
  width: min(100%, 1100px);
  margin: 0 auto clamp(2rem, 6vw, 4rem);
  padding: 0 1rem clamp(2rem, 6vw, 4rem);
}

.waitlist-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 12, 22, 0.06);
  box-shadow: 0 30px 80px rgba(17, 29, 66, 0.08);
  padding: clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 5vw, 3rem);
}

.waitlist-copy h2 {
  font-weight: 500;
}

.waitlist-copy ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.waitlist-copy li + li {
  margin-top: 0.4rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.waitlist-form label span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.waitlist-form input {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 12, 22, 0.15);
  padding: 0.9rem 1rem;
  font: inherit;
  background: #f9fbff;
}

.waitlist-form input:focus {
  outline: 2px solid rgba(33, 81, 246, 0.3);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-feedback {
  min-height: 1.2em;
  font-weight: 600;
}

.form-feedback.success {
  color: #1b8744;
}

.form-feedback.error {
  color: #b2183e;
}

.site-footer {
  background: var(--accent);
  color: #fff;
  padding: 1.2rem clamp(1.2rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  margin-top: auto;
  flex-shrink: 0;
}

.site-footer:last-child {
  margin-bottom: 0;
}

body > *:last-child {
  margin-bottom: 0 !important;
}

.token-ticker {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.9;
}

.footer-cta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.icon-buttons {
  display: flex;
  gap: 0.5rem;
}

.icon-buttons button,
.icon-buttons a {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.icon-buttons button img,
.icon-buttons a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.icon-buttons button:hover,
.icon-buttons a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.site-footer .secondary-button {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.site-footer .secondary-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Waitlist section is now visible */

@media (max-width: 768px) {
  .promo-ticker {
    width: calc(100% - 2rem);
    bottom: clamp(0.75rem, 4vw, 1.5rem);
    padding: 0.85rem 1rem;
    border-radius: 24px;
    gap: 0.6rem;
    flex-wrap: nowrap;
    overflow: hidden;
    justify-content: space-between;
  }
  
  .promo-ticker-left {
    display: flex;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
  }
  
  .promo-ticker-right {
    display: flex;
    gap: 0.4rem;
  }
  
  .promo-ticker .mono-label {
    font-size: 0.7rem !important;
    letter-spacing: 0.1em;
    flex-shrink: 0;
  }
  
  .promo-ticker .mono-value {
    font-size: 0.8rem !important;
    flex: 1;
    min-width: 0;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.06em;
  }
  
  .promo-ticker .ghost-button.copy-address {
    flex-shrink: 0;
    font-size: 0.7rem !important;
    padding: 0.4rem 0.7rem !important;
    white-space: nowrap;
  }
  
  .promo-links {
    flex-shrink: 0;
    gap: 0.4rem;
    margin-left: 0;
  }
  
  .promo-link {
    width: 32px;
    height: 32px;
  }
  
  .promo-link img {
    width: 16px !important;
    height: 16px !important;
  }
  
  .promo-link img.dex-icon {
    width: 18px !important;
    height: 18px !important;
  }
  
  .promo-ticker .ghost-button.close {
    width: 32px;
    height: 32px;
    font-size: 0.9rem !important;
    flex-shrink: 0;
    padding: 0;
  }
  
  body.has-floating-ticker {
    /* Padding removed - footer now sticks to bottom */
  }
  
  .nav {
    flex-wrap: nowrap !important;
    gap: 0.4rem !important;
    padding: clamp(0.75rem, 3vw, 1.5rem) 0;
    overflow: hidden;
  }
  
  .logo-img {
    height: 28px !important;
    flex-shrink: 0;
  }
  
  .status-capsule {
    padding: 0.25rem 0.5rem !important;
    gap: 0.35rem !important;
    font-size: 0.65rem !important;
    flex-shrink: 1;
    min-width: 0;
    max-width: 40%;
  }
  
  .status-dot {
    width: 5px !important;
    height: 5px !important;
    flex-shrink: 0;
  }
  
  .status-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.65rem !important;
  }
  
  .nav .primary-button {
    display: none !important;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .hero-cta-links {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .token-ticker {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  
  .token-ticker span {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .footer-logo {
    height: 28px;
  }
  
  .footer-cta {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }
  
  .site-footer .secondary-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .icon-buttons {
    justify-content: center;
  }
}
