:root {
  --bg: #000;
  --panel: #080c12;
  --line: rgba(255,255,255,.18);
  --text: #fff;
  --muted: rgba(255,255,255,.68);
  --cyan: #59dcff;
  --blue: #2588ff;
  --pink: #ff33cc;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--text);
  font-family: "Titillium Web", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 42% 0%, rgba(89,220,255,.13), transparent 310px),
    radial-gradient(circle at 78% 4%, rgba(255,51,204,.08), transparent 350px),
    #000;
}

a { color: var(--cyan); font-weight: 600; }

.app {
  width: 800px;
  margin: 0 auto;
  padding: 34px 0 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.logo.secretLogo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  display: grid;
  place-items: center;
  color: var(--cyan);
}

.logo.secretLogo svg {
  display: block;
  width: 78px;
  height: 78px;
}

.brandWord,
.brandWord span {
  font-family: "Titillium Web", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .9;
  text-rendering: geometricPrecision;
}

.brandWord {
  font-size: 52px;
}

.brandWord span { color: var(--blue); }

.heroGrid {
  width: 800px;
  display: grid;
  grid-template-columns: 360px 400px;
  grid-template-areas:
    "intro card"
    "rate card";
  column-gap: 40px;
  row-gap: 22px;
  align-items: stretch;
}

.intro {
  grid-area: intro;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
}

.heroCard { grid-area: card; }
.rateCard { grid-area: rate; align-self: end; }

h1 {
  width: 360px;
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 600;
}

h1 span,
h2 span,
h3 span { color: var(--blue); }

.lede {
  width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.25;
}

.priceLine {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 360px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.2;
}

.freeBadge {
  display: flex;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--blue);
  border-radius: 14px;
  color: var(--cyan);
  font-family: "Micro 5", monospace;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  text-align: center;
}

strong { color: var(--pink); font-weight: 600; }

.card,
.rateCard,
.contentCard,
.navCard {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 12, 18, .92);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.heroCard {
  width: 400px;
  padding: 24px;
}

.rateCard {
  width: 360px;
  padding: 18px;
}

.rateCard h2 {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.rateCard p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.heroCard h2,
.contentCard h2,
.navCard h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.03em;
}

.heroCard p,
.contentCard p,
.navCard p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.heroCard p { margin: 0 0 18px; }


.featureList {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.featureList li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.25;
}

.featureList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(89,220,255,.45);
}

.buttonRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.button,
button.button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 0;
  border-radius: 12px;
  padding: 13px 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: #0e141d;
  color: #fff;
  border: 1px solid var(--line);
}

.contentStack {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contentCard,
.navCard {
  width: 800px;
  padding: 24px;
}

.answerBox {
  border: 1px solid rgba(89,220,255,.35);
  border-radius: 14px;
  background: rgba(89,220,255,.08);
  color: var(--cyan);
  padding: 14px;
  line-height: 1.35;
}

.answerBox p { margin: 0; color: #d9f8ff; }

ul,
ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

li { margin: 8px 0; }

.gridList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.miniCard {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  padding: 16px;
}

.miniCard h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.02em;
}

.miniCard p { margin: 0; font-size: 14px; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq details:first-child { border-top: 0; }

summary {
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

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

.breadcrumb {
  width: 800px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a { color: var(--cyan); }

.pageHead {
  width: 800px;
  margin-bottom: 22px;
}

.pageHead h1 {
  width: 800px;
  white-space: normal;
}

.pageHead .lede {
  width: 800px;
  max-width: 640px;
}

.inlineCta {
  border-color: rgba(255,51,204,.55);
}

.inlineCta h2 { color: #fff; }

footer {
  width: 800px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

footer p { margin: 0 0 4px; }

.hidden { display: none !important; }

:focus { outline: none; }

:focus-visible {
  outline: 3px solid #59DCFF !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 6px rgba(89,220,255,.22) !important;
}

button,
a { touch-action: manipulation; }

@media (max-width: 799px) {
  .app {
    width: 380px;
    padding: 22px 0 34px;
  }

  .heroGrid {
    width: 380px;
    display: grid;
    grid-template-columns: 380px;
    grid-template-areas:
      "intro"
      "card"
      "rate";
    gap: 18px;
  }

  .intro {
    width: 380px;
    padding-top: 0;
    text-align: center;
  }

  .brand {
    justify-content: center;
    gap: 9px;
    margin-bottom: 22px;
  }

  .logo.secretLogo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  display: grid;
  place-items: center;
  color: var(--cyan);
}

.logo.secretLogo svg {
  display: block;
  width: 78px;
  height: 78px;
}
  .brandWord,
.brandWord span {
  font-family: "Titillium Web", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .9;
  text-rendering: geometricPrecision;
}

.brandWord {
  font-size: 52px;
}

  h1 {
    width: 380px;
    font-size: 34px;
    text-align: center;
  }

  .lede {
    width: 380px;
    font-size: 14px;
    text-align: center;
  }

  .priceLine {
    justify-content: center;
    width: 380px;
    margin-top: 22px;
    padding-top: 20px;
    font-size: 16px;
  }

  .freeBadge {
    width: 50px;
    height: 50px;
    font-size: 38px;
  }

  .heroCard,
  .rateCard,
  .contentCard,
  .navCard {
    width: 380px;
    padding: 18px;
  }

  .rateCard { text-align: center; }
  .buttonRow { grid-template-columns: 1fr; }
  .gridList { grid-template-columns: 1fr; }

  .breadcrumb,
  .pageHead,
  .pageHead h1,
  .pageHead .lede,
  footer { width: 380px; }

  .pageHead h1 { text-align: left; }
  .pageHead .lede { text-align: left; }
}

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


.articleGrid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.termGrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 14px; }
.termCard { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.04); padding: 14px; }
.termCard h3 { margin: 0 0 6px; font-size: 16px; line-height: 1.1; color: #fff; }
.termCard p { margin: 0; font-size: 13px; line-height: 1.35; }
.smallNote { color: var(--muted); font-size: 13px; line-height: 1.35; margin-top: 14px; }
.sectionLabel { color: var(--cyan); text-transform: uppercase; font-size: 13px; font-weight: 600; margin: 0 0 10px; }
.sourceNote { border-left: 3px solid var(--blue); padding-left: 12px; color: var(--muted); font-size: 14px; line-height: 1.4; }
@media (max-width: 799px) { .termGrid { grid-template-columns: 1fr; } }


/* SecretSkies SEO layer additions */
.seoLogoHome {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.seoLogoHome:hover,
.seoLogoHome:focus {
  text-decoration: none;
}

.singleButton {
  grid-template-columns: 1fr;
}

footer a:first-child,
footer p:first-child a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

footer p:first-child a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footerGap {
  display: inline-block;
  width: 42px;
}

.faqList {
  display: grid;
  gap: 10px;
}

.faqList details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.025);
}

.faqList summary {
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.faqList p {
  margin: 10px 0 0;
}

@media (max-width: 520px) {
  .brandWord { font-size: 44px; }
  .footerGap { display: block; width: 0; height: 6px; }
}

/* Match the live SecretSkies wordmark exactly */
.brandWord {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.08em !important;
  text-transform: none !important;
}

.brandWord span {
  color: #1e8fff !important;
}

/* Match the live SecretSkies wordmark exactly */
.brandWord {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.08em !important;
  text-transform: none !important;
}

.brandWord span {
  color: #1e8fff !important;
}

/* Mobile top alignment override */
@media (max-width: 760px) {
  .seoHeader,
  .topLogoHeader {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .seoLogoHome,
  .topLogoHeader .seoLogoHome {
    align-self: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .topLogoHeader .seoLogoHome {
    flex-direction: row !important;
  }

  .breadcrumb,
  .topLogoHeader .breadcrumb {
    text-align: left !important;
    align-self: flex-start !important;
  }

  .hero {
    text-align: left !important;
  }
}

/* Force SecretSkies SEO guide pages left aligned */
.seoHeader,
.topLogoHeader,
.hero,
.hero > div,
.heroText,
.breadcrumb,
.eyebrow,
h1,
.lede,
.priceLine,
.answerBox,
.callout,
.callout h2,
.callout p,
.callout ul,
.callout li {
  text-align: left !important;
}

.seoHeader,
.topLogoHeader {
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.seoLogoHome,
.topLogoHeader .seoLogoHome {
  align-self: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.topLogoHeader .seoLogoHome {
  flex-direction: row !important;
}

.breadcrumb {
  align-self: flex-start !important;
  justify-self: flex-start !important;
}

.hero {
  justify-items: stretch !important;
  align-items: start !important;
}

.hero > div {
  align-items: flex-start !important;
}

.priceLine {
  justify-content: flex-start !important;
}

.answerBox {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 900px) {
  .pageShell,
  main,
  .hero,
  .seoHeader,
  .topLogoHeader {
    text-align: left !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
  }

  .callout {
    width: 100% !important;
  }
}
