:root {
  color-scheme: dark;
  --bg: #090b0d;
  --panel: #11161a;
  --panel-strong: #171f24;
  --line: #263138;
  --text: #f4f7f8;
  --muted: #9eacb2;
  --green: #6de0be;
  --cyan: #78c7ff;
  --amber: #f1b86a;
  --red: #ff7e72;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 154px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(120, 199, 255, 0.10), rgba(9, 11, 13, 0) 360px),
    radial-gradient(circle at 80% 0%, rgba(109, 224, 190, 0.13), transparent 360px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

.sale-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  background: linear-gradient(90deg, #6de0be, #78c7ff);
  color: #061520;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  min-height: 88px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 13, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 21px;
  font-weight: 900;
}

.site-header > .brand {
  justify-self: start;
}

.brand img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: #c7d0d3;
  font-size: 15px;
  font-weight: 800;
}

nav a:hover,
.header-cta:hover {
  color: var(--text);
}

.header-cta {
  justify-self: end;
  min-width: 138px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid rgba(109, 224, 190, 0.5);
  border-radius: 8px;
  background: var(--green);
  color: #06221a;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(109, 224, 190, 0.20);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: clamp(34px, 5vw, 70px) clamp(18px, 5vw, 64px) clamp(70px, 9vw, 118px);
  text-align: center;
  overflow: hidden;
  background: #090b0d;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -7% -5% -4%;
  z-index: 0;
  background: url("assets/hero-dj-controller-serato.png") center -205px / min(1540px, 132vw) auto no-repeat;
  filter: brightness(1.42) contrast(1.18) saturate(1.2);
  opacity: 0.96;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(9, 11, 13, 0.08), rgba(9, 11, 13, 0.22) 58%, #090b0d 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(48vw, 720px);
  max-width: 720px;
  margin-right: auto;
  margin-left: clamp(48px, 8vw, 140px);
  text-align: left;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.1vw, 68px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.72);
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 7.6vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: #c5d1d5;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.42;
}

.hero .hero-tagline {
  max-width: min(100%, 920px);
  margin-right: 0;
  margin-left: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.72);
}

.hero .hero-subcopy {
  max-width: 620px;
  margin: 0 0 0;
  color: #c5d1d5;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
  color: #06221a;
  box-shadow: 0 14px 34px rgba(109, 224, 190, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.hero-stats div {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 13, 16, 0.62);
  backdrop-filter: blur(14px);
}

.compatibility-strip {
  margin: -28px clamp(18px, 5vw, 64px) clamp(34px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.hero-stats dt {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.compat-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.compat-icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #fff;
}

.desktop-icon {
  border: 2px solid currentColor;
  border-radius: 5px;
}

.desktop-icon::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -7px;
  left: 5px;
  height: 2px;
  background: currentColor;
}

.desktop-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 2px;
  height: 7px;
  background: currentColor;
  transform: translateX(-50%);
}

.waveform-icon::before {
  content: "";
  position: absolute;
  inset: 4px 1px;
  background:
    linear-gradient(currentColor, currentColor) 0 50% / 3px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 7px 50% / 3px 18px no-repeat,
    linear-gradient(currentColor, currentColor) 14px 50% / 3px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 21px 50% / 3px 20px no-repeat;
}

.library-icon {
  border: 2px solid currentColor;
  border-radius: 5px;
}

.library-icon::before,
.library-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  left: 4px;
  height: 2px;
  background: currentColor;
}

.library-icon::before {
  top: 7px;
}

.library-icon::after {
  top: 14px;
}

.hero-support {
  max-width: 860px;
  margin: 28px auto 0;
  padding-top: 0;
}

.workflow-strip {
  width: min(calc(100% - 36px), 1180px);
  margin: 0 auto clamp(44px, 6vw, 76px);
  scroll-margin-top: 154px;
}

.hero-support ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-support li {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(9, 13, 16, 0.58);
  backdrop-filter: blur(14px);
  text-align: center;
}

.feature-card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #203832;
  color: var(--green);
  font-style: normal;
}

.feature-card-icon::before,
.feature-card-icon::after {
  content: "";
  position: absolute;
}

.suggestions-icon::before {
  inset: 10px 9px 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.suggestions-icon::after {
  right: 9px;
  bottom: 8px;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: right center;
}

.creativity-icon::before {
  top: 8px;
  left: 50%;
  width: 14px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 5px 5px;
  transform: translateX(-50%);
}

.creativity-icon::after {
  right: 14px;
  bottom: 8px;
  left: 14px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.deck-icon::before {
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.deck-icon::after {
  top: 19px;
  right: 7px;
  left: 7px;
  height: 2px;
  background: currentColor;
}

.gems-icon::before {
  top: 8px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.gems-icon::after {
  top: 13px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.hero-support strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-support span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.centered-tagline {
  margin: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 64px) clamp(72px, 9vw, 118px);
  text-align: center;
}

.feature-band {
  margin: 0;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 64px);
  background: rgba(11, 16, 18, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-band.compact-top {
  padding-top: clamp(28px, 4vw, 52px);
}

.feature-band.band-muted {
  background:
    linear-gradient(180deg, rgba(109, 224, 190, 0.035), rgba(120, 199, 255, 0.025)),
    rgba(17, 22, 26, 0.72);
}

.workflow-strip + .centered-tagline {
  margin-top: clamp(44px, 6vw, 84px);
}

.centered-tagline h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 5.1vw, 68px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.42);
}

.centered-tagline p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #c5d1d5;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}

.app-detection-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
  margin-top: clamp(28px, 5vw, 52px);
}

.app-detection-images img {
  display: block;
  width: 80%;
  max-width: 420px;
  height: auto;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.single-feature-image {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 52px);
}

.single-feature-image img {
  display: block;
  width: min(80%, 420px);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.track-flow-images {
  display: grid;
  grid-template-columns: minmax(180px, 280px) auto minmax(300px, 520px);
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  margin-top: clamp(28px, 5vw, 52px);
}

.track-flow-images img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.track-flow-images span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(109, 224, 190, 0.42);
  border-radius: 50%;
  background: rgba(9, 13, 16, 0.72);
  color: var(--green);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.image-callout {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
}

.callout-lens {
  position: absolute;
  top: 57.4%;
  left: 75.4%;
  width: clamp(58px, 6vw, 78px);
  height: clamp(58px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: rgba(109, 224, 190, 0.12);
  box-shadow:
    0 0 0 2px rgba(109, 224, 190, 0.72),
    0 14px 34px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.callout-lens b {
  display: grid;
  place-items: center;
  width: clamp(28px, 2.8vw, 34px);
  height: clamp(21px, 2.1vw, 26px);
  border: 2px solid rgba(109, 224, 190, 0.72);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(42, 58, 62, 0.96), rgba(20, 31, 34, 0.98));
  color: #f4f7f8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(15px, 1.7vw, 21px);
  font-weight: 900;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 1px 0 rgba(0, 0, 0, 0.42);
}

.callout-lens::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -10px;
  width: 28px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
  transform-origin: left center;
}

footer {
  margin: 0 clamp(18px, 5vw, 64px);
}


.blog-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 64px) clamp(24px, 4vw, 42px);
  text-align: center;
}

.blog-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.1vw, 68px);
  line-height: 0.95;
}

.blog-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 0 auto;
  color: #c5d1d5;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 clamp(18px, 5vw, 64px) clamp(70px, 10vw, 128px);
}

.pricing-page {
  overflow: visible;
  min-height: 100vh;
}

.pricing-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 64px) clamp(24px, 4vw, 42px);
  text-align: center;
}

.pricing-hero h1 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(38px, 5.1vw, 68px);
  line-height: 0.95;
}

.pricing-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto;
  color: #c5d1d5;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 400px));
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  width: min(calc(100% - 36px), 880px);
  margin: clamp(18px, 3vw, 34px) auto clamp(48px, 7vw, 86px);
  scroll-margin-top: 154px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 500px;
  padding: clamp(24px, 3.4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(17, 22, 26, 0.9);
  box-shadow: var(--shadow);
}

.featured-pricing-card {
  border-color: rgba(109, 224, 190, 0.64);
  background:
    radial-gradient(circle at 50% 0%, rgba(109, 224, 190, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(31, 51, 46, 0.96), rgba(17, 22, 26, 0.94));
}

.pricing-card-header {
  position: relative;
}

.pricing-card-header span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card-header .pricing-badge {
  position: absolute;
  top: -6px;
  right: 0;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--green);
  color: #06221a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card-header strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(50px, 6vw, 72px);
  line-height: 0.95;
}

.pricing-card-header .sale-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.sale-price s {
  color: var(--muted);
  font-size: 0.58em;
  font-weight: 800;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 126, 114, 0.88);
}

.sale-price span {
  color: var(--text);
  font-size: 0.43em;
}

.pricing-card-header p {
  max-width: 440px;
  min-height: 48px;
  color: #c5d1d5;
  font-size: 16px;
  line-height: 1.5;
}

.pricing-card .button {
  width: 100%;
  min-height: 54px;
}

.pricing-card ul,
.pricing-includes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.pricing-includes {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(109, 224, 190, 0.035), rgba(120, 199, 255, 0.025)),
    rgba(17, 22, 26, 0.72);
}

.pricing-includes > div,
.pricing-includes ul,
.pricing-faq > div,
.pricing-faq h2 {
  width: min(100%, 1180px);
}

.pricing-includes > div {
  justify-self: end;
  max-width: 460px;
}

.pricing-includes h2,
.pricing-faq h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1;
}

.pricing-includes p {
  color: #c5d1d5;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.5;
}

.pricing-includes ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
}

.pricing-includes li,
.pricing-faq article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 13, 16, 0.58);
}

.pricing-includes strong,
.pricing-includes span {
  display: block;
}

.pricing-includes strong,
.pricing-faq h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.pricing-includes span,
.pricing-faq p {
  color: var(--muted);
  line-height: 1.5;
}

.pricing-faq {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 64px);
  background: rgba(11, 16, 18, 0.58);
}

.pricing-faq h2 {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pricing-faq > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-faq article {
  min-height: 162px;
}

.about-page {
  overflow: visible;
}

.about-hero h1 {
  max-width: 980px;
}

.about-story {
  display: grid;
  gap: 16px;
  width: min(calc(100% - 36px), 980px);
  margin: clamp(18px, 3vw, 34px) auto clamp(48px, 7vw, 86px);
}

.about-story article {
  padding: clamp(24px, 3.4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(17, 22, 26, 0.9);
  box-shadow: var(--shadow);
}

.about-story article:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(109, 224, 190, 0.045), rgba(120, 199, 255, 0.025)),
    rgba(17, 22, 26, 0.9);
}

.about-story h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
}

.about-story p {
  max-width: 760px;
  color: #c5d1d5;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.5;
}

.about-story .button {
  margin-top: 8px;
}

.legal-page {
  overflow: visible;
}

.legal-document {
  width: min(calc(100% - 36px), 920px);
  margin: clamp(18px, 3vw, 34px) auto clamp(58px, 8vw, 108px);
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(17, 22, 26, 0.9);
  box-shadow: var(--shadow);
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.08;
}

.legal-document h2:first-of-type {
  margin-top: 22px;
}

.legal-document p {
  color: #c5d1d5;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
}

.legal-document a {
  color: var(--green);
  font-weight: 800;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 22, 26, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blog-card.featured-post {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(33, 56, 50, 0.88), rgba(17, 22, 26, 0.88));
}

.blog-card span {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.55;
}

.blog-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
}

.final-cta {
  margin: 0;
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, rgba(109, 224, 190, 0.12), transparent 42%),
    #0b1012;
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 5.1vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.final-cta p {
  max-width: 820px;
  margin: 20px auto 30px;
  color: #c5d1d5;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}

.site-footer {
  margin: 0;
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 64px) 28px;
  border-top: 1px solid var(--line);
  background: #080a0c;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(32px, 6vw, 86px);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 22px;
  line-height: 1.55;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 430px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #d4dddf;
  font-size: 13px;
  font-weight: 800;
}

.newsletter {
  max-width: 430px;
  margin-top: 28px;
}

.newsletter label {
  display: block;
  margin-bottom: 10px;
  color: #d4dddf;
  font-weight: 800;
  line-height: 1.4;
}

.newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter input {
  min-height: 44px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #101519;
  color: var(--text);
}

.newsletter button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--green);
  color: #06221a;
  cursor: pointer;
  font-weight: 900;
}

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

.footer-columns h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.footer-columns a:hover,
.social-links a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-size: min(1180px, 170vw) auto;
    background-position: 58% 32%;
  }

  .hero-copy {
    width: min(100%, 760px);
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-support ul,
  .blog-grid,
  .pricing-plans,
  .pricing-faq > div,
  .footer-main,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-includes {
    grid-template-columns: 1fr;
  }

  .pricing-includes > div,
  .pricing-includes ul {
    justify-self: center;
    max-width: 760px;
  }

}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    min-width: 112px;
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero {
    padding: 36px 16px 24px;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero::before {
    inset: -4% -26% 0;
    background-size: 980px auto;
    background-position: center 22%;
    opacity: 0.82;
  }

  .hero .hero-tagline {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-support {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-stats,
  .app-detection-images,
  .track-flow-images,
  .pricing-plans,
  .pricing-includes ul,
  .pricing-faq > div,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .track-flow-images span {
    transform: rotate(90deg);
    justify-self: center;
  }

  .blog-card.featured-post {
    grid-column: auto;
  }

  .blog-grid {
    margin-right: 16px;
    margin-left: 16px;
  }

  .footer-main,
  .footer-columns,
  .footer-bottom,
  .newsletter div {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .hero-support li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-actions .button {
    width: 100%;
  }

}
