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

:root {
  color-scheme: dark;
  --bg: #070908;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.13);
  --text: #f3f6f2;
  --muted: #a9b2a9;
  --soft: #6f796f;
  --green: #46e677;
  --green-dark: #143e25;
  --red: #ff5d5d;
  --blue: #6db8ff;
  --amber: #f5c451;
  --shadow: rgba(0, 0, 0, 0.42);
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(27, 56, 34, 0.52), transparent 470px),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 9, 8, 0.82);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.nav-inner,
.content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 24px var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.nav-links .support-link {
  color: #07100a;
  background: var(--green);
}

.nav-links .support-link:hover,
.nav-links .support-link:focus-visible {
  color: #07100a;
  background: #76f19a;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.94) 0%, rgba(7, 9, 8, 0.82) 40%, rgba(7, 9, 8, 0.25) 100%),
    linear-gradient(180deg, transparent 0%, rgba(7, 9, 8, 0.18) 62%, var(--bg) 100%);
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  align-items: start;
  gap: 18px;
  padding: 92px 22px 0 max(40%, 420px);
  opacity: 0.88;
  transform: rotate(-4deg);
}

.hero-shot {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
}

.hero-shot img {
  width: 100%;
}

.hero-shot:nth-child(2),
.hero-shot:nth-child(4) {
  margin-top: 80px;
}

.hero-shot:nth-child(3) {
  margin-top: 32px;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 86px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(70, 230, 119, 0.24);
  border-radius: 8px;
  color: var(--green);
  background: rgba(70, 230, 119, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 620px;
  font-size: 76px;
  line-height: 0.96;
  font-weight: 900;
}

.hero-copy {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #07100a;
  border-color: transparent;
  background: var(--green);
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.button.primary:hover,
.button.primary:focus-visible {
  color: #07100a;
  background: #76f19a;
}

.hero-note {
  margin-top: 22px;
  color: var(--soft);
  font-size: 14px;
}

section {
  padding: 84px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  max-width: 690px;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 900;
}

.section-head p,
.support-intro {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.feature-card,
.info-card,
.form-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
}

.feature-card {
  min-height: 190px;
  padding: 20px;
}

.feature-card h3,
.info-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-card p,
.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.feature-card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #07100a;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.shot-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.shot-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.shot-card:nth-child(2),
.shot-card:nth-child(4) {
  margin-top: 42px;
}

.support-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(120deg, rgba(70, 230, 119, 0.14), rgba(109, 184, 255, 0.09) 48%, rgba(255, 93, 93, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-card {
  padding: 20px;
}

.info-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.email-link {
  color: var(--green);
  font-weight: 800;
}

.form-panel {
  padding: 22px;
  background: rgba(10, 15, 12, 0.78);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(70, 230, 119, 0.18);
}

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.form-status {
  color: var(--soft);
  font-size: 13px;
}

.support-hero {
  padding: 92px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(7, 9, 8, 0.68)),
    url("/price/assets/01-title.png") right 12% top 38% / 330px auto no-repeat;
}

.support-hero h1 {
  font-size: 60px;
}

.support-hero .support-intro {
  margin-top: 18px;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 900px) {
  .nav-inner,
  .content,
  .hero-content {
    width: min(100% - 24px, 760px);
  }

  .nav-inner {
    min-height: 58px;
  }

  .nav-links a:not(.support-link) {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 9, 8, 0.72) 0%, rgba(7, 9, 8, 0.94) 58%, var(--bg) 100%);
  }

  .hero-media {
    grid-template-columns: repeat(3, 180px);
    justify-content: center;
    padding: 84px 0 0;
    gap: 12px;
    opacity: 0.48;
  }

  .hero-shot:nth-child(n+4) {
    display: none;
  }

  h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section-head,
  .support-layout,
  .footer-inner {
    display: grid;
  }

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

  .shot-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shot-card:nth-child(4),
  .shot-card:nth-child(5) {
    display: none;
  }

  .support-layout,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .support-hero {
    background:
      linear-gradient(180deg, rgba(7, 9, 8, 0.72), var(--bg)),
      url("/price/assets/01-title.png") right -70px top 48px / 240px auto no-repeat;
  }

  .support-hero h1 {
    font-size: 46px;
  }
}

@media (max-width: 620px) {
  .brand span {
    font-size: 16px;
  }

  .nav-links .support-link {
    min-height: 36px;
    padding: 0 10px;
  }

  .hero,
  .hero-content {
    min-height: 660px;
  }

  .hero-media {
    grid-template-columns: repeat(3, 144px);
    padding-top: 70px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding: 62px 0;
  }

  .feature-grid,
  .support-form {
    grid-template-columns: 1fr;
  }

  .shot-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .shot-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
  }

  .shot-card:nth-child(4),
  .shot-card:nth-child(5) {
    display: block;
  }

  .shot-card:nth-child(2),
  .shot-card:nth-child(4) {
    margin-top: 0;
  }

  .form-foot {
    display: grid;
  }
}
