:root {
  --paper: #fbfaf7;
  --paper-2: #f4f1ea;
  --ink: #101010;
  --muted: #686864;
  --line: rgba(16, 16, 16, 0.12);
  --line-soft: rgba(16, 16, 16, 0.075);
  --card: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.055);
  --brand-orange: #ff7448;
  --brand-yellow: #fff4a8;
  --brand-blue: #a7e7f1;
  --brand-orange-deep: #ff5d2c;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 116, 72, 0.12), transparent 26%),
    radial-gradient(circle at 22% 20%, rgba(255, 244, 168, 0.32), transparent 28%),
    radial-gradient(circle at 60% 48%, rgba(167, 231, 241, 0.22), transparent 24%),
    var(--paper);
  color: var(--ink);
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.55), transparent 65%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0.55), transparent 65%);
}

.brand-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 100;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow), var(--brand-blue));
}

.page-glow {
  position: fixed;
  inset: auto -20% -40% auto;
  width: 760px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 231, 241, 0.25), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(255, 116, 72, 0.18);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text {
  font-size: 18px;
  letter-spacing: 0.09em;
  font-weight: 900;
}

.brand-subtext {
  font-size: 11px;
  color: var(--muted);
  font-weight: 800;
  margin-top: 2px;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: rgba(16, 16, 16, 0.7);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 116, 72, 0.42);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 2px rgba(16, 16, 16, 0.04);
}

.language-picker {
  display: inline-flex;
  align-items: center;
}

.language-picker select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 34px 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 28px 88px;
}

.section {
  margin-top: 84px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  margin-top: 52px;
}

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

.hero h1 {
  margin: 12px 0 0;
  max-width: 920px;
  font-weight: 900;
  font-size: clamp(2.7rem, 6vw, 5.65rem);
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  color: var(--muted);
  font-weight: 500;
}

.hero-copy strong {
  font-weight: 800;
  color: var(--ink);
}

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

.hero-video {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101010;
  box-shadow: 0 30px 90px rgba(16, 16, 16, 0.16);
}

.hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #101010;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  padding: 13px 20px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(255, 116, 72, 0.2);
}

.btn-primary:hover {
  background: var(--brand-orange-deep);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

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

.proof-strip article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.proof-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 116, 72, 0.4);
  box-shadow: 0 26px 58px rgba(16, 16, 16, 0.08);
}

.proof-strip h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0;
}

.proof-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading-wrap {
  max-width: 860px;
}

.section-heading-wrap h2 {
  margin: 10px 0 0;
  font-family: inherit;
  font-weight: 900;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading-wrap p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading-wrap .desktop-note {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid rgba(255, 116, 72, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 244, 168, 0.2);
  color: #7b2d16;
  font-size: 0.9rem;
  font-weight: 800;
}

.overview-section {
  scroll-margin-top: 24px;
}

.overview-grid {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.overview-grid article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.overview-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
}

.overview-grid h3 {
  margin: 16px 0 0;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.2;
}

.overview-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.why-section,
.stage-section {
  scroll-margin-top: 24px;
}

.why-panel {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 244, 168, 0.24), rgba(167, 231, 241, 0.16)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.why-panel p {
  margin: 0;
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.48;
  font-weight: 750;
}

.why-panel p + p {
  margin-top: 18px;
}

.why-panel p:nth-child(2) {
  color: var(--brand-orange-deep);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 900;
}

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

.stage-grid article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.stage-grid h3 {
  margin: 0;
  color: var(--brand-orange-deep);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stage-grid p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.42;
}

.benchmark-section {
  margin-top: 72px;
}

.comparison-wrap {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 116, 72, 0.08), rgba(167, 231, 241, 0.12)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}

.comparison-table th {
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  color: rgba(16, 16, 16, 0.58);
  background: rgba(255, 255, 255, 0.64);
}

.comparison-table td {
  font-size: 1rem;
  font-weight: 750;
  color: var(--muted);
}

.comparison-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.comparison-table td:nth-child(3) {
  color: var(--ink);
  background: rgba(255, 244, 168, 0.18);
}

.comparison-table strong {
  color: var(--brand-orange-deep);
  font-size: 1.14rem;
  font-weight: 900;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

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

.benchmark-notes article {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.benchmark-notes h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.benchmark-notes p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.grid-cards {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 231, 241, 0.66);
  box-shadow: 0 26px 58px rgba(16, 16, 16, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: 0;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.specs-section {
  scroll-margin-top: 24px;
}

.spec-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spec-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.spec-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.spec-card dl {
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.spec-card dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

.spec-card dt {
  color: rgba(16, 16, 16, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
}

.spec-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.spec-footnote {
  margin-top: 14px;
  border: 1px solid rgba(255, 116, 72, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 244, 168, 0.2);
}

.spec-footnote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.demo-section .demo-shell {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(16, 16, 16, 0.11);
  background: rgba(255, 255, 255, 0.78);
}

.demo-shell iframe {
  display: block;
  width: 100%;
  height: min(78vh, 760px);
  border: 0;
  background: #ffffff;
}

.demo-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.try-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.try-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.try-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.demo-fallback {
  margin: 12px 2px 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 116, 72, 0.24);
  background: rgba(255, 244, 168, 0.28);
  color: #7b2d16;
  border-radius: 12px;
  font-size: 0.94rem;
}

.demo-fallback a {
  color: var(--brand-orange);
  font-weight: 700;
}

.use-case-list {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.use-case-list article {
  border-top: 3px solid var(--brand-orange);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: var(--shadow);
}

.use-case-list h3 {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 900;
}

.use-case-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.market-section {
  scroll-margin-top: 24px;
}

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

.market-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.market-value {
  display: block;
  color: var(--brand-orange-deep);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.95;
  font-weight: 900;
}

.market-card h3 {
  margin: 16px 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.market-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.market-table-wrap {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.market-table th,
.market-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.market-table th {
  background: rgba(255, 244, 168, 0.18);
  color: rgba(16, 16, 16, 0.6);
  font-size: 0.76rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.market-table td {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
}

.market-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.market-table tr:last-child td {
  border-bottom: 0;
}

.market-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.source-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
}

.cta-block {
  margin-top: 90px;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 62px;
}

.cta-block h2 {
  margin: 0;
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.cta-block p {
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.cta-block .btn {
  margin-top: 24px;
}

.contact-block {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.contact-copy h2 {
  margin: 10px 0 0;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.contact-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.meeting-cta {
  align-self: center;
  justify-self: end;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.meeting-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 24px 28px 36px;
  text-align: center;
}

.site-footer p {
  margin: 2px 0;
}

.site-footer p:first-child {
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  font-weight: 700;
}

.site-footer p:last-child {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-strip,
  .grid-cards,
  .overview-grid,
  .stage-grid,
  .spec-grid,
  .benchmark-notes,
  .try-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 760px;
  }

  .contact-block {
    grid-template-columns: 1fr;
  }

  .meeting-cta {
    justify-self: start;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }

  .market-table-wrap {
    overflow-x: auto;
  }

  .market-table {
    min-width: 820px;
  }

  .spec-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .demo-shell iframe {
    height: min(70vh, 620px);
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

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

  .brand-subtext {
    font-size: 9px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .section {
    margin-top: 58px;
  }

  .contact-block {
    padding: 18px;
    border-radius: 16px;
  }

  .use-case-list {
    grid-template-columns: 1fr;
  }

  .demo-shell iframe {
    height: min(86vh, 720px);
    min-height: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .btn,
  .card,
  .proof-strip article {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
