@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background: #050505;
  --surface: #0d0d0f;
  --surface-light: #151518;
  --red: #e50914;
  --red-bright: #ff2733;
  --red-dark: #7f0008;
  --white: #f7f7f7;
  --muted: #a8a8ad;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 15%, rgba(229, 9, 20, 0.13), transparent 30%),
    var(--background);
  color: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 7%;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 39, 51, 0.65);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.3);
  color: white;
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 700;
}
.brand-logo-image {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.3);
}

.hero-logo-image {
  width: min(420px, 78vw);
  border-radius: 28%;
  object-fit: cover;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.65),
    0 0 55px rgba(229, 9, 20, 0.25);
}
.brand-name {
  font-family: "Cinzel", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-name span {
  color: var(--red-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #d7d7da;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--red-bright);
  content: "";
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 27px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 130px 7% 80px;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.16);
  filter: blur(120px);
  pointer-events: none;
}

.hero-content,
.hero-logo {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Cinzel", serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -2px;
}

.hero h1 span {
  display: block;
  color: var(--red-bright);
  text-shadow: 0 0 30px rgba(229, 9, 20, 0.32);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.primary-button {
  border: 1px solid var(--red-bright);
  background: linear-gradient(135deg, var(--red-bright), #ad0009);
  color: white;
  box-shadow: 0 12px 35px rgba(229, 9, 20, 0.24);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(229, 9, 20, 0.36);
}

.secondary-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: white;
}

.secondary-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.hero-logo {
  display: flex;
  min-height: 520px;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.logo-symbol {
  position: relative;
  display: grid;
  width: min(330px, 70vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 39, 51, 0.18);
  border-radius: 34%;
  background:
    radial-gradient(circle, rgba(229, 9, 20, 0.18), transparent 55%),
    linear-gradient(145deg, #121214, #070708);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.65),
    inset 0 0 55px rgba(229, 9, 20, 0.06);
}

.logo-letter {
  background: linear-gradient(180deg, #ff2934 0%, #b30009 65%, #720006 100%);
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", serif;
  font-size: clamp(175px, 22vw, 245px);
  font-weight: 700;
  line-height: 1;
  filter: drop-shadow(0 0 22px rgba(229, 9, 20, 0.38));
}

.keyhole {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 68px;
  height: 120px;
  transform: translate(-50%, -50%);
}

.keyhole-circle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
  border: 4px solid var(--red-bright);
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.55);
}

.keyhole-body {
  position: absolute;
  top: 49px;
  left: 50%;
  width: 48px;
  height: 67px;
  transform: translateX(-50%);
  border-right: 4px solid var(--red-bright);
  border-bottom: 4px solid var(--red-bright);
  border-left: 4px solid var(--red-bright);
  background: #050505;
  clip-path: polygon(34% 0, 66% 0, 100% 100%, 0 100%);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 0.25);
}

.logo-wave {
  display: flex;
  align-items: center;
  gap: 7px;
}

.logo-wave span {
  display: block;
  width: 5px;
  border-radius: 10px;
  background: var(--red-bright);
  box-shadow: 0 0 14px rgba(229, 9, 20, 0.75);
}

.logo-wave span:nth-child(1) {
  height: 32px;
}

.logo-wave span:nth-child(2) {
  height: 64px;
}

.logo-wave span:nth-child(3) {
  height: 44px;
}

.left-wave {
  margin-right: 20px;
}

.right-wave {
  margin-left: 20px;
  transform: scaleX(-1);
}

.hero-logo h2 {
  width: 100%;
  margin-top: 26px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 1px;
}

.hero-logo h2 strong {
  color: var(--red-bright);
}

.section {
  padding: 105px 7%;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.coming-soon-card h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.16;
}

.features {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #09090a, #050505);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 270px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  background: linear-gradient(145deg, var(--surface-light), var(--surface));
  box-shadow: var(--shadow);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 39, 51, 0.45);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(255, 39, 51, 0.35);
  border-radius: 13px;
  background: rgba(229, 9, 20, 0.09);
  color: var(--red-bright);
  font-size: 21px;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 19px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

.about-card {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 65px;
  margin: auto;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(34px, 6vw, 75px);
  background:
    radial-gradient(circle at 85% 20%, rgba(229, 9, 20, 0.12), transparent 30%),
    linear-gradient(145deg, #111113, #09090a);
  box-shadow: var(--shadow);
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.about-quote {
  border-left: 3px solid var(--red-bright);
  padding: 25px 0 25px 30px;
}

.about-quote span {
  color: var(--red-bright);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 0.5;
}

.about-quote p {
  margin-top: 15px;
  font-family: "Cinzel", serif;
  font-size: 24px;
  line-height: 1.45;
}

.coming-soon {
  background:
    radial-gradient(circle at center, rgba(229, 9, 20, 0.11), transparent 38%),
    #070708;
}

.coming-soon-card {
  max-width: 900px;
  margin: auto;
  border: 1px solid rgba(255, 39, 51, 0.22);
  border-radius: 28px;
  padding: clamp(40px, 7vw, 85px);
  background: rgba(15, 15, 17, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
}

.coming-soon-card > p:not(.eyebrow, .notification-message) {
  max-width: 650px;
  margin: 20px auto 30px;
  color: var(--muted);
  font-size: 17px;
}

.coming-soon-card button {
  margin-top: 5px;
}

.notification-message {
  min-height: 24px;
  margin-top: 20px;
  color: #63e68a;
  font-size: 14px;
  font-weight: 600;
}

.contact {
  background: #050505;
}

.contact-card {
  max-width: 760px;
  margin: auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  background: var(--surface);
  text-align: center;
}

.contact-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.contact-card a {
  color: var(--red-bright);
  font-size: 18px;
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 38px 7%;
  border-top: 1px solid var(--border);
  background: #030303;
}

.footer strong {
  font-family: "Cinzel", serif;
  font-size: 20px;
}

.footer p {
  color: #77777c;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--red-bright);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 150px;
    text-align: center;
  }

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

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

  .hero-logo {
    min-height: 480px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 5, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 17px 7%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding-right: 5%;
    padding-left: 5%;
  }

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

  .hero {
    padding: 125px 5% 65px;
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-logo {
    min-height: 420px;
  }

  .logo-symbol {
    width: 245px;
  }

  .logo-letter {
    font-size: 180px;
  }

  .logo-wave {
    display: none;
  }

  .section {
    padding: 80px 5%;
  }

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

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

  .about-card,
  .coming-soon-card {
    border-radius: 20px;
    padding: 32px 24px;
  }

  .about-quote p {
    font-size: 20px;
  }

  .contact-card {
    padding: 30px 20px;
  }
}