
:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --black-3: #111111;
  --panel: rgba(16, 16, 16, .72);
  --panel-2: rgba(25, 25, 25, .58);
  --gold: #d9a83e;
  --gold-2: #ffcf68;
  --gold-deep: #8d5d10;
  --silver: #f3f3f3;
  --silver-2: #aeb2b8;
  --muted: #a7a7a7;
  --line: rgba(216, 168, 62, .22);
  --shadow-gold: 0 0 60px rgba(216, 168, 62, .16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(216,168,62,.07), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(216,168,62,.055), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 45%, #040404 100%);
  color: var(--silver);
  font-family: "Montserrat", sans-serif;
}

::selection {
  background: var(--gold);
  color: #000;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .045;
  background-image:
    radial-gradient(rgba(255,255,255,.85) .45px, transparent .45px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
}

.ambient {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
  opacity: .16;
}

.ambient-one {
  background: #8f5d08;
  left: -16rem;
  top: 20%;
}

.ambient-two {
  background: #6a6a6a;
  right: -20rem;
  top: 52%;
}

/* NAV */
.ibe-nav {
  min-height: 76px;
  background: rgba(4,4,4,.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.055);
  transition: .3s ease;
}

.ibe-nav.scrolled {
  background: rgba(4,4,4,.9);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.nav-logo {
  width: 215px;
  max-height: 58px;
  object-fit: contain;
}

.ibe-nav .nav-link {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: .25s ease;
}

.ibe-nav .nav-link:hover {
  color: var(--gold-2);
}

.navbar-toggler {
  color: var(--gold-2);
  font-size: 1.35rem;
}

/* BUTTONS */
.btn-gold {
  --bs-btn-color: #080808;
  --bs-btn-bg: #d3a039;
  --bs-btn-border-color: #e8bb5b;
  --bs-btn-hover-color: #050505;
  --bs-btn-hover-bg: #f0c861;
  --bs-btn-hover-border-color: #ffde82;
  --bs-btn-active-bg: #be8a27;
  --bs-btn-active-border-color: #d5a442;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 10px 34px rgba(216,168,62,.15);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -30%;
  width: 25%;
  transform: rotate(18deg);
  background: rgba(255,255,255,.48);
  filter: blur(4px);
  transition: left .55s ease;
}

.btn-gold:hover::after {
  left: 118%;
}

.btn-glass {
  color: #f1f1f1;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  color: #fff;
  border-color: rgba(216,168,62,.6);
  background: rgba(216,168,62,.06);
  box-shadow: var(--shadow-gold);
}

/* HERO */
.hero {
  padding-top: 100px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 48%, rgba(0,0,0,.68) 100%),
    radial-gradient(circle at 72% 45%, rgba(216,168,62,.12), transparent 28%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent 5%, black 38%, transparent 94%);
}

.hero-content {
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #d0ad68;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .28em;
  margin-bottom: 18px;
}

.eyebrow-line {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-logo-wrap {
  margin-bottom: 4px;
}

.hero-logo {
  width: min(760px, 100%);
  filter:
    drop-shadow(0 14px 20px rgba(0,0,0,.55))
    drop-shadow(0 0 18px rgba(216,168,62,.11));
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.1rem, 4.1vw, 4.4rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.025em;
  margin: 0 0 22px;
  color: #f2f2f2;
  text-shadow: 0 8px 32px rgba(0,0,0,.45);
}

.metal-word,
.section-heading h2 span,
.display-title span {
  background: linear-gradient(
    180deg,
    #fff3c5 0%,
    #ffc85f 26%,
    #d69c2f 50%,
    #fff1b1 72%,
    #a26b15 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(216,168,62,.15));
}

.hero-copy {
  max-width: 680px;
  color: rgba(255,255,255,.66);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  letter-spacing: .16em;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8bb5b;
  box-shadow: 0 0 16px #e8bb5b;
  animation: pulse 2s infinite;
}

.status-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.17);
}

.crest-stage {
  position: relative;
  width: min(520px, 92vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.crest-image {
  position: relative;
  z-index: 3;
  width: 86%;
  animation: float 7s ease-in-out infinite;
  filter:
    drop-shadow(0 28px 50px rgba(0,0,0,.65))
    drop-shadow(0 0 30px rgba(216,168,62,.17));
}

.crest-halo {
  position: absolute;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,168,62,.22), rgba(216,168,62,.05) 45%, transparent 70%);
  filter: blur(28px);
  animation: halo 5s ease-in-out infinite;
}

.crest-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(216,168,62,.25);
}

.crest-ring-one {
  width: 90%;
  height: 90%;
  animation: spin 30s linear infinite;
}

.crest-ring-one::before,
.crest-ring-two::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 15px var(--gold);
}

.crest-ring-one::before {
  left: 12%;
  top: 9%;
}

.crest-ring-two {
  width: 72%;
  height: 72%;
  border-color: rgba(255,255,255,.11);
  animation: spinReverse 22s linear infinite;
}

.crest-ring-two::before {
  right: 5%;
  bottom: 23%;
  background: #ececec;
  box-shadow: 0 0 12px rgba(255,255,255,.45);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(216,168,62,.08);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  width: 52vw;
  height: 52vw;
  right: -25vw;
  top: 2vh;
}

.orbit-b {
  width: 34vw;
  height: 34vw;
  right: -12vw;
  top: 22vh;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(216,168,62,.25);
  background: rgba(10,10,10,.62);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  letter-spacing: .04em;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.floating-chip i {
  color: var(--gold-2);
}

.chip-one { top: 16%; right: -2%; animation: floatSmall 5.2s ease-in-out infinite; }
.chip-two { bottom: 17%; right: 1%; animation: floatSmall 6.4s ease-in-out infinite .7s; }
.chip-three { left: -3%; bottom: 28%; animation: floatSmall 5.8s ease-in-out infinite 1.2s; }

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.46);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: .62rem;
  letter-spacing: .2em;
}

.scroll-cue i {
  color: var(--gold);
  animation: bounce 1.8s infinite;
}

/* SPARKS */
.spark {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ffd06b;
  box-shadow: 0 0 9px rgba(255,208,107,.8);
  animation: drift linear infinite;
  opacity: .5;
}

/* SECTIONS */
.section-pad {
  padding: 110px 0;
  position: relative;
}

.section-kicker {
  display: inline-block;
  color: #bd9650;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  margin-bottom: 13px;
}

.section-heading h2,
.display-title {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  letter-spacing: -.025em;
}

.section-heading p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.54);
  line-height: 1.8;
}

.text-secondary-soft {
  color: rgba(255,255,255,.52) !important;
  line-height: 1.8;
}

.glass-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.075);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: .35s ease;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,168,62,.75), transparent);
  opacity: .35;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,168,62,.28);
  box-shadow: 0 22px 45px rgba(0,0,0,.35), 0 0 40px rgba(216,168,62,.06);
}

.icon-shell {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #efc669;
  font-size: 1.35rem;
  border: 1px solid rgba(216,168,62,.25);
  background: linear-gradient(145deg, rgba(216,168,62,.13), rgba(216,168,62,.02));
}

.glass-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: #e3c47e;
}

.glass-card p {
  color: rgba(255,255,255,.52);
  line-height: 1.75;
  margin-bottom: 0;
  font-size: .92rem;
}

/* NETWORK */
.network-section {
  background:
    radial-gradient(circle at 50% -5%, rgba(216,168,62,.075), transparent 28%),
    rgba(0,0,0,.14);
  border-top: 1px solid rgba(216,168,62,.09);
  border-bottom: 1px solid rgba(216,168,62,.09);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.channel-card {
  position: relative;
  min-height: 290px;
  padding: 30px 26px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  transition: .35s ease;
}

.channel-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -85px;
  bottom: -85px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,168,62,.2), transparent 70%);
  transition: .4s ease;
}

.channel-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216,168,62,.32);
}

.channel-card:hover::after {
  transform: scale(1.45);
}

.channel-number {
  color: rgba(255,255,255,.2);
  font-size: .72rem;
  letter-spacing: .18em;
}

.channel-icon {
  font-size: 1.8rem;
  color: var(--gold-2);
  margin: 33px 0 20px;
}

.channel-card h3 {
  font-family: "Cinzel", serif;
  color: #f0d48c;
  font-size: 1.1rem;
}

.channel-card p {
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  font-size: .88rem;
  min-height: 72px;
}

.channel-tag {
  color: rgba(216,168,62,.7);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
}

/* NOTIFY */
.notify-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.launch-panel {
  position: relative;
  padding: clamp(36px, 6vw, 74px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(216,168,62,.16);
  background:
    radial-gradient(circle at 15% 50%, rgba(216,168,62,.10), transparent 26%),
    linear-gradient(145deg, rgba(22,22,22,.88), rgba(7,7,7,.92));
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.launch-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.018) 48%, transparent 54%);
}

.launch-glow {
  position: absolute;
  width: 30rem;
  height: 30rem;
  right: -10rem;
  top: -14rem;
  border-radius: 50%;
  background: rgba(216,168,62,.09);
  filter: blur(90px);
}

.mail-art {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #dbaf52;
  font-size: 6rem;
  background:
    radial-gradient(circle, rgba(216,168,62,.11), rgba(216,168,62,.015) 58%, transparent 70%);
}

.mail-art > i {
  filter: drop-shadow(0 0 25px rgba(216,168,62,.12));
}

.mail-orbit {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(216,168,62,.28);
  animation: spin 24s linear infinite;
}

.mail-crown {
  position: absolute;
  right: 20px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #0a0a0a;
  font-size: 1.2rem;
  background: linear-gradient(145deg, #ffdf7e, #ac751a);
  border: 3px solid #1c1c1c;
  box-shadow: 0 8px 25px rgba(0,0,0,.4);
}

.notify-form .input-group {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.notify-form .input-group-text,
.notify-form .form-control {
  background: transparent;
  border: 0;
  color: #fff;
}

.notify-form .input-group-text {
  color: #b99755;
  padding-left: 20px;
}

.notify-form .form-control {
  box-shadow: none;
  font-size: .95rem;
  min-height: 60px;
}

.notify-form .form-control::placeholder {
  color: rgba(255,255,255,.34);
}

.notify-form .form-text {
  color: rgba(255,255,255,.33);
}

.form-message {
  min-height: 24px;
  font-size: .9rem;
}

.form-message.success {
  color: #e0bd6e;
}

.form-message.error {
  color: #e49c9c;
}

.launch-meter .small {
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.meter-track {
  margin-top: 10px;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.04);
}

.meter-fill {
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #77500e, #e9b54c, #ffe090);
  box-shadow: 0 0 18px rgba(216,168,62,.32);
  position: relative;
}

.meter-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: meterShine 2.5s infinite;
}

/* FOOTER */
.ibe-footer {
  padding: 48px 0 26px;
  border-top: 1px solid rgba(216,168,62,.12);
  background: rgba(0,0,0,.42);
}

.footer-logo {
  width: 225px;
  max-height: 70px;
  object-fit: contain;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #c6a45f;
  border: 1px solid rgba(216,168,62,.22);
  background: rgba(255,255,255,.02);
  text-decoration: none;
  transition: .25s ease;
}

.socials a:hover {
  color: #111;
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(216,168,62,.15);
}

.footer-powered {
  color: #b79652;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent);
  margin: 34px 0 20px;
}

.footer-bottom {
  color: rgba(255,255,255,.28);
}

/* REVEAL */
.reveal-up,
.reveal-scale {
  opacity: 0;
}

body.loaded .reveal-up {
  animation: revealUp .85s cubic-bezier(.2,.7,.2,1) forwards;
}

body.loaded .reveal-scale {
  animation: revealScale 1.1s cubic-bezier(.2,.7,.2,1) .3s forwards;
}

.delay-1 { animation-delay: .10s !important; }
.delay-2 { animation-delay: .19s !important; }
.delay-3 { animation-delay: .28s !important; }
.delay-4 { animation-delay: .37s !important; }
.delay-5 { animation-delay: .46s !important; }

/* KEYFRAMES */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes revealScale {
  from { opacity: 0; transform: scale(.9); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes floatSmall {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes halo {
  0%,100% { transform: scale(.96); opacity: .65; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes pulse {
  0%,100% { opacity: .55; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes drift {
  from { transform: translateY(20vh) translateX(0); opacity: 0; }
  15% { opacity: .55; }
  75% { opacity: .22; }
  to { transform: translateY(-120vh) translateX(25px); opacity: 0; }
}

@keyframes meterShine {
  to { transform: translateX(100%); }
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .channel-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 991.98px) {
  .ibe-nav .navbar-collapse {
    margin-top: 10px;
    padding: 18px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(7,7,7,.96);
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-status {
    justify-content: center;
  }

  .crest-stage {
    width: min(470px, 90vw);
  }

  .floating-chip {
    font-size: .65rem;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 82px 0;
  }

  .nav-logo {
    width: 175px;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-title {
    margin-top: 12px;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .channel-card {
    min-height: auto;
  }

  .mail-art {
    width: 190px;
    height: 190px;
    font-size: 4.2rem;
  }

  .mail-crown {
    width: 48px;
    height: 48px;
  }

  .notify-form .input-group {
    display: flex;
    flex-wrap: wrap;
    border: 0;
    background: transparent;
  }

  .notify-form .input-group-text {
    display: none;
  }

  .notify-form .form-control {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 10px !important;
    background: rgba(0,0,0,.42);
    padding: 0 18px;
  }

  .notify-form .btn {
    width: 100%;
    min-height: 54px;
    border-radius: 10px !important;
  }

  .floating-chip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


/* SIGNUP SECURITY / CONSENT */
.ibe-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.consent-check {
  color: rgba(255,255,255,.52);
  font-size: .79rem;
  line-height: 1.55;
}

.consent-check .form-check-input {
  background-color: rgba(255,255,255,.03);
  border-color: rgba(216,168,62,.42);
  box-shadow: none;
}

.consent-check .form-check-input:checked {
  background-color: #d3a039;
  border-color: #d3a039;
}

.notify-form.is-busy button[type="submit"] {
  pointer-events: none;
  opacity: .72;
}
