/* ===================================================
   Singers Galaxy — singspace-inspired deep space dark
   Bg: near-black, Accent: teal #2dffdb + blue #0091fe
   Display: Orbitron, Body: Barlow
   =================================================== */
:root {
  --accent:       #2dffdb;
  --accent2:      #0091fe;
  --bg:           #0a0c18;
  --surface:      #12152a;
  --surface2:     #1a1d35;
  --text:         #e8eaf6;
  --muted:        #8892b0;
  --border:       #1e2244;
  --radius:       12px;
  --radius-lg:    20px;
  --font-display: 'Orbitron', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 1rem; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ──────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: #fff; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); line-height: 1.7; }
.accent-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}

/* ── Layout ──────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 5rem 0; }
section.bg-alt { background: var(--surface); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head p { margin-top: 0.75rem; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 50px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; border: 2px solid transparent;
  transition: opacity 0.2s, transform 0.2s; text-decoration: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%); color: #000; }
.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.72rem; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 0.85rem; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,12,24,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.logo img { height: 36px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.site-nav a { color: var(--text); font-size: 0.88rem; font-weight: 500; }
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.lang-switcher { display: flex; gap: 0.5rem; }
.lang-pill {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; padding: 2px 8px;
  border-radius: 50px; border: 1px solid var(--border); color: var(--muted); text-decoration: none;
}
.lang-pill:hover, .lang-active { border-color: var(--accent); color: var(--accent); text-decoration: none; }
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .site-nav {
    display: none; position: fixed; inset: 68px 0 0; background: var(--bg);
    flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; gap: 1.5rem; overflow-y: auto;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Scroll Reveal ────────────────────────────────── */
/* Only hide elements that JS marks as below-fold; in-viewport elements get .in immediately */
html.js .reveal.pending { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
@media (prefers-reduced-motion: reduce) { html.js .reveal.pending, html.js .reveal.in { opacity: 1; transform: none; transition: none; } }

/* ── Hero ─────────────────────────────────────────── */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; padding: 5rem 0; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(0,145,254,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(45,255,219,0.12) 0%, transparent 60%),
    var(--bg);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('/assets/img/hero_img.png'); background-size: cover; background-position: center right; opacity: 0.18;
}
.hero-inner { position: relative; max-width: 640px; padding: 0 1.25rem; margin: 0 auto; width: 100%; }
.hero-inner h1 { margin-bottom: 1rem; }
.hero-inner > p { font-size: 1.15rem; color: var(--muted); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Feature Grid ─────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(45,255,219,0.15) 0%, rgba(0,145,254,0.15) 100%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--accent);
}
.feature-ico svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }

/* ── Showcase Grid ────────────────────────────────── */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.showcase-grid img { border-radius: var(--radius); width: 100%; aspect-ratio: 16/10; object-fit: cover; border: 1px solid var(--border); }
@media (max-width: 640px) { .showcase-grid { grid-template-columns: 1fr; } }

/* ── Split ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-media img { border-radius: var(--radius-lg); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Testimonials ─────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.testimonial-card .stars { color: var(--accent); font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text); font-style: italic; margin-bottom: 1rem; }
.testimonial-card .author { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item input[type=radio] { display: none; }
.faq-label {
  display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: #fff; letter-spacing: 0.03em; user-select: none;
}
.faq-label::after { content: '+'; font-size: 1.4rem; color: var(--accent); flex-shrink: 0; }
.faq-item input:checked ~ .faq-label::after { content: '−'; }
.faq-body { display: none; padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.92rem; }
.faq-item input:checked ~ .faq-body { display: block; }
.faq-body a { color: var(--accent); }
details.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  color: #fff; letter-spacing: 0.03em; user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--accent); flex-shrink: 0; line-height: 1; }
details[open].faq-item summary::after { content: '−'; }
details.faq-item .body { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
details.faq-item .body a { color: var(--accent); }
.faq-item + .faq-item { margin-top: 0.75rem; }

/* ── CTA Band ─────────────────────────────────────── */
.cta-band { position: relative; text-align: center; overflow: hidden; padding: 5rem 0; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,255,219,0.1) 0%, rgba(0,145,254,0.15) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band .inner { position: relative; max-width: 600px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--muted); margin-bottom: 2rem; }

/* ── Pricing ──────────────────────────────────────── */
.pricing-page-hero { text-align: center; }
.pricing-section { padding: 3rem 0 5rem; }
.pricing-note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: 0.88rem; }
.pricing-note a { color: var(--accent); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }
.pricing-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.25rem 2rem;
  text-align: center; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.25s;
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(45,255,219,0.12); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card .operator {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; border: 1px solid rgba(45,255,219,0.3);
  border-radius: 50px; padding: 3px 12px; margin-bottom: 1.25rem;
}
.pricing-card .price {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; margin: 0 0 0.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-card .freq { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-card ul {
  list-style: none; text-align: left; margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  border-top: 1px solid var(--border); padding-top: 1.25rem;
}
.pricing-card li { font-size: 0.88rem; color: var(--text); display: flex; gap: 0.6rem; align-items: flex-start; }
.pricing-card li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── Steps ────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.step .num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }

/* ── Page Hero ────────────────────────────────────── */
.page-hero { padding: 4rem 0; background: var(--surface); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { max-width: 600px; margin: 0 auto; }

/* ── Contact ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { margin-bottom: 0.5rem; }
.phone-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.phone-list li { font-size: 0.9rem; color: var(--text); }
.contact-form .field { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.75rem 1rem; color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.form-error { display: none; color: #ff6b6b; font-size: 0.8rem; margin-top: 0.3rem; }
.form-success { display: none; color: var(--accent); font-weight: 600; margin-top: 1rem; }

/* ── Sign In ──────────────────────────────────────── */
.signin-section {
  min-height: calc(100vh - 68px); display: flex; align-items: center;
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,145,254,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(45,255,219,0.07) 0%, transparent 60%),
    var(--bg);
}
.signin-box {
  max-width: 460px; margin: 0 auto; width: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.signin-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(45,255,219,0.15) 0%, rgba(0,145,254,0.2) 100%);
  border: 1px solid rgba(45,255,219,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.signin-box h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 0.6rem; }
.signin-box > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 2rem; }
.signin-box .field { text-align: left; margin-bottom: 1.25rem; }
.signin-box label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.signin-box input {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1.1rem; color: var(--text); font-size: 1.05rem; font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signin-box input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(45,255,219,0.1); }
.signin-box input::placeholder { color: var(--muted); opacity: 0.6; }
.si-error { display: none; color: #ff6b6b; font-size: 0.8rem; margin-top: 0.4rem; text-align: left; }
.si-success { color: var(--accent); font-size: 0.88rem; margin-top: 1rem; }
.signin-box .disclaimer { font-size: 0.76rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.6; opacity: 0.75; }

/* ── Unsubscribe / Refund ─────────────────────────── */
.operator-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.operator-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.operator-card h4 { font-size: 0.9rem; color: var(--accent); margin-bottom: 0.5rem; }
.operator-card p { font-size: 0.88rem; }
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.bullet-list li { display: flex; gap: 0.75rem; font-size: 0.92rem; color: var(--text); }
.bullet-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; }

/* ── About ────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.milestones { display: flex; flex-direction: column; gap: 1.5rem; max-width: 680px; margin: 0 auto; }
.milestone { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; align-items: start; }
.milestone .year { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--accent); padding-top: 0.2rem; }
.milestone p { font-size: 0.92rem; }

/* ── Carrier Billing ──────────────────────────────── */
.cb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.cb-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.cb-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }

/* ── 404 ──────────────────────────────────────────── */
.not-found { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.not-found .code {
  font-family: var(--font-display); font-size: clamp(6rem, 20vw, 12rem); font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand > p { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; max-width: 320px; }
.footer-entity { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; line-height: 1.8; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--muted); }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 1.5rem; font-size: 0.78rem; color: var(--muted);
}
.footer-version { opacity: 0.4; }
.footer-brand .logo img { height: 32px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; } }

/* ── Utility ──────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.prose p { margin-bottom: 1rem; font-size: 0.92rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; color: var(--muted); font-size: 0.92rem; }
.prose a { color: var(--accent); }

/* Legals */
.legals-wrap { padding: 3.5rem 0; }
.legals { padding-top: 1rem; padding-bottom: 5rem; }
.legals h1 { display: none; }
.legals h6 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent, #e83d72); margin: 2rem 0 0.5rem; }
.legals p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.8rem; }
.legals ul { margin: 0.5rem 0 1rem; padding-left: 1.5rem; }
.legals li { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.4rem; }
.legals a { color: var(--accent, #e83d72); }
