/* =========================
   ROOT & RESET
========================= */

* { box-sizing: border-box; }

/* =========================
   GLOBAL LIST RESET (NO BULLETS ANYWHERE)
========================= */

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

li {
  margin-bottom: 1.5rem;
}

:root {
  --text-main: #f9fafb;
  --text-muted: #c7cbe6;
  --text-dim: #9aa0c8;
  --gold: #ffd166;
  --green: #22c55e;
}
/* =========================
   BRAND UTILITIES
========================= */

.brand-tm::after {
  content: "™";
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 1px;
}
body {
  margin: 0;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    system-ui,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  background:
    radial-gradient(circle at 20% 20%, rgba(88,214,255,.14), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255,209,102,.12), transparent 45%),
    linear-gradient(180deg, #050816, #0b1133);

  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  z-index: 0;

  line-height: 1.55;
  letter-spacing: -0.015em;
}
/* =========================
   GLOBAL LINK STYLES
========================= */

a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* =========================
   GLOBAL CENTERING (ALL PAGES)
========================= */

section,
footer,
.page,
.page-content,
main,
article {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

/* Desktop safety from side tabs */
@media (min-width: 769px) {
  section,
  footer,
  .page,
  .page-content,
  main,
  article {
    padding-left: 90px;
    padding-right: 90px;
  }
}

/* =========================
   FLOATING EMOJIS (BACKGROUND)
========================= */

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particles span {
  position: absolute;
  bottom: -40px;
  animation: floatUp linear infinite;
  opacity: 0.55;
}

@keyframes floatUp {
  to { transform: translateY(-120vh); }
}

/* =========================
   CONTENT LAYERING
========================= */

.hero,
section,
footer {
  position: relative;
  z-index: 2;
}

/* =========================
   SIDE TABS (DESKTOP)
========================= */

.side-tabs {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.side-tabs .tab {
  background: rgba(255,255,255,.07);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-tabs .tab.active {
  background: linear-gradient(135deg,#22c55e,#3bd3ff);
  color: #052616;
  font-weight: 700;
}

.ig-icon {
  width: 18px;
  height: 18px;
}

/* =========================
   HERO
========================= */

.hero {
  max-width: 900px;
  margin: 80px auto;
  padding: 44px 28px;
  background: rgba(0,0,0,.32);
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}

.hero-logo {
  width: 190px;
  max-width: 80%;
  margin-bottom: 14px;
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 10px 0;
}

.tagline {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.description {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.small-note {
  font-size: .9rem;
  opacity: .85;
}

/* =========================
   HIGHLIGHT TEXT
========================= */

.highlight {
  font-weight: 800;
  color: var(--gold);
  margin: 24px 0;
}


/* =========================
   BUTTONS & FORMS
========================= */

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn.primary {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #052616;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 0.95rem;
}

/* =========================
   SUPPORT FORM (FIXED)
========================= */

.support-form {
  max-width: 520px;
  margin: 28px auto 0;
  padding: 28px 26px;
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;
  gap: 18px;

  text-align: left; /* overrides section centering */
}

.support-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255,209,102,0.25);
}

.support-form textarea {
  min-height: 140px;
  resize: vertical;
}

.support-form button {
  margin-top: 10px;
  align-self: center;
  width: 100%;
  max-width: 260px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  color: #052616;
  background: linear-gradient(135deg,#22c55e,#3bd3ff);
  box-shadow: 0 12px 30px rgba(34,197,94,0.35);
}

.support-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(34,197,94,0.45);
}

/* =========================
   APP PREVIEW
========================= */

.screenshot-toggle {
  margin: 30px 0 18px;
}

/* =========================
   PHONE MOCKUP
========================= */

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  border-radius: 40px;
  background: linear-gradient(180deg,#111827,#020617);
  border: 4px solid #1f2937;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.phone-mockup img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 28px;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #020617;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

/* =========================
   FAKE STORAGE NOTIFICATION
========================= */

.storage-toast {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30,41,59,.96);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .75rem;
  text-align: center;
  font-weight: 600;
  animation: toast 5s infinite;
}

.storage-toast span {
  display: block;
  font-size: .7rem;
  opacity: .85;
}

@keyframes toast {
  0%,100% { opacity: 0; transform: translate(-50%,-8px); }
  20%,80% { opacity: 1; transform: translate(-50%,0); }
}

/* =========================
   STORAGE SECTION
========================= */

.storage-section {
  text-align: center;
  margin: 90px auto;
}

.storage-quote {
  font-weight: 800;
  margin: 20px 0;
  font-size: 1.1rem;
}

.storage-list {
  list-style: none;
  padding: 0;
}

.storage-list li {
  margin: 10px 0;
  font-size: 1rem;
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 30px;
  color: var(--text-dim);
  font-size: .9rem;
}
.footer-legal {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* =========================
   MOBILE NAV
========================= */

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .side-tabs { display: none; }

  .mobile-nav {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    background: rgba(10,16,42,.92);
    border-radius: 26px;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    z-index: 9999;
    backdrop-filter: blur(16px);
  }

  .mobile-nav .nav-item {
    color: var(--text-dim);
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    
  }

  .mobile-nav .nav-item.active {
    color: var(--green);
  }

  .hero-logo {
    width: 220px;
  }

  body {
    padding-bottom: 120px;
  }
}
/* =========================
   DISCOVER HERO
========================= */

.discover-hero {
  max-width: 900px;
  margin: 90px auto 60px;
  padding: 48px 28px;
  text-align: center;
  background: rgba(0,0,0,0.35);
  border-radius: 36px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}

.discover-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin: 18px 0 12px;
  letter-spacing: -0.02em;
}

.discover-hero .tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

/* =========================
   SOFT CTA
========================= */

.soft-cta {
  margin: 70px auto;
  padding: 28px 24px;
  max-width: 760px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  text-align: center;
}

.soft-cta-text {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.soft-cta-link {
  display: inline-block;
  font-weight: 800;
  color: #22c55e;
  text-decoration: none;
  font-size: 1.05rem;
}

.soft-cta-link:hover {
  text-decoration: underline;
}

.soft-cta-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 6px;
}
/* =========================
   BLOG / ARTICLE LAYOUT
========================= */

.blog-page .page-panel {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Typography tuning for reading */
.blog-page h2 {
  text-align: left;
  margin-top: 64px;
  margin-bottom: 16px;
}

.blog-page p,
.blog-page ul,
.blog-page ol {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Lists feel more editorial */
.blog-page ul li,
.blog-page ol li {
  margin-bottom: 1rem;
}
/* Gold bullet for blog lists only */
.blog-page ul li::before {
  content: "•";
  color: var(--gold);
  margin-right: 10px;
}
.blog-page ul li {
  display: flex;
  align-items: flex-start;
}


/* Keep hero centered */
.blog-page .hero {
  text-align: center;
}
/* =========================
   BLOG / ARTICLE OVERRIDE
========================= */

section.blog-page {
  max-width: 1100px;
  text-align: left;
}

/* Inner reading column */
section.blog-page .page-panel {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure all text flows editorially */
section.blog-page h2,
section.blog-page h3,
section.blog-page p,
section.blog-page ul,
section.blog-page ol,
section.blog-page li {
  text-align: left;
}

/* Keep hero centered */
section.blog-page .hero {
  text-align: center;
}

/* =========================
   GLOBAL LINK STYLES
========================= */

a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.15s ease;
}


/* =========================
   JUMP LINKS (BLOG TOC)
========================= */

.jump-links a {
  font-weight: 700;
}

a.btn,
.btn a {
  text-decoration: none;
}
a {
  transition: color 0.15s ease;
}
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}


