*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e8293a;
  --red-dim: rgba(232, 41, 58, 0.12);
  --red-border: rgba(232, 41, 58, 0.22);
  --bg: #0a090f;
  --bg2: #0f0e16;
  --bg3: #141320;
  --line: rgba(255, 255, 255, 0.06);
  --line2: rgba(255, 255, 255, 0.1);
  --muted: rgba(255, 255, 255, 0.42);
  --body: rgba(255, 255, 255, 0.64);
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}
::selection {
  background: var(--red);
  color: #fff;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px; /* thoda bada = premium feel */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  background: rgba(10, 9, 15, 0.75);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 60px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 0, 80, 0.4));
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #fff;
}

.logo span {
  color: var(--red);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-center li {
  list-style: none;
}

.nav-center a {
  font-size: 15px;
  font-weight: 500;
  color: #a1a1aa !important;
  text-decoration: none !important;
  transition: 0.3s;
  letter-spacing: 0.3px;
  position: relative;
}

.nav-center a:visited,
.nav-center a:active {
  color: #9ca3af;
  text-decoration: none;
}

.nav-center a:hover {
  color: #fff !important;
}

/* subtle underline animation */
.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--red);
  transition: 0.3s;
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link-plain {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  transition: 0.2s;
}

.nav-link-plain:hover {
  color: #fff;
}

.nav-pill {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3b3b, #ff1f1f);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 50, 50, 0.35);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}
.ham span {
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  display: block;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 41, 58, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 30%,
    black 20%,
    transparent 75%
  );
}

.status-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.03);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.status-text {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.8px;
  font-weight: 400;
}
.status-text b {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-h {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-h em {
  font-style: italic;
  color: var(--red);
  display: block;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--body);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 52px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-red {
  padding: 14px 36px;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.25s;
}
.btn-red:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-outline {
  padding: 14px 36px;
  border-radius: 50px;
  background: transparent;
  color: var(--body);
  border: 1px solid var(--line2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.hero-meta {
  margin-top: 80px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.meta-item {
  padding: 16px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.meta-item:last-child {
  border-right: none;
}
.meta-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.meta-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 400;
}

.statement {
  padding: 120px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.statement h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--body);
}
.statement h2 em {
  color: #fff;
  font-weight: 600;
  font-style: italic;
}
.statement h2 span {
  color: var(--red);
  font-style: italic;
}

.features {
  padding: 0 24px 120px;
  max-width: 1120px;
  margin: 0 auto;
}
.sec-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}
.sec-title em {
  font-style: italic;
  color: var(--red);
}

.fg {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.fc {
  background: var(--bg2);
  padding: 40px 36px;
  transition: background 0.3s;
}
.fc:hover {
  background: var(--bg3);
}
.fc.w4 {
  grid-column: span 4;
}
.fc.w6 {
  grid-column: span 6;
}
.fc.w8 {
  grid-column: span 8;
}
.fc.w12 {
  grid-column: span 12;
}
.fc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.fc-icon {
  font-size: 28px;
  margin-bottom: 24px;
  display: block;
}
.fc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.fc-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  font-weight: 300;
}
.fc.sos-fc {
  background: var(--bg3);
}
.sos-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
}
.sos-ring-outer {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(232, 41, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ringBreath 3s ease-in-out infinite;
}
@keyframes ringBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
.sos-ring-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.how {
  padding: 120px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-inner {
  max-width: 960px;
  margin: 0 auto;
}
.how-header {
  margin-bottom: 72px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.step-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.step-line {
  width: 32px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
  margin-bottom: 20px;
}
.step-t {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-d {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  font-weight: 300;
}

.vs {
  padding: 120px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.vs-header {
  margin-bottom: 64px;
}
.vs-table {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.vs-head-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
.vs-head-cell {
  padding: 20px 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.vs-head-cell.us-col {
  color: #fff;
}
.vs-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.vs-row:last-child {
  border-bottom: none;
}
.vs-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.vs-cell {
  padding: 18px 28px;
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  display: flex;
  align-items: center;
}
.vs-cell.feat {
  color: #fff;
  font-weight: 400;
}
.tick {
  color: var(--red);
  font-size: 15px;
}
.cross {
  color: rgba(255, 255, 255, 0.18);
  font-size: 15px;
}
.vs-highlight {
  background: rgba(232, 41, 58, 0.03);
}

.emotional {
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.emotional-inner {
  max-width: 680px;
  margin: 0 auto;
}
.emotional h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--body);
  margin-bottom: 32px;
}
.emotional h2 em {
  color: #fff;
  font-style: italic;
}
.emotional p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}
.emotional-divider {
  width: 40px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
  margin: 40px auto;
}

.voices {
  padding: 0 24px 120px;
  max-width: 1000px;
  margin: 0 auto;
}
.voices-header {
  margin-bottom: 56px;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.voice {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  background: var(--bg2);
  transition: border-color 0.3s;
}
.voice:hover {
  border-color: var(--red-border);
}
.voice-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}
.voice-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}
.voice-role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.waitlist {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 41, 58, 0.07) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.waitlist h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.waitlist h2 em {
  font-style: italic;
  color: var(--red);
}
.waitlist p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.wl-form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.wl-row {
  display: flex;
  gap: 10px;
}
.wl-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line2);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.wl-input::placeholder {
  color: var(--muted);
}
.wl-input:focus {
  border-color: rgba(232, 41, 58, 0.45);
}
.wl-btn {
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 12px 40px rgba(232, 41, 58, 0.25);
}
.wl-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.wl-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.wl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  border: 1px solid rgba(232, 41, 58, 0.25);
  border-radius: 16px;
  background: rgba(232, 41, 58, 0.05);
}
.wl-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  color: #fff;
}
.wl-success-sub {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
}
.wl-share-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.wl-share-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
}
.wl-wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d166;
}
.wl-copy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line2);
  color: var(--body);
}

footer {
  border-top: 1px solid var(--line);
  padding: 56px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.f-brand .logo {
  font-size: 18px;
  margin-bottom: 14px;
  display: block;
}
.f-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 240px;
}
.f-col h5 {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-col ul a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.f-col ul a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}
.footer-love {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}
.footer-love span {
  color: var(--red);
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mob-menu.open {
  display: flex;
}
.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
}
.mob-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-menu a:hover {
  color: var(--red);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

@media (max-width: 1024px) {
  .fc.w4 {
    grid-column: span 6;
  }
  .fc.w8 {
    grid-column: span 6;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-center,
  .nav-link-plain,
  .nav-pill {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero-meta {
    flex-direction: column;
    border-radius: 14px;
  }
  .meta-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .meta-item:last-child {
    border-bottom: none;
  }
  .fg {
    background: var(--bg);
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .fc.w4,
  .fc.w6,
  .fc.w8,
  .fc.w12 {
    grid-column: span 1;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .vs-head-row,
  .vs-row {
    grid-template-columns: 1.5fr 0.5fr 0.5fr;
  }
  .voices-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  footer {
    padding: 40px 24px 32px;
  }
  .wl-row {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  nav {
    height: 56px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .vs-head-cell:last-child,
  .vs-cell:last-child {
    display: none;
  }
  .vs-head-row,
  .vs-row {
    grid-template-columns: 2fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    display: none;
  }
  .wl-share-row {
    flex-direction: column;
  }
}
