/* ---------- Tokens ---------- */

/*
  GIMBAL EXTENDED — licensed font, loaded from /fonts.
  Only a Regular (400) weight file was supplied. There is no separate
  Bold weight file, so the "Insurance" accent below uses browser-
  synthesized bold on top of the Regular face rather than a true
  Bold cut. Drop a real gimbal-extended-bold file into /fonts and
  add a matching @font-face (font-weight: 700) if a true bold becomes
  available.
*/
@font-face {
  font-family: 'Gimbal Extended';
  src: url('fonts/gimbal-extended-regular.woff') format('woff'),
       url('fonts/gimbal-extended-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --cream: #F8F2DE;
  --parchment: #F1E9CD;
  --pearl: #FFFDF6;
  --grain: #DDD2AE;
  --ebony: #1B1330;
  --coffee: #6E6656;
  --studio: #5B3FC0;
  --cornflower: #916CF8;
  --blue-chalk: #ECE3FF;
  --valhalla: #241640;
  --melrose: #C9B6FF;
  --prelude: #C9BEE0;
  --logan: #B7AAD1;
  --nomad: #B7AEA0;

  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-hero: 'Gimbal Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html{ scroll-behavior: smooth; }

body{
  background: var(--cream);
  color: var(--ebony);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

a{ text-decoration: none; color: inherit; }
ul{ list-style: none; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,242,222,0.78);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled{
  border-color: var(--grain);
  box-shadow: 0 8px 24px -16px rgba(27,19,48,0.25);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}
.logo{ display: inline-flex; align-items: center; }
.logo img{ display: block; }
.nav-links{ display: flex; gap: 32px; }
.nav-links a{ font-size: 14.5px; font-weight: 500; opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover{ opacity: 1; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--cornflower);
  color: var(--pearl);
  box-shadow: 0 10px 24px -8px rgba(145,108,248,0.55);
}
.btn-outline{
  background: transparent;
  border: 1px solid var(--ebony);
  color: var(--ebony);
}

/* ---------- Hamburger ---------- */
.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
}
.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ebony);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.mobile-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 82vw);
  background: var(--pearl);
  box-shadow: -20px 0 50px -20px rgba(27,19,48,0.35);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 205;
  overflow-y: auto;
}
.mobile-drawer.open{ transform: translateX(0); }
.mobile-drawer__close{
  align-self: flex-end;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--ebony);
}
.mobile-drawer__links{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.mobile-drawer__links a{
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--grain);
  color: var(--ebony);
}
.mobile-drawer__overlay{
  position: fixed;
  inset: 0;
  background: rgba(27,19,48,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 199;
}
.mobile-drawer__overlay.open{ opacity: 1; pointer-events: auto; }
body.drawer-open{ overflow: hidden; }

/* ---------- Hero ---------- */
.hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 88px 32px 60px;
  min-height: 640px;
}
.hero__title{
  font-family: var(--font-hero);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.4px;
  margin-bottom: 26px;
}
.hero__accent{ color: var(--cornflower); font-weight: 700; }
.hero__lede{
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--coffee);
  max-width: 520px;
  margin-bottom: 20px;
}
.hero__actions{ display: flex; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.hero__trust{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  color: var(--coffee);
  border-top: 1px solid var(--grain);
  padding-top: 20px;
  max-width: 520px;
}

.ticket{
  background: var(--pearl);
  border: 1px solid var(--grain);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 30px 60px -30px rgba(36,22,64,0.28);
}
.ticket__head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  color: var(--coffee);
}
.ticket__live{ display: flex; align-items: center; gap: 6px; color: var(--studio); }
.pulse-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cornflower);
  box-shadow: 0 0 0 4px rgba(145,108,248,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%,100%{ opacity: 1; } 50%{ opacity: 0.4; }
}
.ticket__rows{ border-top: 1px solid var(--grain); }
.ticket__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--grain);
}
.ticket__row .key{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  color: var(--coffee);
}
.ticket__row .val{ font-family: var(--font-mono); font-size: 12.5px; color: var(--ebony); }
.ticket__row .val.accent{ color: var(--studio); text-transform: uppercase; letter-spacing: 1.35px; font-size: 11.5px; }

.rail{ display: flex; align-items: center; padding-top: 26px; }
.rail__step{ display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.rail__step::after{
  content: ''; position: absolute; top: 5px; left: 56%; right: -44%;
  height: 1px; background: var(--grain);
}
.rail__step:last-child::after{ display: none; }
.rail__dot{
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--pearl); border: 1px solid var(--grain);
  margin-bottom: 8px;
}
.rail__step.active .rail__dot{
  background: var(--cornflower); border-color: var(--cornflower);
  box-shadow: 0 0 0 4px rgba(145,108,248,0.2);
}
.rail__label{
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.42px;
  text-transform: uppercase; color: var(--coffee);
}
.rail__step.active .rail__label{ color: var(--studio); }
.ticket__caption{
  padding-top: 19px; font-size: 13px; line-height: 1.6; color: var(--coffee);
}

/* ---------- Section shared ---------- */
.section__head{ max-width: 720px; margin-bottom: 40px; }
.eyebrow{
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.75px;
  text-transform: uppercase; color: var(--studio);
}
.eyebrow--light{ color: var(--melrose); }
.eyebrow__dot{
  width: 7px; height: 7px; border-radius: 50%; background: var(--cornflower);
  box-shadow: 0 0 0 4px rgba(145,108,248,0.18); flex-shrink: 0;
}
.eyebrow__line{
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--studio) 0%, transparent 100%);
}
.eyebrow--light .eyebrow__line{
  background: linear-gradient(90deg, var(--melrose) 0%, transparent 100%);
}
.section__title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__lede{ font-size: 17px; line-height: 1.7; color: var(--coffee); }
.section__note{
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 1.15px;
  text-transform: uppercase; color: var(--studio); margin-top: 12px;
}

/* ---------- Infra ---------- */
.infra{ background: var(--parchment); padding: 104px 0; border-top: 1px solid var(--grain); border-bottom: 1px solid var(--grain); }
.cap-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--pearl);
  border: 1px solid var(--grain);
  border-radius: 16px;
  overflow: hidden;
}
.cap-col{ padding: 30px; }
.cap-col:not(:last-child){ border-right: 1px solid var(--grain); }
.cap-col__head{ display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.cap-col__head h3{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.75px;
  text-transform: uppercase; color: var(--studio); font-weight: 500;
}
.cap-list li{
  padding: 13px 0; border-top: 1px solid var(--grain); font-size: 16px;
}
.cap-list li:first-child{ border-top: none; }

/* ---------- Products ---------- */
.products{ padding: 104px 0; }
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card{
  background: var(--pearl); border: 1px solid var(--grain); border-radius: 18px;
  padding: 32px; display: flex; flex-direction: column;
}
.tag{
  display: inline-flex; align-self: flex-start; padding: 6px 14px;
  background: var(--blue-chalk); border-radius: 100px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.35px;
  text-transform: uppercase; color: var(--studio); margin-bottom: 20px;
}
.product-card h3{
  font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.product-card p{ font-size: 16px; line-height: 1.65; color: var(--coffee); margin-bottom: 24px; flex-grow: 1; }
.chips{ display: flex; flex-wrap: wrap; gap: 8px; }
.chip{
  padding: 7px 14px; background: var(--blue-chalk); border-radius: 100px;
  font-size: 13px; color: var(--studio);
}

/* ---------- FAQ ---------- */
.faq{ background: var(--parchment); padding: 104px 0; border-top: 1px solid var(--grain); border-bottom: 1px solid var(--grain); }
.faq__grid{ display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.faq__sticky{ position: sticky; top: 110px; }
.faq__cta{ margin-top: 8px; align-self: flex-start; }
.faq__card{
  background: var(--pearl);
  border: 1px solid var(--grain);
  border-radius: 24px;
  box-shadow: 0 40px 70px -36px rgba(36,22,64,0.16);
  padding: 8px 28px;
}
.faq__list{ display: flex; flex-direction: column; }

.faq__item{ border-bottom: 1px solid var(--grain); }
.faq__item:last-child{ border-bottom: none; }
.faq__trigger{
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 24px 8px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: -0.2px; color: var(--coffee);
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.faq__trigger:hover{ color: var(--ebony); background: rgba(145,108,248,0.06); }
.faq__icon{
  flex-shrink: 0; width: 18px; height: 18px; position: relative;
}
.faq__icon::before, .faq__icon::after{
  content: ''; position: absolute; background: var(--cornflower);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: transform 0.3s ease;
}
.faq__icon::before{ width: 12px; height: 1.5px; }
.faq__icon::after{ width: 1.5px; height: 12px; }
.faq__trigger[aria-expanded="true"] .faq__icon::after{ transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq__panel{
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__panel p{
  padding: 0 8px 24px; font-size: 15.5px; line-height: 1.7; color: var(--coffee); max-width: 560px;
}

/* ---------- Company (dark panel) ---------- */
.company{ padding: 104px 0; }
.panel-dark{
  position: relative;
  background: var(--valhalla);
  border-radius: 32px;
  padding: 72px;
  overflow: hidden;
  color: var(--pearl);
}
.panel-dark__glow{
  position: absolute; width: 620px; height: 620px; right: -140px; top: -180px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(145,108,248,0.45) 0%, rgba(145,108,248,0) 66%);
  border-radius: 50%;
}
.panel-dark__inner{ position: relative; z-index: 1; }
.panel-dark__title{
  font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.5px; line-height: 1.1; margin: 14px 0 6px; max-width: 700px;
}
.panel-dark__sub{
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 1.15px;
  text-transform: uppercase; color: var(--melrose); margin-bottom: 16px;
}
.panel-dark__copy{ font-size: 16.5px; line-height: 1.7; color: var(--prelude); max-width: 700px; margin-bottom: 16px; }
.panel-dark__copy:last-of-type{ color: var(--logan); margin-bottom: 40px; }

.num-grid{
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(201,182,255,0.22); border-radius: 16px;
}
.num-grid__cell{ padding: 32px 26px; border-right: 1px solid rgba(201,182,255,0.22); }
.num-grid__cell:last-child{ border-right: none; }
.num-grid__cell .num{
  display: block; font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 1.75px; color: var(--melrose); margin-bottom: 8px;
}
.num-grid__cell h3{ font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 8px; letter-spacing: -0.3px; }
.num-grid__cell p{ font-size: 14.5px; line-height: 1.6; color: var(--logan); }

/* ---------- Waitlist ---------- */
.waitlist{ padding: 104px 0 120px; }
.waitlist-inner{
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--pearl);
  border: 1px solid var(--grain);
  border-radius: 28px;
  box-shadow: 0 40px 80px -34px rgba(36,22,64,0.18);
  padding: 64px 48px;
}
.waitlist-inner .eyebrow{ justify-content: center; }
.waitlist-inner .section__title{ margin-bottom: 36px; }
.waitlist-form{
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  text-align: left;
}
.waitlist-counter{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 48px;
}
.waitlist-counter__top{ display: flex; align-items: center; gap: 8px; }
.waitlist-counter .pulse-dot{ align-self: center; }
.waitlist-counter__number{
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--ebony);
}
.waitlist-counter__label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  color: var(--coffee);
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--ebony); color: var(--prelude); padding: 72px 0 34px; }
.footer-grid{ display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .logo--light{ margin-bottom: 14px; }
.footer-brand p{ font-size: 14px; }
.footer-col h2{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.75px;
  text-transform: uppercase; color: var(--melrose); margin-bottom: 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ font-size: 15px; color: var(--prelude); transition: color 0.2s; }
.footer-col a:hover{ color: var(--pearl); }
.footer-bottom{
  border-top: 1px solid rgba(201,182,255,0.2); padding-top: 22px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.15px;
  text-transform: uppercase; color: var(--logan);
}

/* ---------- Contact page ---------- */
.contact-hero{ padding: 88px 32px 120px; }
.section__head--center{
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.eyebrow--center{ justify-content: center; }
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact-grid--single{
  display: flex;
  justify-content: center;
}
.contact-grid--single .contact-form-card{
  width: 100%;
  max-width: 560px;
}
.contact-info{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--grain);
}
.contact-info__item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info__label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--studio);
}
.contact-info__value{
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ebony);
  transition: color 0.2s;
}
.contact-info__item:hover .contact-info__value{ color: var(--cornflower); }
.card{
  background: var(--pearl);
  border: 1px solid var(--grain);
  border-radius: 18px;
}
.contact-form-card{ padding: 40px; }
.contact-form{ display: flex; flex-direction: column; gap: 17px; }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field label{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.75px;
  text-transform: uppercase; color: var(--studio);
}
.field input, .field textarea{
  padding: 14px 16px; background: var(--cream); border: 1px solid var(--grain);
  border-radius: 12px; font-family: var(--font-body); font-size: 16px; color: var(--ebony);
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder{ color: #757575; }
.btn-block{ width: 100%; }
.form__status{ font-size: 14px; color: var(--studio); min-height: 20px; }

.contact-cards{ display: flex; flex-direction: column; gap: 16px; }
.contact-card{ padding: 27px 28px 28px; }
.contact-card h3{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.75px;
  text-transform: uppercase; color: var(--studio); font-weight: 500; margin-bottom: 10px;
}
.contact-card__value{ font-family: var(--font-display); font-size: 19px; color: var(--ebony); margin-bottom: 6px; }
.contact-card__hint{ font-size: 14.5px; color: var(--coffee); }

.cta-block{
  background: var(--ebony); border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.cta-block h3{ font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--pearl); letter-spacing: -0.4px; }
.cta-block p{ font-size: 14.5px; line-height: 1.6; color: var(--logan); }

@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.pop{
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pop.in-view{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.product-grid .pop:nth-child(1){ transition-delay: 0s; }
.product-grid .pop:nth-child(2){ transition-delay: 0.1s; }
.product-grid .pop:nth-child(3){ transition-delay: 0.2s; }
.cap-grid .pop:nth-child(1){ transition-delay: 0s; }
.cap-grid .pop:nth-child(2){ transition-delay: 0.1s; }
.cap-grid .pop:nth-child(3){ transition-delay: 0.2s; }
.contact-cards .pop:nth-child(1){ transition-delay: 0s; }
.contact-cards .pop:nth-child(2){ transition-delay: 0.08s; }
.contact-cards .pop:nth-child(3){ transition-delay: 0.16s; }
.contact-cards .pop:nth-child(4){ transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce){
  .pop{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
  [data-parallax]{ transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; padding-top: 48px; }
  .nav-links{ display: none; }
  .header-inner > .btn-primary{ display: none; }
  .hamburger{ display: flex; }
  .cap-grid{ grid-template-columns: 1fr; }
  .cap-col:not(:last-child){ border-right: none; border-bottom: 1px solid var(--grain); }
  .product-grid{ grid-template-columns: 1fr; }
  .faq__grid{ grid-template-columns: 1fr; }
  .faq__sticky{ position: relative; top: 0; }
  .num-grid{ grid-template-columns: repeat(2, 1fr); }
  .num-grid__cell:nth-child(2n){ border-right: none; }
  .panel-dark{ padding: 40px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  .container{ padding: 0 20px; }
  .header-inner{ padding: 14px 20px; }
  .hero{ padding: 32px 20px 40px; }
  .infra, .products, .faq, .company, .waitlist{ padding: 64px 0; }
  .section__head{ margin-bottom: 28px; }
  .cap-col, .product-card, .contact-form-card, .contact-card{ padding: 22px; }
  .panel-dark{ padding: 24px; border-radius: 20px; }
  .num-grid{ grid-template-columns: 1fr; }
  .num-grid__cell{ border-right: none !important; border-bottom: 1px solid rgba(201,182,255,0.22); }
  .num-grid__cell:last-child{ border-bottom: none; }
  .waitlist{ padding: 88px 0; }
  .waitlist-inner{ max-width: 100%; padding: 40px 24px; }
  .faq__card{ padding: 4px 16px; }
  .faq__trigger{ font-size: 16px; padding: 20px 6px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero__actions .btn{ flex: 1 1 auto; text-align: center; justify-content: center; }
  .ticket{ padding: 20px; }
  .rail__label{ font-size: 9px; }
  .footer-brand p{ max-width: none; }
  .mobile-drawer{ width: 86vw; }
}

@media (max-width: 380px){
  .hero__title{ font-size: 32px; }
  .section__title{ font-size: 28px; }
}
