/* app/javascript/styles/base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body,
#root {
  height: 100%;
}
:root {
  --ecliptica-page-gutter: 32px;
  --ecliptica-page-gutter-mobile: 16px;
  --ecliptica-bottom-nav-height: 64px;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #050818;
  color: #e8e6f0;
  overflow-x: hidden;
}
.ecliptica-app-shell--mobile .ecliptica-page-content {
  padding-left: var(--ecliptica-page-gutter-mobile);
  padding-right: var(--ecliptica-page-gutter-mobile);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0f2a;
}
::-webkit-scrollbar-thumb {
  background: #2a2d5e;
  border-radius: 3px;
}
#starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}
@keyframes twinkle {
  0%, 100% {
    opacity: var(--base-op, 0.3);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}
@keyframes float-up {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(163, 120, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(163, 120, 255, 0.7), 0 0 80px rgba(163, 120, 255, 0.3);
  }
}
@keyframes card-flip {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(var(--orbit-radius, 120px)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(var(--orbit-radius, 120px)) rotate(-360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-static-legal {
  text-align: center;
  padding: 14px 20px 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.home-static-legal--fixed {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100vw;
  z-index: 60;
  pointer-events: auto;
  padding-top: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 24, 0),
      rgba(5, 8, 24, 0.92) 22%,
      rgba(5, 8, 24, 0.98) 100%);
}
.home-static-legal--bottom-only {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.home-static-legal--bottom-only.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.home-static-legal__label {
  color: rgba(255, 255, 255, 0.45);
}
.home-static-legal__link {
  color: #5ef0d8;
  text-decoration: none;
}
.landing-on-page-copy__paragraph {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 0 0 20px;
}
.landing-on-page-copy__paragraph:last-child {
  margin-bottom: 0;
}
.landing-seo {
  position: relative;
  z-index: 1;
  margin-top: 48px;
}
.landing-seo__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 40% 35% at 100% 40%,
      rgba(163, 120, 255, 0.04) 0%,
      transparent 50%),
    radial-gradient(
      ellipse 45% 30% at 0% 70%,
      rgba(127, 180, 255, 0.03) 0%,
      transparent 45%);
}
.landing-seo__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 0 72px;
}
.landing-seo__bridge-header {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 32px;
  padding: 0 24px;
  text-align: center;
  box-sizing: border-box;
}
.landing-seo__title {
  width: 100%;
  margin: 0 0 28px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.15;
}
.landing-seo__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5ef0d8;
  text-align: center;
  margin: 0 0 14px;
  padding-top: 4px;
  opacity: 0.85;
}
.landing-seo__h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
  margin: 0 0 16px;
}
.landing-seo__bridge {
  text-align: center;
  padding: 0;
  margin-bottom: clamp(40px, 5vh, 56px);
}
.landing-seo__bridge-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.landing-seo__pill-card {
  text-align: center;
  padding: 22px 20px !important;
}
.landing-seo__pill-icon {
  display: block;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
}
.landing-seo__pill-text {
  font-size: 14px;
  color: rgba(237, 234, 248, 0.92);
  line-height: 1.55;
  margin: 0;
}
.landing-seo__two-col {
  margin-top: 0;
}
.landing-seo__section {
  padding: 0 24px;
}
@media (max-width: 639px) {
  .landing-seo {
    margin-top: 32px;
  }
  .landing-seo__inner {
    padding: 40px 0 56px;
  }
  .landing-seo__bridge-header,
  .landing-seo__bridge-pills {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .landing-seo__section {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}
@media (min-width: 640px) {
  .landing-seo__bridge-pills {
    grid-template-columns: repeat(3, 1fr);
  }
}
.landing-seo__bridge-pills--animate {
  animation: fadeInUp 0.8s ease both;
}
.landing-seo__section + .landing-seo__section {
  margin-top: 48px;
}
.landing-seo__compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .landing-seo__compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.landing-seo__platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.landing-seo__platform-card {
  animation: fadeInUp 0.7s ease both;
}
.landing-seo__platform-card--delay-0 {
  animation-delay: 0s;
}
.landing-seo__platform-card--delay-1 {
  animation-delay: 0.08s;
}
.landing-seo__platform-card--delay-2 {
  animation-delay: 0.16s;
}
.landing-seo__platform-card--delay-3 {
  animation-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .landing-seo__bridge-pills--animate,
  .landing-seo__platform-card,
  .landing-seo__chart-deco-ring {
    animation: none !important;
  }
}
.ecliptica-paypal-host iframe {
  display: block;
  max-width: 100%;
}

/* app/javascript/styles/formGrid.css */
.ecliptica-form-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0;
}
.ecliptica-form-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ecliptica-form-grid--stacked {
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: 1rem;
}
.ecliptica-form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  max-width: 100%;
}
.ecliptica-form-field > :first-child {
  margin-bottom: 8px;
}
.ecliptica-form-grid--stacked + .ecliptica-form-after {
  margin-top: 0.25rem;
}
.ecliptica-native-picker-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  display: flex;
}
.ecliptica-native-picker-wrap .ecliptica-native-picker {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  -webkit-min-logical-width: 0;
}
.ecliptica-native-picker {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.ecliptica-native-picker::-webkit-date-and-time-value {
  min-width: 0;
  text-align: start;
}
.ecliptica-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  font-family:
    "Noto Sans Symbols 2",
    "Segoe UI Symbol",
    "Apple Symbols",
    sans-serif;
  font-variant-emoji: text;
  -webkit-font-variant-emoji: text;
  font-feature-settings: "liga" 0;
  -webkit-font-feature-settings: "liga" 0;
  font-synthesis: none;
}

/* app/javascript/features/tarot/components/TarotCard.module.css */
.TarotCard_wrap {
  width: 100%;
  height: 100%;
  cursor: pointer;
  perspective: 900px;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  transition: transform 0.22s ease;
  will-change: transform;
}
.TarotCard_disabled {
  cursor: not-allowed;
}
.TarotCard_inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.TarotCard_wrap.TarotCard_flipped .TarotCard_inner {
  transform: rotateY(180deg);
}
.TarotCard_face,
.TarotCard_back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}
.TarotCard_back {
  transform: rotateY(0deg);
}
.TarotCard_face svg,
.TarotCard_back svg {
  width: 100%;
  height: 100%;
  display: block;
}
.TarotCard_svgFill {
  width: 100%;
  height: 100%;
  display: block;
}
.TarotCard_svgFill svg {
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}
.TarotCard_wrap:hover .TarotCard_inner {
  transform: none;
}
.TarotCard_wrap.TarotCard_flipped:hover .TarotCard_inner {
  transform: rotateY(180deg);
}
.TarotCard_wrap:hover {
  transform: translateY(-4px);
}
.TarotCard_hint {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(62, 207, 202, 0.7);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}
.TarotCard_reversed {
  transform: rotateY(180deg) rotate(180deg);
  transform-origin: 50% 50%;
}
.TarotCard_face {
  transform: rotateY(180deg);
}

/* app/javascript/ui/PublicTopNav.module.css */
.PublicTopNav_bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(5, 8, 24, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.PublicTopNav_brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  cursor: pointer;
}
.PublicTopNav_actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.PublicTopNav_link {
  font-size: 14px;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.PublicTopNav_menuButton {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.PublicTopNav_mobilePanel {
  display: none;
}
.PublicTopNav_mobileBackdrop {
  display: none;
}
@media (max-width: 900px) {
  .PublicTopNav_bar {
    padding: 0 16px;
  }
  .PublicTopNav_actions {
    display: none;
  }
  .PublicTopNav_menuButton {
    display: inline-flex;
  }
  .PublicTopNav_mobileBackdropOpen {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 18;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
  }
  .PublicTopNav_mobilePanelOpen {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 19;
    padding: 12px 16px 20px;
    background: rgba(8, 12, 32, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
  }
  .PublicTopNav_mobileLink {
    font-size: 15px;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 8px;
  }
  .PublicTopNav_mobileLink:hover {
    background: rgba(255, 255, 255, 0.04);
  }
  .PublicTopNav_mobileActions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }
  .PublicTopNav_mobileLocale {
    display: flex;
    justify-content: flex-start;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* app/javascript/ui/PublicPageShell.module.css */
.PublicPageShell_page {
  position: relative;
  z-index: 1;
}
.PublicPageShell_content {
  padding-top: 68px;
}
@media (max-width: 900px) {
  .PublicPageShell_content {
    padding-top: 68px;
  }
}
/*# sourceMappingURL=/assets/application-e503d2cc.css.map */
