/* Secret AI — private editorial edition. Existing local assets only. */
:root {
  --ink: #11100d;
  --ink-soft: #1a1813;
  --panel: #1d1a14;
  --paper: #f4eee1;
  --paper-muted: #cfc4b2;
  --gold: #c6a56a;
  --gold-bright: #ead49e;
  --line: rgba(232, 211, 160, .26);
  --line-strong: rgba(232, 211, 160, .48);
  --shadow: 0 26px 70px rgba(0, 0, 0, .34);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(243, 234, 214, .025) 1px, transparent 1px) 0 0 / 6.3rem 6.3rem,
    radial-gradient(circle at 84% 4%, rgba(198, 165, 106, .14), transparent 30rem),
    radial-gradient(circle at 4% 40%, rgba(198, 165, 106, .07), transparent 26rem),
    var(--ink);
  pointer-events: none;
}
.site-veil {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 48%, rgba(246, 236, 215, .022) 48.1% 48.2%, transparent 48.3% 100%);
}
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
img, video { display: block; max-width: 100%; }

.header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 16, 13, .9);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease;
}
.header.is-scrolled { background: rgba(17, 16, 13, .97); border-color: var(--line-strong); }
.nav {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  align-items: center;
  width: min(100% - 3rem, 1400px);
  min-height: 76px;
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  width: max-content;
  color: var(--paper);
  text-decoration: none;
}
.logo-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}
.logo-icon::after { content: "S"; color: var(--gold-bright); font-family: var(--serif); font-size: .88rem; }
.logo-text { font-family: var(--serif); font-size: 1.24rem; font-weight: 400; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(.8rem, 2vw, 2rem); }
.nav-link {
  position: relative;
  color: var(--paper-muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav-link::after { position: absolute; right: 0; bottom: -.55rem; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.nav-link:hover { color: var(--paper); }
.nav-link:hover::after { transform: scaleX(1); }
.cta-nav {
  justify-self: end;
  border: 1px solid var(--gold);
  padding: .64rem .95rem;
  color: var(--ink);
  background: var(--gold-bright);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.cta-nav:hover { background: var(--paper); transform: translateY(-2px); }

main { overflow: clip; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.2rem, 7vw, 8rem);
  width: min(100% - 3rem, 1400px);
  min-height: min(760px, calc(100vh - 76px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(4.5rem, 9vw, 9rem);
}
.hero-content { position: relative; min-width: 0; padding-top: 2.2rem; }
.hero-content::before {
  position: absolute;
  top: 0;
  width: 76px;
  height: 1px;
  content: "";
  background: var(--gold);
}
.hero-title, .section-title, .final-cta h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero-title { max-width: 11ch; font-size: clamp(3.8rem, 7.2vw, 7.6rem); }
.gradient-text { color: var(--gold-bright); -webkit-text-fill-color: currentColor; }
.hero-subtitle { max-width: 39rem; margin: 2rem 0 2.2rem; color: var(--paper-muted); font-size: clamp(1rem, 1.2vw, 1.16rem); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid var(--gold);
  padding: .9rem 1.25rem;
  color: var(--ink);
  background: var(--gold-bright);
  box-shadow: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.btn-primary::after { margin-left: .8rem; content: "→"; font-size: 1rem; }
.btn-primary:hover { background: var(--paper); box-shadow: none; transform: translateY(-3px); }
.btn-primary.glow { animation: none; }
.trust-badges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem 1rem; max-width: 32rem; margin-top: 2rem; color: var(--paper-muted); font-size: .7rem; }
.trust-badges span { min-width: 0; border-top: 1px solid var(--line); padding-top: .75rem; }
.hero-visual { position: relative; min-width: 0; padding: clamp(.8rem, 2vw, 1.4rem); }
.hero-visual::before, .hero-visual::after { position: absolute; z-index: -1; content: ""; pointer-events: none; }
.hero-visual::before { inset: 0; border: 1px solid var(--gold); transform: translate(-.8rem, .8rem); }
.hero-visual::after { top: -1.3rem; right: 8%; width: 40%; height: 1px; background: var(--gold); }
.hero-visual a { display: block; overflow: hidden; border: 1px solid var(--line-strong); background: #0a0907; }
.hero-visual img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; filter: saturate(.54) sepia(.12) contrast(1.06); transition: filter .35s ease, transform .35s ease; }
.hero-visual a:hover img { filter: saturate(.72) sepia(.06) contrast(1.03); transform: scale(1.018); }

section { position: relative; }
.content-section, .features-section, .gallery-section, .faq-section, .pricing-section, .final-cta {
  width: min(100% - 3rem, 1400px);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}
.content-section.alt-bg, .pricing-section { width: 100%; max-width: none; background: linear-gradient(90deg, rgba(244, 238, 225, .045), transparent 60%); }
.content-section.alt-bg > *, .pricing-section > * { width: min(100% - 3rem, 1400px); margin-right: auto; margin-left: auto; }
.section-header { max-width: 45rem; margin: 0 0 clamp(2rem, 4vw, 3.5rem); text-align: left; }
.section-tag {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--gold-bright);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-tag::before { display: inline-block; width: 22px; height: 1px; margin: 0 .7rem .23rem 0; content: ""; background: currentColor; }
.section-title { max-width: 13ch; font-size: clamp(2.6rem, 5vw, 5rem); }
.section-desc { max-width: 42rem; margin-top: 1.1rem; color: var(--paper-muted); }
.companions-info { max-width: 52rem; margin: 0 0 2.4rem; }
.info-text { margin: 0; color: var(--paper-muted); font-size: 1.02rem; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.video-card-link { display: block; min-width: 0; color: inherit; background: var(--ink); text-decoration: none; transition: background .25s ease; }
.video-card-link:hover { background: #262117; transform: none; }
.video-card {
  display: grid;
  grid-template-rows: auto minmax(13rem, 1fr) auto;
  height: 100%;
  min-height: 29rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.character-name { order: 0; margin: 0; padding: 1.05rem 1.2rem .75rem; color: var(--paper); font-family: var(--serif); font-size: 1.38rem; font-weight: 400; letter-spacing: -.02em; text-align: left; }
.video-card video { order: 1; width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(.58) contrast(1.05); transition: filter .25s ease, transform .4s ease; }
.video-card-link:hover video { filter: saturate(.8); transform: scale(1.025); }
.video-info { order: 2; min-height: 8.2rem; padding: 1.1rem 1.2rem 1.3rem; background: transparent; }
.video-info .bio { margin: 0; color: var(--paper-muted); font-size: .83rem; line-height: 1.55; }
.video-info .tag { display: inline-block; margin-top: .75rem; padding: 0; color: var(--gold-bright); background: transparent; border: 0; border-radius: 0; font-size: .61rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.feature-card { min-width: 0; min-height: 15rem; padding: 1.5rem; border: 0; border-radius: 0; background: var(--panel); text-align: left; transition: background .25s ease; }
.feature-card:hover { border: 0; background: #292317; box-shadow: none; transform: none; }
.feature-icon { width: 2rem; height: 2rem; margin-bottom: 2.5rem; color: var(--gold-bright); font-size: 1.5rem; filter: grayscale(1) sepia(.4); }
.feature-card h3 { margin: 0 0 .55rem; color: var(--paper); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1.12; }
.feature-card p { margin: 0; color: var(--paper-muted); font-size: .86rem; }
.gallery-preview, .pricing-preview { position: relative; max-width: none; margin: 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 0; background: #0a0907; }
.gallery-preview::after, .pricing-preview::after { position: absolute; right: 0; bottom: 0; left: 0; height: 18%; content: ""; background: linear-gradient(transparent, rgba(0, 0, 0, .44)); pointer-events: none; }
.gallery-preview img, .pricing-preview img { width: 100%; height: auto; filter: saturate(.56) sepia(.09); transition: filter .25s ease, transform .35s ease; }
.gallery-preview:hover img, .pricing-preview:hover img { filter: saturate(.76); transform: scale(1.012); }

.faq-section { max-width: 980px; }
.faq-grid { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { overflow: hidden; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.faq-item:hover, .faq-item.active, .faq-item.is-open { border-color: var(--line-strong); box-shadow: none; }
.faq-question { display: grid; grid-template-columns: 1fr auto; gap: 1.4rem; width: 100%; padding: 1.45rem 0; color: var(--paper); background: transparent; border: 0; font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 400; line-height: 1.2; text-align: left; cursor: pointer; }
.faq-question:hover { color: var(--gold-bright); }
.faq-icon { width: 18px; height: 18px; margin: .1rem 0 0; color: var(--gold); transition: transform .25s ease; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer { overflow: visible; max-height: none; }
html.js .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
html.js .faq-item.is-open .faq-answer { max-height: 28rem; }
.faq-answer p { max-width: 50rem; margin: 0; padding: 0 2.3rem 1.45rem 0; color: var(--paper-muted); font-size: .94rem; }

.pricing-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; max-width: none; margin: 2.5rem 0 0; border: 1px solid var(--line); background: var(--line); }
.pricing-card { position: relative; min-width: 0; border: 0; border-radius: 0; padding: 2rem; color: var(--paper); background: var(--ink); text-align: left; }
.pricing-card.popular { border: 0; box-shadow: none; background: #292317; transform: none; }
.popular-tag { display: inline-block; margin-bottom: 1.8rem; padding: 0; color: var(--gold-bright); background: transparent; border-radius: 0; font-size: .64rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.pricing-card h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.price { margin-bottom: 1.6rem; color: var(--gold-bright); -webkit-text-fill-color: currentColor; background: transparent; font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; }
.price span { color: var(--paper-muted); font-family: var(--sans); font-size: .82rem; }
.pricing-card ul { margin: 0 0 2rem; padding: 0; list-style: none; }
.pricing-card li { border-bottom: 1px solid var(--line); padding: .65rem 0; color: var(--paper-muted); font-size: .85rem; }
.pricing-cta { display: inline-flex; padding: .75rem 0; color: var(--gold-bright); background: transparent; border-bottom: 1px solid currentColor; border-radius: 0; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; transition: color .2s ease; }
.pricing-cta:hover { color: var(--paper); transform: none; }
.final-cta { width: min(100% - 3rem, 1400px); margin: 0 auto; padding-top: clamp(6rem, 12vw, 11rem); padding-bottom: clamp(6rem, 12vw, 11rem); border-top: 1px solid var(--line-strong); text-align: center; }
.final-cta h2 { max-width: 11ch; margin: 0 auto; font-size: clamp(3.2rem, 7vw, 7rem); }
.final-cta p { margin: 1.6rem 0 2rem; color: var(--paper-muted); }
.footer { width: min(100% - 3rem, 1400px); margin: 0 auto; padding: 2.2rem 0 3rem; border-top: 1px solid var(--line); text-align: left; }
.social-links { display: flex; justify-content: flex-start; gap: .5rem; }
.social-link { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 0; color: var(--paper-muted); background: transparent; transition: color .2s ease, border-color .2s ease; }
.social-link svg { width: 15px; height: 15px; }
.social-link:hover { border-color: var(--gold); color: var(--gold-bright); background: transparent; box-shadow: none; transform: none; }

[dir="rtl"] { text-align: right; }
[dir="rtl"] .section-header, [dir="rtl"] .footer { text-align: right; }
[dir="rtl"] .character-name, [dir="rtl"] .feature-card, [dir="rtl"] .pricing-card, [dir="rtl"] .faq-question { text-align: right; }
[dir="rtl"] .faq-answer p { padding: 0 0 1.45rem 2.3rem; }
[dir="rtl"] .section-tag::before { margin: 0 0 .23rem .7rem; }

@media (max-width: 940px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .hero-title { max-width: 12ch; }
  .hero-visual { max-width: 52rem; }
  .video-grid, .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-card.popular { order: -1; }
}
@media (max-width: 600px) {
  .nav, .hero, .content-section, .features-section, .gallery-section, .faq-section, .pricing-section, .final-cta, .footer { width: min(100% - 2rem, 1400px); }
  .content-section.alt-bg, .pricing-section { width: 100%; }
  .content-section.alt-bg > *, .pricing-section > * { width: min(100% - 2rem, 1400px); }
  .nav { min-height: 64px; }
  .logo-text { font-size: 1rem; letter-spacing: .1em; }
  .cta-nav { padding: .55rem .66rem; font-size: .57rem; }
  .hero { padding: 3.5rem 0 5rem; }
  .hero-title { max-width: 10ch; font-size: clamp(3.35rem, 17vw, 4.75rem); }
  .hero-subtitle { margin-top: 1.5rem; }
  .trust-badges { grid-template-columns: 1fr; gap: .45rem; }
  .video-grid, .features-grid { grid-template-columns: 1fr; }
  .video-card { min-height: 31rem; }
  .feature-card { min-height: 0; }
  .feature-icon { margin-bottom: 1.7rem; }
  .faq-question { font-size: 1.15rem; }
  .faq-answer p { padding-right: 0; }
  [dir="rtl"] .faq-answer p { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
