:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --text: #faf7f2;
  --muted: #cfc7bf;
  --panel: #151518;
  --panel-soft: #f8f4ec;
  --ink: #161311;
  --lime: #7cff6b;
  --pink: #ff5c9a;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px max(20px, calc((100% - 1180px) / 2));
  background: rgba(8, 8, 10, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(124, 255, 107, 0.7);
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

nav a {
  transition: color 180ms ease, border-color 180ms ease;
}

nav a:hover {
  color: var(--text);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(124, 255, 107, 0.55);
  border-radius: 999px;
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px max(20px, calc((100% - 1180px) / 2)) 70px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/karyne-cover-provocante.jpeg");
  background-size: cover;
  background-position: center 44%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(11, 11, 13, 0.98) 0%, rgba(11, 11, 13, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: #187a36;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--lime);
  color: #071207;
  box-shadow: 0 12px 34px rgba(124, 255, 107, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.dark-button {
  margin-top: 8px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.intro-band,
.policy-band {
  background: var(--panel-soft);
  color: var(--ink);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 620px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(22, 19, 17, 0.12);
  border-radius: 8px;
  background: #fffdf8;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #101114;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.access-copy p,
.policy-band p {
  color: rgba(22, 19, 17, 0.72);
}

.access-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 620px;
  background: #101114;
}

.access-media {
  min-height: 520px;
}

.access-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.access-copy {
  align-self: center;
  max-width: 620px;
  padding: 70px max(20px, calc((100vw - 1180px) / 2)) 70px 58px;
  color: var(--text);
}

.access-copy .eyebrow.dark {
  color: var(--pink);
}

.access-copy p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
}

.policy-list {
  display: grid;
  gap: 12px;
}

.policy-list p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(22, 19, 17, 0.1);
  border-radius: 8px;
  background: #fffdf8;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(18px);
}

.age-gate.is-hidden {
  display: none;
}

.age-box {
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #141417;
  box-shadow: var(--shadow);
}

.age-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
}

.age-box h2 {
  margin-top: 18px;
  font-size: 1.7rem;
}

.age-box p {
  color: rgba(255, 255, 255, 0.72);
}

.age-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
  }

  nav {
    gap: 10px;
    font-size: 0.84rem;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 108px;
    padding-bottom: 46px;
  }

  .hero-media {
    background-position: center 42%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.34) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .access-band,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .section-inner {
    padding: 56px 0;
  }

  .access-media {
    min-height: 420px;
  }

  .access-copy {
    padding: 46px 20px 56px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  nav {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.94rem;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
  }
}
