:root {
  --bg: #07070a;
  --bg-soft: #0d0d12;
  --surface: #111117;
  --surface-light: #181820;

  --text: #ffffff;
  --text-soft: #a9a9b3;
  --text-muted: #70707c;

  --accent: #8b5cf6;
  --accent-light: #b794ff;

  --border: rgba(255, 255, 255, 0.08);

  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.12), transparent 38%),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ==============================
   NAVBAR
============================== */

.navbar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(calc(100% - 48px), var(--max-width));
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 100;
}

.logo,
.footer-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;

  color: var(--text-soft);
  font-size: 14px;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);

  transition: 0.25s ease;
}

.nav-cta:hover {
  background: white;
  color: black;
}


/* ==============================
   HERO
============================== */

.hero {
  position: relative;

  width: min(calc(100% - 48px), var(--max-width));
  min-height: 850px;

  margin: auto;
  padding-top: 150px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;

  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 5;

  max-width: 670px;
}

.hero-badge,
.eyebrow {
  display: inline-block;

  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.hero-badge {
  padding: 8px 13px;

  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 999px;

  background: rgba(139, 92, 246, 0.07);

  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(64px, 7vw, 105px);
  line-height: 0.94;
  letter-spacing: -6px;
  font-weight: 850;

  margin-bottom: 30px;
}

.hero h1 span,
.section-heading h2 span,
.creator-copy h2 span,
.about-copy h2 span {
  color: var(--accent-light);
}

.hero-description {
  max-width: 580px;

  color: var(--text-soft);

  font-size: 18px;
  line-height: 1.8;

  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 26px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.primary-button {
  background: white;
  color: black;
}

.primary-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  border: 1px solid var(--border);
  color: white;

  background: rgba(255, 255, 255, 0.035);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-platforms {
  margin-top: 20px;

  color: var(--text-muted);

  font-size: 12px;
}


/* ==============================
   HERO PHONES
============================== */

.hero-visual {
  position: relative;

  height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: absolute;

  width: 260px;
  height: 550px;

  padding: 8px;

  border-radius: 42px;

  background: linear-gradient(
    145deg,
    #45454f,
    #111116 25%,
    #08080b 70%,
    #393942
  );

  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone::before {
  content: "";

  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);

  width: 80px;
  height: 22px;

  background: #030304;
  border-radius: 20px;

  z-index: 10;
}

.phone-front {
  z-index: 4;

  transform: translate(40px, -5px) rotate(4deg);
}

.phone-back {
  z-index: 2;

  transform:
    translate(-125px, 30px)
    rotate(-10deg)
    scale(0.91);

  opacity: 0.58;
}

.phone-screen {
  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 35px;

  background: #09090c;
}

.mock-series {
  position: relative;

  width: 100%;
  height: 100%;

  padding: 40px 20px 25px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  overflow: hidden;
}

.mock-series::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 55% 25%,
      rgba(181, 127, 255, 0.45),
      transparent 26%
    ),
    radial-gradient(
      circle at 30% 55%,
      rgba(63, 29, 118, 0.65),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #17111e 0%,
      #100b17 45%,
      #060609 100%
    );
}

.mock-series::after {
  content: "";

  position: absolute;

  width: 170px;
  height: 300px;

  left: 50%;
  top: 22%;

  transform: translateX(-50%);

  border-radius: 90px 90px 30px 30px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.01)
    );

  filter: blur(1px);
}

.mock-content,
.mock-logo,
.mock-series-two > * {
  position: relative;
  z-index: 3;
}

.mock-logo {
  position: absolute;
  top: 46px;
  left: 22px;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
}

.mock-content span,
.mock-series-two span {
  color: var(--accent-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.mock-content h3,
.mock-series-two h3 {
  font-size: 25px;
  line-height: 1.08;

  margin: 8px 0 18px;
}

.mock-content button {
  border: 0;
  border-radius: 999px;

  background: white;
  color: black;

  padding: 10px 14px;

  font-weight: 700;
  font-size: 10px;
}

.mock-series-two {
  justify-content: flex-end;
}

.mock-series-two::before {
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(65, 98, 255, 0.4),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #0a111f,
      #090a10 55%,
      #040406
    );
}


/* ==============================
   HERO GLOWS
============================== */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(110px);

  pointer-events: none;
}

.hero-glow-one {
  width: 430px;
  height: 430px;

  right: 20px;
  top: 180px;

  background: rgba(115, 58, 219, 0.18);
}

.hero-glow-two {
  width: 300px;
  height: 300px;

  left: -180px;
  top: 260px;

  background: rgba(74, 36, 150, 0.09);
}


/* ==============================
   GENERIC SECTION
============================== */

.section {
  width: min(calc(100% - 48px), var(--max-width));

  margin: auto;
  padding: 150px 0;
}

.section-heading {
  max-width: 800px;

  margin-bottom: 70px;
}

.section-heading h2,
.creator-copy h2,
.about-copy h2,
.download-content h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -3px;

  margin: 15px 0 25px;
}

.section-heading p,
.creator-copy p,
.about-copy p,
.download-content p {
  max-width: 650px;

  color: var(--text-soft);

  font-size: 16px;
  line-height: 1.8;
}


/* ==============================
   FEATURES
============================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.feature-card {
  min-height: 300px;

  padding: 32px;

  border: 1px solid var(--border);
  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );

  transition:
    transform 0.3s ease,
    border 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(139, 92, 246, 0.25);
}

.feature-number {
  display: block;

  color: var(--accent-light);

  font-size: 12px;
  font-weight: 800;

  margin-bottom: 110px;
}

.feature-card h3 {
  font-size: 23px;

  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-soft);

  font-size: 14px;
}


/* ==============================
   CREATOR
============================== */

.creator-section {
  width: min(calc(100% - 48px), var(--max-width));

  margin: auto;
  padding: 60px 0 150px;
}

.creator-card {
  position: relative;

  min-height: 570px;

  padding: 70px;

  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;

  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 35px;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(139, 92, 246, 0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #111018,
      #09090d
    );

  overflow: hidden;
}

.creator-copy {
  position: relative;
  z-index: 4;
}

.creator-copy p {
  margin-bottom: 30px;
}

.creator-decoration {
  position: relative;

  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-decoration > span {
  position: relative;
  z-index: 2;

  font-size: clamp(60px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: -7px;

  color: rgba(255, 255, 255, 0.055);

  transform: rotate(-90deg);
}

.creator-orb {
  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #b794ff,
      #6432bd 35%,
      #17101f 70%
    );

  box-shadow:
    0 0 120px rgba(139, 92, 246, 0.22);
}


/* ==============================
   ABOUT
============================== */

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;

  align-items: center;
}

.about-logo {
  font-size: clamp(65px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -8px;

  color: rgba(255, 255, 255, 0.055);
}


/* ==============================
   DOWNLOAD
============================== */

.download-section {
  position: relative;

  width: min(calc(100% - 48px), var(--max-width));

  margin: 60px auto 120px;

  padding: 110px 50px;

  text-align: center;

  border: 1px solid var(--border);
  border-radius: 35px;

  background:
    radial-gradient(
      circle at 50% 120%,
      rgba(139, 92, 246, 0.22),
      transparent 45%
    ),
    #0c0c11;
}

.download-content {
  max-width: 750px;

  margin: auto;
}

.download-content p {
  margin: 0 auto;
}

.store-buttons {
  margin-top: 35px;

  display: flex;
  justify-content: center;

  gap: 12px;
}

.store-button {
  min-width: 170px;

  padding: 10px 20px;

  border: 1px solid var(--border);
  border-radius: 12px;

  text-align: left;

  background: rgba(255, 255, 255, 0.04);
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  color: var(--text-soft);

  font-size: 9px;
}

.store-button strong {
  font-size: 18px;
}


/* ==============================
   FOOTER
============================== */

footer {
  width: min(calc(100% - 48px), var(--max-width));

  margin: auto;
}

.footer-main {
  padding: 60px 0;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  border-top: 1px solid var(--border);
}

.footer-main p {
  margin-top: 10px;

  color: var(--text-muted);

  font-size: 13px;
}

.footer-links {
  display: flex;

  gap: 30px;

  color: var(--text-soft);

  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding: 25px 0 40px;

  border-top: 1px solid var(--border);

  color: var(--text-muted);

  font-size: 11px;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 950px) {

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;

    padding-top: 170px;

    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-number {
    margin-bottom: 70px;
  }

  .creator-card {
    grid-template-columns: 1fr;

    padding: 50px;
  }

  .creator-decoration {
    height: 350px;
  }

  .about {
    grid-template-columns: 1fr;

    gap: 30px;
  }

}


@media (max-width: 600px) {

  .navbar,
  .hero,
  .section,
  .creator-section,
  .download-section,
  footer {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .navbar {
    height: 75px;
  }

  .logo {
    font-size: 20px;
  }

  .nav-cta {
    padding: 8px 14px;
  }

  .hero {
    min-height: auto;

    padding-top: 135px;
  }

  .hero h1 {
    font-size: 58px;
    letter-spacing: -4px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual {
    height: 560px;
  }

  .phone {
    width: 215px;
    height: 455px;

    border-radius: 36px;
  }

  .phone-screen {
    border-radius: 29px;
  }

  .phone-front {
    transform: translate(30px, 0) rotate(4deg);
  }

  .phone-back {
    transform:
      translate(-80px, 30px)
      rotate(-10deg)
      scale(0.88);
  }

  .section {
    padding: 100px 0;
  }

  .section-heading h2,
  .creator-copy h2,
  .about-copy h2,
  .download-content h2 {
    font-size: 43px;

    letter-spacing: -2px;
  }

  .creator-card {
    padding: 35px 25px;

    border-radius: 25px;
  }

  .creator-orb {
    width: 220px;
    height: 220px;
  }

  .download-section {
    padding: 80px 25px;

    border-radius: 25px;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .footer-main {
    flex-direction: column;

    gap: 35px;
  }

  .footer-links {
    flex-direction: column;

    gap: 12px;
  }

}


/* ==========================================
   LOGIN
========================================== */

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
}

.login-card {
  width: 100%;
  max-width: 480px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );

  border: 1px solid var(--border);
  border-radius: 28px;

  padding: 42px;
}

.login-badge {
  display: inline-block;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(139,92,246,.08);

  border: 1px solid rgba(139,92,246,.20);

  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.login-card h1 {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.login-card p {
  color: var(--text-soft);
  margin-bottom: 32px;
}

.login-field {
  margin-bottom: 20px;
}

.login-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

.login-field input {
  width: 100%;

  height: 56px;

  border-radius: 16px;

  border: 1px solid var(--border);

  background: var(--surface);

  color: white;

  padding: 0 18px;

  outline: none;

  transition: .2s;
}

.login-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,.12);
}

.login-error {
  display: none;
  margin-top: 8px;
  color: #ff6b81;
  font-size: 12px;
}

.login-links {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: 8px 0 30px;
}

.login-links a {
  font-size: 13px;
  color: var(--text-soft);
}

.login-links a:hover {
  color: white;
}

.login-button {
  width: 100%;
}

.login-footer {
  margin-top: 28px;

  text-align: center;

  color: var(--text-soft);

  font-size: 14px;
}

.login-footer a {
  color: white;
  font-weight: 600;
}

.login-footer a:hover {
  color: var(--accent-light);
}

/* =========================================================
   DELETE ACCOUNT
   ========================================================= */

.account-info {
    margin-top: 32px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.account-info span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.account-info strong {
    display: block;
    font-size: 15px;
    color: #ffffff;
    word-break: break-word;
}


/* Warning */

.delete-warning {
    margin-bottom: 28px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 120, 120, 0.18);
    border-radius: 14px;
    background: rgba(255, 80, 80, 0.045);
}

.delete-warning strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #ffffff;
}

.delete-warning p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}


/* Password confirmation */

#confirmSection label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

#confirmSection input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
}


/* Error */

.form-error {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #ff8f8f;
}


/* Delete button */

.delete-button {
    margin-top: 4px;
}


/* Cancel button */

#cancelButton {
    margin-top: 10px;
}


/* Success */

.success-message {
    margin-top: 24px;
    margin-bottom: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(100, 255, 190, 0.18);
    border-radius: 14px;
    background: rgba(100, 255, 190, 0.05);
    color: #7fffc4;
    font-size: 14px;
    line-height: 1.5;
}


/* Mobile */

@media (max-width: 600px) {

    .account-info,
    .delete-warning {
        padding: 16px;
    }

    .account-info strong {
        font-size: 14px;
    }

}

/* =========================================================
   DELETE ACCOUNT - FOOTER
   ========================================================= */

body:has(#confirmSection) .footer-main {
    width: 100%;
    max-width: 1504px;
    margin: 0 auto;
    padding: 48px 0;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

body:has(#confirmSection) .footer-logo {
    margin: 0;
}

body:has(#confirmSection) .footer-main > div:first-child p {
    display: none;
}

body:has(#confirmSection) .footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

body:has(#confirmSection) .footer-links a {
    margin: 0;
}

body:has(#confirmSection) .footer-bottom {
    display: none;
}

@media (max-width: 768px) {

    body:has(#confirmSection) .footer-main {
        padding: 36px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    body:has(#confirmSection) .footer-links {
        flex-wrap: wrap;
        gap: 18px 24px;
    }

}

