/* PIN-UP Landing — site3 (Solar Noir) */

:root {
  --bg: #111318;
  --surface: #1a1d24;
  --surface-2: #23272f;
  --ink: #f5f6f8;
  --muted: #9aa3b2;
  --line: rgba(245, 246, 248, 0.1);
  --lime: #b8f135;
  --lime-deep: #9ad41f;
  --orange: #ff6b35;
  --orange-deep: #e5521f;
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1060px;
  --header-h: 68px;
  --banner-h: 230px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.66;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(184, 241, 53, 0.07), transparent),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--lime);
  color: #1a2008;
  font-family: var(--font-display);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(17, 19, 24, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo img {
  width: auto;
  height: 34px;
}

.header__actions {
  display: flex;
  gap: 8px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 0.94rem;
}

.btn--primary {
  background: var(--lime);
  color: #1a2008;
  box-shadow: 0 6px 20px rgba(184, 241, 53, 0.3);
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* Banner */

.section-banner {
  position: relative;
  width: 100%;
  min-height: var(--banner-h);
  overflow: hidden;
}

.section-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-banner__overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--banner-h);
  padding: 36px 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.5) 0%, rgba(17, 19, 24, 0.88) 100%);
}

.section-banner--lime .section-banner__overlay {
  background: linear-gradient(180deg, rgba(184, 241, 53, 0.12) 0%, rgba(17, 19, 24, 0.9) 100%);
}

.section-banner--orange .section-banner__overlay {
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.15) 0%, rgba(17, 19, 24, 0.9) 100%);
}

.section-banner__title {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: rgba(17, 19, 24, 0.75);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Section body */

.section__body {
  padding: 44px 0 52px;
}

.section--shade .section__body {
  background: var(--surface);
}

.section__lead {
  max-width: 70ch;
  color: var(--muted);
}

.section__lead + .section__lead,
.section__lead + .grid,
.section__lead + .duo,
.section__lead + .table-wrap,
.section__lead + .faq {
  margin-top: 16px;
}

.section__subtitle {
  margin-top: 28px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--lime);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.grid__item {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--lime);
}

.grid__item--orange {
  border-top-color: var(--orange);
}

.grid__item h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.grid__item p {
  font-size: 0.92rem;
  color: var(--muted);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.duo__panel {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.duo__panel h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 1.2rem;
  color: var(--muted);
}

.list li::marker {
  color: var(--orange);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.table th {
  background: var(--surface-2);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.table tr:last-child td {
  border-bottom: none;
}

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

.hint {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(184, 241, 53, 0.08);
  border: 1px solid rgba(184, 241, 53, 0.25);
  font-size: 0.98rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pills span {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.pills strong {
  color: var(--lime);
}

/* FAQ */

.faq {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.faq details {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.faq summary {
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--lime);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Footer */

.footer {
  padding: 40px 0 48px;
  background: #0a0c10;
  border-top: 1px solid var(--line);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
}

.footer__brand img {
  width: auto;
  height: 30px;
}

.footer__copy,
.footer__disclaimer,
.cookies-note {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .grid,
  .grid--2,
  .duo {
    grid-template-columns: 1fr;
  }

  :root {
    --banner-h: 190px;
  }
}

@media (max-width: 600px) {
  .header__actions .btn--ghost {
    display: none;
  }

  .section__body {
    padding: 32px 0 40px;
  }
}
