:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070707;
  color: #f7f1e8;
  --ks-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ks-bg: #070707;
  --ks-panel: #10100f;
  --ks-panel-soft: #171613;
  --ks-ink: #f7f1e8;
  --ks-muted: rgba(247, 241, 232, 0.68);
  --ks-soft: rgba(247, 241, 232, 0.1);
  --ks-line: rgba(247, 241, 232, 0.14);
  --ks-copper: #b98a43;
  --ks-copper-strong: #e3b66d;
  --ks-green: #e3b66d;
  --ks-paper: #e7e4dc;
  --ks-dark-text: #151515;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: #070707;
  color: var(--ks-ink);
}

body,
button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
summary {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

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

.ks-page {
  overflow-x: hidden;
  padding-bottom: 96px;
}

.ks-header,
.ks-hero-inner,
.ks-strip,
.ks-section-inner,
.ks-final {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.ks-header {
  position: sticky;
  z-index: 20;
  top: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  margin-top: 14px;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(18px);
}

.ks-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ks-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ks-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ks-nav::-webkit-scrollbar {
  display: none;
}

.ks-nav a {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(247, 241, 232, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.ks-nav a.active,
.ks-nav a:hover {
  border-color: rgba(201, 138, 69, 0.44);
  background: rgba(201, 138, 69, 0.12);
  color: var(--ks-ink);
}

.ks-header-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.ks-btn,
.ks-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 150ms var(--ks-ease-out),
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
  will-change: transform;
}

.ks-btn {
  background: var(--ks-copper-strong);
  color: #130d07;
}

.ks-btn:hover {
  background: #efbd75;
}

.ks-ghost {
  border: 1px solid var(--ks-line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ks-ink);
}

.ks-ghost:hover {
  border-color: rgba(247, 241, 232, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.ks-btn:active,
.ks-ghost:active,
.ks-nav a:active,
.ks-related a:active,
.ks-mobile a:active {
  transform: scale(0.98);
}

.ks-btn:focus-visible,
.ks-ghost:focus-visible,
.ks-nav a:focus-visible,
.ks-related a:focus-visible,
.ks-mobile a:focus-visible,
.ks-faq summary:focus-visible {
  outline: 2px solid var(--ks-copper-strong);
  outline-offset: 3px;
}

.ks-header .ks-btn,
.ks-header .ks-ghost {
  min-height: 40px;
  padding-inline: 13px;
  font-size: 13px;
}

.ks-hero {
  position: relative;
  min-height: 76svh;
  margin-top: -76px;
  overflow: hidden;
  border-bottom: 1px solid var(--ks-line);
  background: #050505;
}

.ks-hero::before,
.ks-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.ks-hero::before {
  background: var(--hero-image) center / cover no-repeat;
  opacity: 0.68;
  transform: scale(1.015);
}

.ks-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.99) 0%, rgba(7, 7, 7, 0.82) 43%, rgba(7, 7, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.76) 0%, rgba(7, 7, 7, 0.08) 36%, #070707 100%);
}

.ks-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 38px;
  align-items: end;
  min-height: 76svh;
  padding-top: 108px;
  padding-bottom: 54px;
}

.ks-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 830px;
  min-width: 0;
}

.ks-kicker,
.ks-label {
  color: var(--ks-copper-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ks-section .ks-label,
.ks-photo-copy .ks-label,
.ks-contact-panel .ks-label {
  display: none;
}

.ks-hero h1 {
  max-width: 790px;
  font-size: 70px;
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

.ks-lead {
  max-width: 620px;
  color: rgba(247, 241, 232, 0.78);
  font-size: 20px;
  line-height: 1.42;
}

.ks-hero-actions,
.ks-tags,
.ks-proof-pills,
.ks-related {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ks-hero-actions {
  margin-top: 4px;
}

.ks-hero-note {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 2px;
  border-top: 1px solid rgba(247, 241, 232, 0.2);
  padding-top: 18px;
}

.ks-hero-note p {
  max-width: 660px;
  color: rgba(247, 241, 232, 0.72);
  font-size: 15px;
  line-height: 1.48;
}

.ks-hero-note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ks-hero-note-list span {
  max-width: 100%;
  color: rgba(247, 241, 232, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.ks-tags span,
.ks-proof-pills span,
.ks-related a {
  max-width: 100%;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 241, 232, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.ks-tags span,
.ks-proof-pills span {
  padding: 10px 12px;
}

.ks-strip span,
.ks-card p,
.ks-panel p,
.ks-panel li,
.ks-price li,
.ks-step p,
.ks-final p {
  color: var(--ks-muted);
  line-height: 1.48;
}

.ks-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ks-line);
  background: #070707;
}

.ks-strip div {
  min-height: 118px;
  border-left: 1px solid var(--ks-line);
  padding: 24px 20px;
}

.ks-strip div:first-child {
  border-left: 0;
}

.ks-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ks-ink);
  font-size: 28px;
  line-height: 1;
}

.ks-section {
  padding: 88px 0 0;
}

.ks-section-inner {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.ks-section-head {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.ks-section h2 {
  max-width: 850px;
  color: var(--ks-ink);
  font-size: 48px;
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: 0;
}

.ks-section-head p,
.ks-editorial-copy p {
  max-width: 720px;
  color: var(--ks-muted);
  font-size: 18px;
  line-height: 1.52;
}

.ks-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.ks-editorial-copy {
  display: grid;
  gap: 18px;
}

.ks-editorial-points,
.ks-workflow,
.ks-faq {
  display: grid;
  gap: 12px;
}

.ks-point,
.ks-step {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--ks-line);
  padding-top: 18px;
}

.ks-point strong,
.ks-step strong {
  color: var(--ks-ink);
  font-size: 18px;
}

.ks-format-grid,
.ks-pricing {
  display: grid;
  gap: 12px;
}

.ks-format-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

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

.ks-card,
.ks-price,
.ks-panel {
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: var(--ks-panel);
}

.ks-card,
.ks-price {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 238px;
  padding: 24px;
}

.ks-card {
  gap: 18px;
}

.ks-format-grid .ks-card {
  min-height: 0;
}

.ks-format-grid .ks-card:first-child {
  grid-row: span 2;
  min-height: 342px;
  padding: 32px;
  background: #15130f;
}

.ks-format-grid .ks-card:first-child h3 {
  max-width: 430px;
  font-size: 34px;
  line-height: 1.04;
}

.ks-price {
  gap: 16px;
}

.ks-card span,
.ks-price small {
  color: var(--ks-copper-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ks-card span {
  display: none;
}

.ks-card h3,
.ks-price h3 {
  color: var(--ks-ink);
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
}

.ks-price strong {
  color: var(--ks-copper-strong);
  font-size: 34px;
  line-height: 1;
}

.ks-price ul,
.ks-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ks-price li,
.ks-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
}

.ks-price li::before,
.ks-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--ks-copper-strong);
}

.ks-panel {
  padding: 28px;
}

.ks-panel.light {
  background: var(--ks-paper);
  color: var(--ks-dark-text);
}

.ks-panel.light h2,
.ks-panel.light h3,
.ks-panel.light strong {
  color: var(--ks-dark-text);
}

.ks-panel.light p,
.ks-panel.light li {
  color: rgba(21, 21, 21, 0.72);
}

.ks-two {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
}

.ks-photo-band {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-top: 1px solid var(--ks-line);
  border-bottom: 1px solid var(--ks-line);
  background: var(--story-image) center / cover no-repeat;
}

.ks-photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.7) 38%, rgba(7, 7, 7, 0.14) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.08), #070707 100%);
}

.ks-photo-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100% - 40px, 1240px);
  max-width: 620px;
  margin: 0 auto;
  margin-left: max(20px, calc((100vw - 1240px) / 2));
  padding: 82px 0;
}

.ks-photo-copy h2 {
  font-size: 44px;
  line-height: 1.04;
}

.ks-photo-copy p {
  color: var(--ks-muted);
  font-size: 18px;
  line-height: 1.5;
}

.ks-faq details {
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: var(--ks-panel);
}

.ks-faq summary {
  cursor: pointer;
  min-height: 58px;
  padding: 18px 20px;
  color: var(--ks-ink);
  font-weight: 900;
}

.ks-faq p {
  padding: 0 20px 20px;
  color: var(--ks-muted);
  line-height: 1.48;
}

.ks-contact-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}

.ks-related a {
  padding: 10px 12px;
}

.ks-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 96px;
  border: 1px solid rgba(227, 182, 109, 0.28);
  border-radius: 8px;
  padding: 34px;
  background: #10100f;
}

.ks-final div {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.ks-final h2 {
  font-size: 46px;
  line-height: 1.04;
}

.ks-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ks-mobile {
  position: fixed;
  z-index: 30;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
}

.ks-mobile span {
  min-width: 0;
  color: rgba(247, 241, 232, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.ks-mobile a {
  flex: 0 0 auto;
  min-height: 40px;
  border-radius: 8px;
  padding: 12px;
  background: var(--ks-copper-strong);
  color: #130d07;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .ks-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .ks-header-actions .ks-ghost {
    display: none;
  }

  .ks-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ks-hero h1 {
    font-size: 58px;
  }

  .ks-strip,
  .ks-format-grid,
  .ks-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ks-editorial,
  .ks-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ks-header,
  .ks-hero-inner,
  .ks-strip,
  .ks-section-inner,
  .ks-final {
    width: min(100% - 24px, 1240px);
  }

  .ks-header {
    top: 8px;
    grid-template-columns: auto auto;
  }

  .ks-brand span {
    display: none;
  }

  .ks-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .ks-header-actions {
    justify-self: end;
  }

  .ks-hero {
    min-height: auto;
    margin-top: -118px;
  }

  .ks-hero::before {
    background-position: 58% center;
  }

  .ks-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.76) 44%, #070707 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.18));
  }

  .ks-hero-inner {
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 42px;
  }

  .ks-hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .ks-lead,
  .ks-section-head p,
  .ks-editorial-copy p,
  .ks-photo-copy p {
    font-size: 16px;
  }

  .ks-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ks-hero-actions a {
    width: 100%;
  }

  .ks-strip,
  .ks-format-grid,
  .ks-pricing {
    grid-template-columns: 1fr;
  }

  .ks-strip div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--ks-line);
  }

  .ks-strip div:first-child {
    border-top: 0;
  }

  .ks-section {
    padding-top: 64px;
  }

  .ks-section h2,
  .ks-photo-copy h2,
  .ks-final h2 {
    font-size: 34px;
  }

  .ks-card,
  .ks-price {
    min-height: auto;
  }

  .ks-format-grid .ks-card:first-child {
    grid-row: auto;
    min-height: auto;
    padding: 24px;
  }

  .ks-format-grid .ks-card:first-child h3 {
    font-size: 25px;
    line-height: 1.12;
  }

  .ks-photo-band {
    min-height: 520px;
    background-position: 64% center;
  }

  .ks-photo-copy {
    width: min(100% - 24px, 1240px);
    margin-inline: auto;
    padding: 62px 0;
  }

  .ks-final {
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 70px;
    padding: 24px;
  }

  .ks-final-actions {
    justify-content: stretch;
  }

  .ks-final-actions a {
    width: 100%;
  }

  .ks-mobile {
    display: flex;
  }
}

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

  .ks-btn,
  .ks-ghost,
  .ks-nav a,
  .ks-related a,
  .ks-mobile a {
    transition: none;
  }
}
