:root {
  color-scheme: light;
  --ink: #151515;
  --subtle: #555b63;
  --soft: #7a8088;
  --line: #ded9d2;
  --paper: #f5f2ed;
  --panel: #fffaf2;
  --white: #ffffff;
  --brand: #ff6a24;
  --brand-deep: #c64513;
  --green: #087a5a;
  --blue: #3f59e8;
  --shadow: 0 26px 80px rgba(39, 33, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(245, 242, 237, 0) 420px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 clamp(20px, 4vw, 54px);
  border-bottom: 1px solid rgba(50, 44, 38, 0.1);
  background: rgba(245, 242, 237, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(255, 106, 36, 0.28);
}

.nav-links {
  gap: 24px;
  color: var(--subtle);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(660px, 1.32fr);
  gap: clamp(12px, 2.5vw, 34px);
  align-items: start;
  min-height: calc(100vh - 66px);
  padding: clamp(18px, 2.6vw, 36px) clamp(20px, 7vw, 104px) 34px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: 0.94;
  font-weight: 800;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 span {
  display: block;
}

.title-emphasis {
  margin-top: 12px;
  font-weight: 860;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 650px;
  color: #3f4348;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 18px;
}

.button,
.download-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  min-height: 66px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 780;
}

.button small {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 650;
  opacity: 0.72;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(21, 21, 21, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.58);
}

.button:hover,
.download-card:hover {
  transform: translateY(-2px);
}

.release-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--subtle);
  font-size: 13px;
}

.release-strip span {
  padding: 7px 10px;
  border: 1px solid rgba(50, 44, 38, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.product-shot {
  display: contents;
  margin: 0;
}

.product-shot img {
  display: block;
  width: min(82vw, 1360px);
  max-width: none;
  min-width: 0;
  height: auto;
  margin-bottom: -8.2vw;
  transform: translate(-7vw, -8.2vw);
}

.use-cases,
.workflow,
.details,
.scenarios,
.release {
  padding: clamp(56px, 7vw, 92px) clamp(20px, 7vw, 104px);
}

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

.use-cases article,
.workflow-grid div,
.download-card {
  border: 1px solid rgba(50, 44, 38, 0.11);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.use-cases article {
  min-height: 210px;
  padding: 24px;
}

.use-cases span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--brand-deep);
  font-weight: 800;
}

.use-cases h2 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 27px;
  overflow-wrap: anywhere;
}

.use-cases p,
.section-copy p,
.workflow-grid span,
.download-card em {
  color: var(--subtle);
  line-height: 1.72;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(32px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1d1b18;
  color: var(--white);
}

.workflow .eyebrow {
  color: #77e4bd;
}

.section-copy p {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

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

.workflow-grid div {
  min-height: 154px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.12);
}

.workflow-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.workflow-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.details {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}

.section-copy.light p {
  max-width: 600px;
  margin-top: 22px;
  color: var(--subtle);
  font-size: 17px;
  line-height: 1.72;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list article {
  padding: 24px;
  border: 1px solid rgba(50, 44, 38, 0.11);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
}

.detail-list strong,
.scenario-grid h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.detail-list p,
.scenario-grid p {
  margin-bottom: 0;
  color: var(--subtle);
  line-height: 1.72;
}

.scenarios {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(460px, 1fr);
  gap: clamp(30px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}

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

.scenario-grid article {
  min-height: 160px;
  padding: 22px;
  border-left: 3px solid var(--brand);
  background: rgba(255, 255, 255, 0.42);
}

.release {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

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

.download-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
}

.platform-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #111111;
  border: 1px solid rgba(17, 17, 17, 0.92);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.16);
}

.platform-icon img {
  display: block;
  max-width: 24px;
  max-height: 24px;
}

.download-card strong {
  font-size: 24px;
}

.download-card small {
  color: var(--brand-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.download-card em {
  font-style: normal;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(20px, 7vw, 104px);
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .workflow,
  .details,
  .scenarios,
  .release {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .product-shot {
    display: block;
    max-width: none;
  }

  .product-shot img {
    width: min(126vw, 1040px);
    max-width: none;
    margin-inline: auto;
    margin-bottom: -56px;
    transform: translateY(-56px);
  }

  .use-cases {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 22px 20px 32px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 0.96;
  }

  .title-emphasis {
    margin-top: 14px;
  }

  .use-cases h2 {
    font-size: 25px;
  }

  .hero-text {
    font-size: 17px;
  }

  .button,
  .download-card {
    width: 100%;
  }

  .release-strip span {
    max-width: 100%;
  }

  .product-shot {
    display: block;
    width: calc(100% + 80px);
    max-width: none;
    margin: -46px -40px -40px;
    overflow: visible;
  }

  .product-shot img {
    width: 132vw;
    max-width: none;
    margin-left: 50%;
    margin-bottom: -42px;
    transform: translate(-50%, -42px);
  }

  .workflow-grid,
  .scenario-grid,
  .download-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  footer {
    flex-direction: column;
  }
}
