/* ==========================================================
   THE TERA HUB — PREMIUM COMING SOON PAGE
   Brand colors:
   Deep Green: #002725
   Teal:       #0F7675
   ========================================================== */

:root {
  --deep: #002725;
  --teal: #0F7675;
  --teal-light: #7DD1CF;
  --cream: #F3F6F2;
  --white: #FFFFFF;
  --muted: #A9BFBC;
  --border: rgba(255, 255, 255, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(15,118,117,.22), transparent 34%),
    linear-gradient(135deg, #001C1A 0%, var(--deep) 55%, #003A37 100%);
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

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

.page-shell {
  position: relative;
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px clamp(22px, 5vw, 78px) 28px;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.glow-one {
  width: 420px;
  height: 420px;
  right: -200px;
  top: 90px;
  background: rgba(15,118,117,.13);
}

.glow-two {
  width: 280px;
  height: 280px;
  left: -130px;
  bottom: 110px;
  background: rgba(125,209,207,.05);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #DCEBE9;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 0 5px rgba(125,209,207,.08);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  min-height: 68vh;
  padding: clamp(68px, 9vw, 120px) 0 70px;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .21em;
}

h1 {
  max-width: 820px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6.6vw, 94px);
  line-height: .98;
  letter-spacing: -.035em;
}

h1 span {
  color: var(--teal-light);
  font-style: italic;
}

.intro {
  max-width: 650px;
  margin-top: 30px;
  color: #C7D8D5;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.8;
}

.launch-card {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 230px);
  gap: 28px;
  align-items: center;
  max-width: 650px;
  margin-top: 36px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
}

.launch-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.launch-card strong {
  font-size: 15px;
  font-weight: 600;
}

.progress-bar {
  height: 5px;
  overflow: hidden;
  background: rgba(255,255,255,.09);
  border-radius: 999px;
}

.progress-bar span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: inherit;
}

.progress-wrap small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  text-align: right;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: .25s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(15,118,117,.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #128986;
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.08);
}

.visual-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.015)),
    #043B38;
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 25px;
}

.visual-top,
.visual-bottom {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  display: flex;
  justify-content: space-between;
  color: #A9C6C3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.visual-top {
  top: 34px;
}

.visual-bottom {
  bottom: 34px;
}

.visual-center {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.visual-center img {
  width: 128px;
  margin-bottom: 24px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.15));
}

.visual-center p {
  color: #E5F1EF;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.45;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-one {
  width: 260px;
  height: 260px;
  top: 70px;
  right: -70px;
  background: radial-gradient(circle at 30% 30%, rgba(125,209,207,.32), rgba(15,118,117,.03));
}

.orb-two {
  width: 230px;
  height: 230px;
  left: -70px;
  bottom: 60px;
  border: 1px solid rgba(125,209,207,.22);
}

.about-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip > div {
  padding: 34px 34px 36px 0;
}

.about-strip > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--border);
}

.about-strip span {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.about-strip h3 {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}

.about-strip p {
  margin-top: 9px;
  color: #AFC4C1;
  font-size: 13px;
  line-height: 1.65;
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #8EA9A6;
  font-size: 11px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .visual-card {
    min-height: 430px;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-strip > div,
  .about-strip > div + div {
    padding: 26px 0;
    border-left: 0;
  }

  .about-strip > div + div {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding-inline: 18px;
  }

  .brand-name {
    font-size: 12px;
  }

  .status-pill {
    padding: 8px 10px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 52px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .launch-card {
    grid-template-columns: 1fr;
  }

  .progress-wrap small {
    text-align: left;
  }

  .visual-card {
    min-height: 360px;
  }

  .visual-center img {
    width: 100px;
  }

  .visual-center p {
    font-size: 20px;
  }

  footer {
    flex-direction: column;
  }
}
