@font-face {
  font-family: "AV Estiana Sans";
  src: url("../assets/fonts/AVEstiana-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AV Estiana Sans";
  src: url("../assets/fonts/AVEstiana-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff6600;
  --dark-grey-two: #090909;
  --white: #ffffff;
  --light-grey: #cccccc;
  --light-grey-two: #b0b0b0;
  --font-heading: "AV Estiana Sans", "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;
}

@property --bg-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #fd8925;
}

@property --bg-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #ff0c00;
}

@property --bg-hover {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(0, 0%, 100%, 0);
}

@property --bg-rotation {
  syntax: "<angle>";
  inherits: false;
  initial-value: 30deg;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--white);
  background: radial-gradient(circle at 20% 10%, #252525, transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(255, 102, 0, 0.15), transparent 35%),
    var(--dark-grey-two);
  font-family: var(--font-body);
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 14px;
  color: var(--light-grey);
}

a {
  color: var(--white);
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--white);
}

.logo-mark {
width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255, 102, 0, 0.25));

}

.logo-word {
  --bg-from: #fd8925;
  --bg-to: #ff0c00;
  --bg-hover: hsla(0, 0%, 100%, 0);
  --bg-rotation: 30deg;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease;
}

.logo:hover .logo-word {
  color: transparent;
  background: linear-gradient(to bottom, var(--bg-hover), var(--bg-hover)), linear-gradient(var(--bg-rotation), var(--bg-from), var(--bg-to));
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.lead {
  font-size: 1.02rem;
  color: var(--light-grey);
  max-width: 62ch;
}

.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
    font-size: 0.9rem;
  line-height: 1.2;
}

.btn-primary {
  --bg-from: #fd8925;
  --bg-to: #ff0c00;
  --bg-hover: hsla(0, 0%, 100%, 0);
  --bg-rotation: 30deg;
  color: var(--white);
  transition: --bg-from .3s ease, --bg-to .3s ease, --bg-hover .3s ease, --bg-rotation .3s ease;
  font-weight: normal;
  padding: 10px 20px;
  background: linear-gradient(to bottom, var(--bg-hover), var(--bg-hover)), linear-gradient(var(--bg-rotation), var(--bg-from), var(--bg-to));
}

.btn-primary:hover {
  --bg-hover: hsla(0,0%,100%,.12);
  --bg-rotation: 10deg;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.coming-soon-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.coming-soon-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.coming-soon-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1;
  margin-bottom: 12px;
}

.coming-soon-copy .lead {
  margin-bottom: 9px;
}

.coming-soon-copy .lead:last-of-type {
  margin-bottom: 0;
}

.coming-soon-logo {
  margin-bottom: 20px;
}

.coming-soon-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.coming-soon-panel {
  position: relative;
  overflow: hidden;
}

.coming-soon-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 58%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.22), transparent 70%);
  pointer-events: none;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 102, 0, 0.35);
  background: rgba(255, 102, 0, 0.1);
  color: var(--orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.launch-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.8);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.7);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.2);
  }
}

.coming-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 18px;
}

.services-title {
  margin: 2px 0 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}

.coming-stat {
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.coming-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
}

.coming-stat span {
  display: block;
  margin-top: 6px;
  color: var(--light-grey-two);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.coming-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  color: #ececec;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.coming-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.85);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.45);
}

.coming-list span:hover {
  border-color: rgba(255, 102, 0, 0.45);
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.14), rgba(255, 255, 255, 0.03));
  transform: translateX(2px);
}

/* Slot capacity indicator */
.slots-block {
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.slots-label {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.slots-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slots-track {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.slot {
  width: 2px;
  height: 20px;
  border-radius: 100px;
  transition: box-shadow 0.3s ease;
}

.slot--taken {
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.7);
}

.slot--free {
  background: rgba(255, 255, 255, 0.18);
}

.slots-status {
  margin: 0;
  font-size: 0.78rem;
  color: var(--light-grey-two);
  white-space: nowrap;
}

.slots-status strong {
  color: var(--white);
  font-weight: 600;
}

.slots-open {
  color: #5dd87a;
  font-weight: 600;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.5s ease;
}

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

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

  .coming-soon-section {
    min-height: auto;
  }
}
