:root {
  --bg: #050814;
  --surface: #091121;
  --surface-soft: rgba(12, 19, 35, 0.78);
  --surface-border: rgba(162, 184, 255, 0.12);
  --text-main: #f6f7fb;
  --text-soft: rgba(232, 236, 247, 0.76);
  --text-muted: rgba(232, 236, 247, 0.6);
  --accent-green: #2dd15e;
  --accent-blue: #607bff;
  --cta-top: #ff8f17;
  --cta-bottom: #ff5a00;
  --cta-text: #fff7f0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --hero-cta-left-desktop: 16.4%;
  --hero-cta-top-desktop: 72.8%;
  --hero-cta-width-desktop: 27%;
  --hero-cta-height-desktop: 7.3%;
  --hero-cta-left-mobile: 49.6%;
  --hero-cta-top-mobile: 87.0%;
  --hero-cta-width-mobile: 63%;
  --hero-cta-height-mobile: 5%;
  --hero-login-left-desktop: 17.2%;
  --hero-login-top-desktop: 83.4%;
  --hero-login-width-desktop: 19.5%;
  --hero-login-height-desktop: 5.8%;
  --hero-login-left-mobile: 41.4%;
  --hero-login-top-mobile: 95.3%;
  --hero-login-width-mobile: 31%;
  --hero-login-height-mobile: 4.8%;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(44, 77, 255, 0.24), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 133, 0, 0.18), transparent 26%),
    var(--bg);
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--text-main);
}

.landing {
  min-height: 100vh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(3, 7, 20, 0.04), rgba(3, 7, 20, 0.16)),
    linear-gradient(135deg, #030816, #0a0f29 52%, #140e2b);
}

.hero-frame {
  position: relative;
  width: min(100vw, calc(100vh * 1.5));
  aspect-ratio: 1536 / 1024;
  container-type: inline-size;
}

.hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 20, 0.02), rgba(5, 8, 20, 0.08) 42%, rgba(5, 8, 20, 0.18)),
    linear-gradient(90deg, rgba(4, 6, 19, 0.08), transparent 28%, transparent 72%, rgba(4, 6, 19, 0.08));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-button {
  position: absolute;
  left: var(--hero-cta-left-desktop);
  top: var(--hero-cta-top-desktop);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--hero-cta-width-desktop);
  height: var(--hero-cta-height-desktop);
  min-height: 0;
  padding: 0 34px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--cta-text);
  background: linear-gradient(180deg, var(--cta-top), var(--cta-bottom));
  box-shadow:
    0 0 0 2px rgba(255, 244, 228, 0.92),
    0 12px 36px rgba(255, 102, 0, 0.4),
    0 0 26px rgba(255, 122, 24, 0.28),
    inset 0 1px 0 rgba(255, 214, 170, 0.45);
  border: 1px solid rgba(255, 208, 168, 0.58);
  font-family: "Anton", sans-serif;
  font-size: clamp(1rem, 2.55cqi, 2rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(116, 35, 0, 0.22);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
  pointer-events: auto;
  white-space: nowrap;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translate(-50%, calc(-50% - 2px));
  box-shadow:
    0 0 0 2px rgba(255, 244, 228, 0.96),
    0 18px 46px rgba(255, 102, 0, 0.48),
    0 0 30px rgba(255, 122, 24, 0.34),
    inset 0 1px 0 rgba(255, 214, 170, 0.5);
  filter: saturate(1.08);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.login-hit-area {
  position: absolute;
  left: var(--hero-login-left-desktop);
  top: var(--hero-login-top-desktop);
  transform: translate(-50%, -50%);
  width: var(--hero-login-width-desktop);
  height: var(--hero-login-height-desktop);
  pointer-events: auto;
  border-radius: 10px;
}

.login-hit-area:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.seo-shell {
  position: relative;
  padding: clamp(56px, 7vw, 112px) 24px 88px;
}

.seo-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 20, 0), rgba(7, 10, 20, 0.52) 9%, rgba(7, 10, 20, 0.92)),
    radial-gradient(circle at top center, rgba(96, 123, 255, 0.1), transparent 38%);
  pointer-events: none;
}

.seo-stack {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.content-panel {
  padding: 28px;
  border: 1px solid var(--surface-border);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--surface-soft);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.intro-panel p:last-child,
.mini-card p,
.price-copy,
.faq-list p {
  color: var(--text-soft);
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffb36b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-panel h2,
.content-panel h3,
.content-panel p {
  margin-top: 0;
}

.content-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.intro-panel p {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  min-height: 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(162, 184, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
}

.card-index {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mini-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.mini-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(162, 184, 255, 0.08);
  background: rgba(255, 255, 255, 0.024);
  color: var(--text-soft);
  font-weight: 600;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at left center, rgba(255, 112, 10, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0d1427;
  border: 1px solid rgba(255, 157, 59, 0.18);
}

.price-copy,
.price-note,
.price-meta {
  margin-bottom: 0;
}

.price-copy-group,
.price-actions {
  display: grid;
  gap: 8px;
}

.price-copy {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-note {
  max-width: 34rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cta-top), var(--cta-bottom));
  color: var(--cta-text);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255, 102, 0, 0.22);
}

.price-actions {
  justify-items: end;
}

.price-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.faq-list details {
  padding: 18px 20px;
  border: 1px solid rgba(162, 184, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.024);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}

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

.faq-list details p {
  margin: 12px 0 0;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: min(440px, calc(100vw - 32px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(162, 184, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(7, 12, 25, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-title,
.cookie-text {
  margin: 0;
}

.cookie-title {
  margin-bottom: 6px;
  color: #ffb36b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-text {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-primary {
  color: var(--cta-text);
  background: linear-gradient(180deg, var(--cta-top), var(--cta-bottom));
  box-shadow: 0 10px 26px rgba(255, 102, 0, 0.24);
}

.cookie-btn-secondary {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 820px) {
  .hero-image {
    object-fit: contain;
    object-position: center top;
  }

  .hero-frame {
    width: min(100vw, calc(100vh * 0.4745));
    aspect-ratio: 864 / 1821;
  }

  .cta-button {
    left: var(--hero-cta-left-mobile);
    top: var(--hero-cta-top-mobile);
    width: var(--hero-cta-width-mobile);
    height: var(--hero-cta-height-mobile);
    min-height: 0;
    min-width: 0;
    padding: 0 16px;
    font-size: clamp(0.92rem, 3.7cqi, 1.55rem);
  }

  .login-hit-area {
    left: calc(var(--hero-login-left-mobile) + 10px);
    top: var(--hero-login-top-mobile);
    width: var(--hero-login-width-mobile);
    height: var(--hero-login-height-mobile);
  }

  .seo-shell {
    padding: 44px 16px 64px;
  }

  .content-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .content-panel h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .intro-panel p {
    font-size: 1rem;
  }

  .compact-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .price-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-actions {
    width: 100%;
    justify-items: stretch;
  }

  .price-cta {
    width: 100%;
  }

  .price-meta {
    text-align: center;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }
}
