.elementor-612 .elementor-element.elementor-element-4265a814{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-612 .elementor-element.elementor-element-60698bc1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4b8a7680 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root{
  --bg: #0e0e0e;
  --bg-card: #161616;
  --line: #262626;
  --accent: #EA1B25;
  --text: #F5F3F0;
  --text-muted: #8c8c8c;
  --display: 'Poppins', sans-serif;
  --body: 'Inter', sans-serif;
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
}

body{
  font-family: var(--body);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

#weave{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.wrap{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  padding: 48px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Brand mark */

.brand{
  margin-bottom: 56px;
}

.brand img{
  height: 100px;
  width: auto;
  display: block;
}

/* Hero */

.hero{
  margin-bottom: 48px;
}

.eyebrow{
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

h1{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 6.5vw, 62px);
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
  color: var(--text);
}

h1 .accent{
  color: var(--accent);
}

.lead{
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Countdown */

.countdown{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 460px;
  margin: 0 0 48px;
}

.countdown-unit{
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 6px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.countdown-value{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 5.5vw, 38px);
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.countdown-label{
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.launch-note{
  font-size: 13px;
  color: var(--text-muted);
  margin: -30px 0 40px;
}

.launch-note strong{
  color: var(--text);
  font-weight: 600;
}

.countdown-done{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 5vw, 34px);
  color: var(--accent);
  margin: 0 0 48px;
}

/* Contact */

.contact{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-item{
  background: var(--bg-card);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: background .25s ease;
}

a.contact-item:hover,
a.contact-item:focus-visible{
  background: #1c1c1c;
}

a.contact-item:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.contact-label{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value{
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}

.foot{
  color: #5a5a5a;
  font-size: 12px;
}

.foot p{
  margin: 0;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce){
  #weave{
    display: none;
  }
}

/* Responsive */

@media (max-width: 620px){
  .contact{
    grid-template-columns: 1fr;
  }
  .brand{
    margin-bottom: 44px;
  }
  .hero{
    margin-bottom: 40px;
  }
  .countdown{
    gap: 8px;
  }
  .launch-note{
    margin-top: -24px;
  }
}

@media (max-width: 380px){
  .countdown-unit{
    padding: 14px 4px 10px;
    border-radius: 10px;
  }
}/* End custom CSS */