:root {
  --bg: #090a0d;
  --bg-soft: #10131a;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(255, 255, 255, 0.24);
  --text: #f4f0e8;
  --muted: #a7adba;
  --faint: #777f90;
  --teal: #55d6c2;
  --gold: #e7bc73;
  --rose: #e891a8;
  --violet: #9f8cff;
  --ink: #11131a;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(85, 214, 194, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(232, 145, 168, 0.1), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(85, 214, 194, 0.32);
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 13, 0.76);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}

.nav,
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--border);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.65rem 0.85rem;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.nav-links .nav-cta {
  background: var(--text);
  color: var(--ink);
  font-weight: 700;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: #ffffff;
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.icon-button {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.menu-toggle {
  display: none;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.section,
.section-band {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 5.5rem;
}

.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.62) 1px, transparent 1.6px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 88px 88px, 96px 96px, 96px 96px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  opacity: 0.42;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.7rem, 5.2vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 42rem;
  color: #ccd3df;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  min-height: 3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.1rem;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), #d9ffe9);
  color: #061310;
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--border);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 42rem;
  margin: 2rem 0 0;
}

.proof-strip div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.9rem;
}

.proof-strip dt {
  color: var(--faint);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-strip dd {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-weight: 800;
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.orbit-panel {
  width: min(100%, 28rem);
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 15% 20%, rgba(85, 214, 194, 0.18), transparent 12rem),
    radial-gradient(circle at 92% 18%, rgba(232, 145, 168, 0.16), transparent 13rem);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.4rem);
}

.phone-shell {
  width: min(78%, 18.5rem);
  margin: 0 auto;
  aspect-ratio: 1080 / 1939;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  background: #06070a;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.phone-shell img {
  width: 100%;
  height: 100%;
  background: #06070a;
  object-fit: contain;
  object-position: center top;
}

.feature-caption {
  min-height: 8.6rem;
  padding: 1.2rem 0.35rem 0;
  text-align: center;
}

.feature-caption p:first-child {
  margin-bottom: 0.25rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-caption h2 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.feature-caption p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.carousel-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
}

.carousel-dots button[aria-current="true"] {
  width: 1.6rem;
  background: var(--teal);
}

.section-heading {
  width: min(100%, 48rem);
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.85rem, 3.5vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.article-card,
.tool-panel,
.company-card,
.trust-list article,
.simple-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

.feature-card,
.article-card,
.simple-card {
  padding: 1.15rem;
}

.feature-card h3,
.article-card h3,
.trust-list h3,
.tool-panel h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.feature-card p,
.article-card p,
.trust-list p,
.simple-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-icon {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(85, 214, 194, 0.35);
  border-radius: 8px;
  background: rgba(85, 214, 194, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 900;
}

.muted-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #0d1016;
}

.tools-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tool-panel {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  padding: 1rem;
}

.tool-header {
  min-height: 5.5rem;
}

.tool-header .eyebrow {
  margin-bottom: 0.45rem;
}

.tarot-card {
  position: relative;
  width: min(100%, 13rem);
  aspect-ratio: 5 / 7;
  margin: auto;
  border: 0;
  background: transparent;
  color: var(--text);
  perspective: 900px;
}

.tarot-face {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background:
    linear-gradient(160deg, rgba(231, 188, 115, 0.16), rgba(85, 214, 194, 0.08)),
    #0b0d12;
  backface-visibility: hidden;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  transition: transform 360ms ease;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

.tarot-back {
  transform: rotateY(0deg);
}

.tarot-front {
  transform: rotateY(180deg);
}

.tarot-card.is-flipped .tarot-back {
  transform: rotateY(-180deg);
}

.tarot-card.is-flipped .tarot-front {
  transform: rotateY(0deg);
}

.tarot-face span,
.tarot-face strong {
  font-size: 1.25rem;
}

.tarot-face small {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.tarot-face em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.tool-note,
.form-status {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-form,
.waitlist-form,
.contact-form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.42rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
  padding: 0.8rem 0.85rem;
  outline: none;
}

select {
  color-scheme: dark;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(85, 214, 194, 0.7);
  box-shadow: 0 0 0 3px rgba(85, 214, 194, 0.14);
}

.result-box {
  margin-top: auto;
  border: 1px solid rgba(231, 188, 115, 0.25);
  border-radius: var(--radius);
  background: rgba(231, 188, 115, 0.08);
  color: #f1dfbd;
  padding: 1rem;
  min-height: 8.5rem;
}

.moon-widget {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: auto 0 1rem;
}

.moon-disc {
  width: 5.4rem;
  height: 5.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 35% 35%, #f5f1df 0 28%, #b6bcc7 62%, #383d4b 100%);
  box-shadow: 0 0 38px rgba(245, 241, 223, 0.16);
}

.moon-widget p {
  margin-bottom: 0.35rem;
  font-weight: 900;
}

.moon-widget span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trust-list article {
  padding: 1.1rem;
}

.showcase-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(231, 188, 115, 0.12), transparent 28rem),
    #0b0c10;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  min-width: 0;
}

.screen-card {
  margin: 0;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.65rem;
}

.screen-card:nth-child(even) {
  margin-top: 2.2rem;
}

.screen-card img {
  width: 100%;
  height: auto;
  background: #06070a;
  border-radius: 8px;
  object-fit: contain;
  object-position: center top;
}

.screen-card figcaption {
  padding: 0.75rem 0.3rem 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-card {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--panel-strong);
  outline: none;
}

.article-card span {
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card p {
  margin-top: auto;
}

.company-grid,
.waitlist-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.company-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem;
  color: var(--muted);
  font-style: normal;
}

.company-card strong {
  color: var(--text);
  font-size: 1.05rem;
}

.company-card a {
  color: var(--teal);
  font-weight: 800;
}

.narrow {
  max-width: 820px;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 1.05rem 1.15rem;
  font-weight: 900;
}

summary::marker {
  color: var(--teal);
}

details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.waitlist-band {
  background:
    linear-gradient(135deg, rgba(85, 214, 194, 0.12), rgba(232, 145, 168, 0.09)),
    #0c1013;
}

.waitlist-form,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  padding: clamp(1rem, 3vw, 1.35rem);
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-label input {
  width: auto;
  margin-top: 0.2rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: #07080b;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
}

.footer h2 {
  margin: 0 0 0.75rem;
  color: var(--faint);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
}

.footer p {
  color: var(--muted);
  max-width: 22rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  color: var(--faint);
  font-size: 0.85rem;
}

.page-hero {
  padding: 8rem 0 4rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(85, 214, 194, 0.13), transparent 22rem),
    radial-gradient(circle at 82% 0%, rgba(231, 188, 115, 0.12), transparent 22rem);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-content {
  padding: 3rem 0 6rem;
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.simple-card h2,
.simple-card h3 {
  margin-bottom: 0.65rem;
}

.simple-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.simple-card li + li {
  margin-top: 0.45rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .company-grid,
  .waitlist-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 13ch;
  }

  .tools-layout,
  .screen-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: fixed;
    inset: 76px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(11, 12, 16, 0.96);
    padding: 0.75rem;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    border-radius: 8px;
    padding: 0.85rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
    overflow: visible;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  .orbit-panel {
    width: min(100%, 24rem);
  }

  .phone-shell {
    width: min(72vw, 17rem);
    border-radius: 22px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: clamp(2.18rem, 9vw, 2.45rem);
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.58;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-heading {
    margin-bottom: 1.65rem;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    line-height: 1.08;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .proof-strip,
  .feature-grid,
  .article-grid,
  .tools-layout,
  .screen-gallery,
  .trust-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .screen-card:nth-child(even) {
    margin-top: 0;
  }

  .screen-card {
    width: min(100%, 18.5rem);
    margin-inline: auto;
  }

  .tool-panel {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .nav,
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-shell {
    width: min(66vw, 14.75rem);
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
}
