:root {
  --bg: #07101d;
  --bg-soft: #0b1524;
  --panel: #101b2a;
  --panel-soft: #132033;
  --panel-hover: #17263a;

  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.15);

  --text: #f5f8fc;
  --text-soft: #aab6c7;
  --text-muted: #6f8096;

  --blue: #3f8cff;
  --blue-light: #69a6ff;
  --blue-dark: #236bd6;

  --shadow:
    0 30px 80px rgba(0,0,0,0.38);

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --max-width: 1180px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background:
    radial-gradient(
      circle at 75% 10%,
      rgba(63,140,255,0.10),
      transparent 30%
    ),
    #07101d;

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
}


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


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


button,
a {
  -webkit-tap-highlight-color: transparent;
}


.page-shell {
  overflow: hidden;
}


.site-header {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  min-height: 78px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--border);
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}


.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;

  border-radius: 8px;
}


.brand-name,
.mini-brand span,
.footer-brand span {
  font-family:
    Kanit,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  font-weight: 700;
  letter-spacing: -0.03em;
}


.brand-name {
  font-size: 1.12rem;
}


.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;

  color: var(--text-soft);
  font-size: 0.87rem;
}


.desktop-nav a {
  transition:
    color 0.2s ease;
}


.desktop-nav a:hover {
  color: var(--text);
}


.header-actions {
  display: flex;
  align-items: center;
}


.button {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 19px;

  border: 1px solid transparent;
  border-radius: 11px;

  font-size: 0.88rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}


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


.button-primary {
  background: var(--blue);
  color: white;

  box-shadow:
    0 12px 35px rgba(63,140,255,0.24);
}


.button-primary:hover {
  background: var(--blue-light);
}


.button-secondary {
  background:
    rgba(255,255,255,0.04);

  border-color: var(--border-strong);

  color: var(--text);
}


.button-secondary:hover,
.button-ghost:hover {
  background:
    rgba(255,255,255,0.07);
}


.button-ghost {
  border-color: var(--border);
  color: var(--text-soft);
}


.hero {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;

  min-height: 690px;
  padding: 90px 0 80px;

  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(440px, 1.06fr);

  align-items: center;
  gap: 70px;
}


.eyebrow {
  margin-bottom: 16px;

  color: var(--blue-light);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.18em;
}


.hero h1,
.section-heading h2,
.split-copy h2,
.ownership-panel h2,
.cta-panel h2 {
  margin: 0;

  font-family:
    Kanit,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  letter-spacing: -0.045em;
  line-height: 1.03;
}


.hero h1 {
  max-width: 660px;

  font-size:
    clamp(3.3rem, 6vw, 5.6rem);

  font-weight: 700;
}


.hero h1 span,
.cta-panel h2 span {
  display: block;
  color: var(--blue-light);
}


.hero-lead {
  max-width: 620px;

  margin: 28px 0 0;

  color: var(--text-soft);

  font-size:
    clamp(1rem, 1.4vw, 1.16rem);

  line-height: 1.75;
}


.hero-actions {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.hero-points {
  margin-top: 26px;

  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  color: var(--text-muted);

  font-size: 0.76rem;
  font-weight: 650;
}


.hero-points span {
  position: relative;

  padding-left: 15px;
}


.hero-points span::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--blue);

  transform: translateY(-50%);
}


.hero-product {
  position: relative;
}


.product-window {
  position: relative;
  z-index: 2;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 22px;

  background:
    rgba(11,21,36,0.94);

  box-shadow: var(--shadow);

  transform: perspective(1200px)
    rotateY(-4deg)
    rotateX(2deg);
}


.window-bar {
  height: 46px;

  display: flex;
  align-items: center;

  padding: 0 16px;

  border-bottom: 1px solid var(--border);

  background:
    rgba(255,255,255,0.025);
}


.window-dots {
  display: flex;
  gap: 6px;
}


.window-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(255,255,255,0.16);
}


.window-label {
  margin: 0 auto;

  padding-right: 38px;

  color: var(--text-muted);

  font-size: 0.69rem;
  font-weight: 700;
}


.product-ui {
  min-height: 390px;

  display: grid;
  grid-template-columns: 145px 1fr;
}


.product-sidebar {
  padding: 22px 15px;

  border-right: 1px solid var(--border);

  background: #091320;
}


.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 30px;

  font-size: 0.78rem;
}


.mini-brand img {
  width: 23px;
  height: 23px;

  border-radius: 6px;
}


.sidebar-nav {
  display: grid;
  gap: 8px;
}


.sidebar-item {
  padding: 9px 10px;

  border-radius: 8px;

  color: var(--text-muted);

  font-size: 0.68rem;
  font-weight: 650;
}


.sidebar-item.active {
  background:
    rgba(63,140,255,0.13);

  color: var(--blue-light);
}


.product-content {
  padding: 28px;
}


.content-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 28px;
}


.content-kicker {
  display: block;

  margin-bottom: 5px;

  color: var(--text-muted);

  font-size: 0.58rem;
  font-weight: 800;

  letter-spacing: 0.15em;
}


.content-heading h2 {
  margin: 0;

  font-size: 1.18rem;
}


.status-pill {
  height: 28px;

  display: flex;
  align-items: center;

  padding: 0 10px;

  border:
    1px solid rgba(63,140,255,0.25);

  border-radius: 99px;

  background:
    rgba(63,140,255,0.08);

  color: var(--blue-light);

  font-size: 0.63rem;
  font-weight: 800;
}


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


.preview-card {
  min-height: 112px;

  padding: 16px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  border: 1px solid var(--border);

  border-radius: 12px;

  background:
    rgba(255,255,255,0.025);
}


.preview-card.featured {
  border-color:
    rgba(63,140,255,0.32);

  background:
    rgba(63,140,255,0.07);
}


.preview-icon {
  width: 31px;
  height: 31px;

  flex: 0 0 31px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background:
    rgba(63,140,255,0.13);

  color: var(--blue-light);

  font-size: 0.67rem;
  font-weight: 900;
}


.preview-card strong,
.preview-card small {
  display: block;
}


.preview-card strong {
  margin-top: 2px;

  font-size: 0.74rem;
}


.preview-card small {
  margin-top: 6px;

  color: var(--text-muted);

  font-size: 0.61rem;
  line-height: 1.45;
}


.hero-glow {
  position: absolute;
  inset: 12% 8% -8% 12%;

  z-index: 1;

  background:
    rgba(63,140,255,0.16);

  filter: blur(70px);
}


.intro-strip {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto 20px;

  padding: 25px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  text-align: center;
}


.intro-strip p {
  margin: 0;

  color: var(--text-soft);

  font-size:
    clamp(1.05rem, 2vw, 1.32rem);
}


.intro-strip strong {
  color: var(--text);
}


.section {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 110px 0;
}


.section-heading {
  max-width: 680px;
  margin-bottom: 50px;
}


.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}


.section-heading h2,
.split-copy h2,
.ownership-panel h2,
.cta-panel h2 {
  font-size:
    clamp(2.4rem, 4vw, 4rem);
}


.section-heading p,
.split-copy > p,
.ownership-panel > div:first-child p,
.cta-panel > p {
  margin: 20px 0 0;

  color: var(--text-soft);

  font-size: 1rem;
  line-height: 1.75;
}


.suite-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}


.suite-card {
  min-height: 225px;

  padding: 24px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.015)
    );

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}


.suite-card:hover {
  transform: translateY(-3px);

  border-color:
    rgba(63,140,255,0.28);

  background:
    rgba(63,140,255,0.045);
}


.suite-card-large {
  min-height: 285px;
}


.suite-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


.tool-badge {
  align-self: flex-start;

  padding: 5px 8px;

  border-radius: 6px;

  background:
    rgba(63,140,255,0.09);

  color: var(--blue-light);

  font-size: 0.58rem;
  font-weight: 850;

  letter-spacing: 0.12em;
}


.card-number {
  color: rgba(255,255,255,0.14);

  font-size: 0.75rem;
  font-weight: 800;
}


.suite-card h3 {
  margin: 26px 0 10px;

  font-family:
    Kanit,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  font-size: 1.25rem;
}


.suite-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 0.87rem;
  line-height: 1.68;
}


.card-footer {
  margin-top: auto;
  padding-top: 30px;

  color: var(--text-muted);

  font-size: 0.7rem;
  font-weight: 700;
}


.workflow-section {
  padding-top: 80px;
}


.workflow {
  display: grid;

  grid-template-columns:
    auto 1fr
    auto 1fr
    auto 1fr
    auto 1fr
    auto;

  align-items: center;

  margin-top: 65px;
}


.workflow-step {
  width: 130px;
  text-align: center;
}


.workflow-step span {
  width: 40px;
  height: 40px;

  margin: 0 auto 13px;

  display: grid;
  place-items: center;

  border:
    1px solid rgba(63,140,255,0.28);

  border-radius: 11px;

  background:
    rgba(63,140,255,0.07);

  color: var(--blue-light);

  font-size: 0.67rem;
  font-weight: 850;
}


.workflow-step strong,
.workflow-step small {
  display: block;
}


.workflow-step strong {
  font-size: 0.86rem;
}


.workflow-step small {
  margin-top: 4px;

  color: var(--text-muted);

  font-size: 0.65rem;
}


.workflow-line {
  height: 1px;

  margin: 0 8px;

  background:
    linear-gradient(
      90deg,
      var(--border),
      rgba(63,140,255,0.35),
      var(--border)
    );
}


.split-section {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 110px 0;

  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(400px, 1.1fr);

  align-items: center;
  gap: 90px;
}


.feature-list {
  margin: 30px 0 0;
  padding: 0;

  display: grid;
  gap: 13px;

  list-style: none;
}


.feature-list li {
  position: relative;

  padding-left: 25px;

  color: var(--text-soft);

  font-size: 0.9rem;
}


.feature-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--blue-light);
  font-weight: 900;
}


.local-panel {
  padding: 26px;

  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      160deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );

  box-shadow: var(--shadow);
}


.local-panel-header {
  display: flex;
  align-items: center;
  gap: 9px;

  padding-bottom: 20px;

  border-bottom: 1px solid var(--border);

  color: var(--text-muted);

  font-size: 0.65rem;
  font-weight: 850;

  letter-spacing: 0.13em;
}


.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--blue);
}


.local-path {
  margin: 28px 0 20px;

  padding: 15px 17px;

  border: 1px solid var(--border);

  border-radius: 10px;

  background: #08111d;

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  font-size: 0.8rem;
}


.path-muted {
  color: var(--text-muted);
}


.folder-list {
  display: grid;
  gap: 8px;
}


.folder-list div {
  padding: 11px 13px;

  border-radius: 8px;

  background:
    rgba(255,255,255,0.025);

  color: var(--text-soft);

  font-size: 0.78rem;
}


.folder-list span {
  margin-right: 8px;
  color: var(--blue-light);
}


.local-caption {
  margin-top: 18px;

  color: var(--text-muted);

  text-align: right;

  font-size: 0.68rem;
}


.ownership-section {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 70px 0 110px;
}


.ownership-panel {
  padding: 50px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(400px, 0.95fr);

  gap: 70px;

  border:
    1px solid rgba(63,140,255,0.2);

  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      125deg,
      rgba(63,140,255,0.08),
      rgba(255,255,255,0.025)
    );
}


.ownership-statements {
  display: grid;
  gap: 12px;
}


.ownership-statements > div {
  padding: 18px 20px;

  border: 1px solid var(--border);

  border-radius: 11px;

  background:
    rgba(7,16,29,0.42);
}


.ownership-statements strong,
.ownership-statements span {
  display: block;
}


.ownership-statements strong {
  font-size: 0.88rem;
}


.ownership-statements span {
  margin-top: 4px;

  color: var(--text-muted);

  font-size: 0.72rem;
}


.cta-section {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 40px 0 100px;
}


.cta-panel {
  padding: 75px 40px;

  border: 1px solid var(--border);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(63,140,255,0.22),
      transparent 45%
    ),
    var(--panel);

  text-align: center;

  box-shadow: var(--shadow);
}


.cta-panel h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


.cta-panel > p {
  max-width: 570px;

  margin-left: auto;
  margin-right: auto;
}


.cta-actions {
  margin-top: 30px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 14px;
}


.cta-note {
  color: var(--text-muted);

  font-size: 0.7rem;
}


.site-footer {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  min-height: 110px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  gap: 30px;

  border-top: 1px solid var(--border);

  color: var(--text-muted);

  font-size: 0.7rem;
}


.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--text);
}


.footer-brand img {
  width: 25px;
  height: 25px;

  border-radius: 6px;
}


.site-footer p {
  margin: 0;
  text-align: center;
}


.footer-copy {
  text-align: right;
}



@media (max-width: 980px) {

  .desktop-nav {
    display: none;
  }


  .hero {
    min-height: auto;

    grid-template-columns: 1fr;

    padding-top: 75px;

    gap: 60px;
  }


  .hero-copy {
    max-width: 760px;
  }


  .hero-product {
    max-width: 720px;
  }


  .product-window {
    transform: none;
  }


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


  .workflow {
    grid-template-columns: 1fr;
    gap: 14px;
  }


  .workflow-step {
    width: 100%;

    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;

    text-align: left;
  }


  .workflow-step span {
    grid-row: 1 / 3;

    margin: 0;
  }


  .workflow-line {
    width: 1px;
    height: 24px;

    margin: 0 0 0 20px;

    background:
      linear-gradient(
        180deg,
        var(--border),
        rgba(63,140,255,0.4),
        var(--border)
      );
  }


  .split-section,
  .ownership-panel {
    grid-template-columns: 1fr;
  }


  .split-section {
    gap: 55px;
  }


  .ownership-panel {
    gap: 45px;
  }

}



@media (max-width: 680px) {

  .site-header {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );

    min-height: 68px;
  }


  .brand-logo {
    width: 30px;
    height: 30px;
  }


  .brand-name {
    font-size: 1rem;
  }


  .header-actions .button {
    min-height: 38px;
    padding: 0 13px;

    font-size: 0.76rem;
  }


  .hero,
  .section,
  .split-section,
  .ownership-section,
  .cta-section,
  .intro-strip,
  .site-footer {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );
  }


  .hero {
    padding:
      58px 0
      70px;

    gap: 48px;
  }


  .hero h1 {
    font-size:
      clamp(2.8rem, 15vw, 4rem);
  }


  .hero-lead {
    font-size: 0.96rem;
  }


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


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


  .hero-points {
    display: grid;
    gap: 9px;
  }


  .product-ui {
    grid-template-columns: 1fr;
  }


  .product-sidebar {
    display: none;
  }


  .product-content {
    padding: 20px;
  }


  .tool-grid-preview {
    grid-template-columns: 1fr;
  }


  .preview-card {
    min-height: 88px;
  }


  .section,
  .split-section {
    padding: 80px 0;
  }


  .section-heading {
    margin-bottom: 35px;
  }


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


  .suite-card,
  .suite-card-large {
    min-height: 210px;
  }


  .split-section {
    grid-template-columns: 1fr;
  }


  .local-panel {
    padding: 20px;
  }


  .ownership-section {
    padding:
      30px 0
      80px;
  }


  .ownership-panel {
    padding: 30px 22px;
  }


  .cta-panel {
    padding:
      55px 22px;
  }


  .site-footer {
    padding: 30px 0;

    grid-template-columns: 1fr;

    text-align: center;
  }


  .footer-brand {
    justify-content: center;
  }


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

}


/* =========================================================
   PUBLIC SITE — SALES LAYOUT POLISH
   ========================================================= */


/* Tighten the longer sales page rhythm */

.section {
  padding-top: 85px;
  padding-bottom: 85px;
}

.workflow-section {
  padding-top: 65px;
  padding-bottom: 80px;
}

.split-section {
  padding-top: 85px;
  padding-bottom: 85px;
}

.ownership-section {
  padding-top: 55px;
  padding-bottom: 80px;
}

.cta-section {
  padding-top: 25px;
}


/* Keep headings closer to their content */

.section-heading {
  margin-bottom: 38px;
}

.section-heading.centered {
  max-width: 760px;
}

.section-heading.centered + .workflow {
  margin-top: 48px;
}


/* Problem comparison should feel like one comparison,
   not two cards floating in a 3-column system */

#why .suite-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  max-width: 820px;
}

#why .suite-card {
  min-height: 250px;
}


/* Core suite hierarchy */

#suite .suite-card:nth-child(-n+5) {
  border-color:
    rgba(63,140,255,0.22);

  background:
    linear-gradient(
      145deg,
      rgba(63,140,255,0.055),
      rgba(255,255,255,0.015)
    );
}

#suite .suite-card:nth-child(n+6) {
  min-height: 225px;
}


/* Who It's For — intentional 2 x 2 */

.section:has(
  .tool-badge:first-child
) {
  position: relative;
}

#suite + .split-section + .section .suite-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#suite + .split-section + .section .suite-card {
  min-height: 220px;
}


/* Reduce empty air around workflow rows */

.workflow {
  margin-top: 42px;
}

.workflow-step {
  width: 120px;
}


/* Local / sample engagement panels */

.local-panel {
  align-self: center;
}


/* Simple by Design should be lighter than the
   primary engagement workflow */

.ownership-section + .section {
  padding-top: 65px;
  padding-bottom: 70px;
}

.ownership-section + .section .section-heading {
  margin-bottom: 28px;
}

.ownership-section + .section .workflow {
  margin-top: 34px;
}


/* CTA closer to the section above */

.cta-section {
  padding-bottom: 85px;
}


/* Desktop cards gain slightly stronger visual hierarchy */

@media (min-width: 981px) {

  #suite .suite-card:nth-child(1),
  #suite .suite-card:nth-child(2) {
    background:
      linear-gradient(
        145deg,
        rgba(63,140,255,0.09),
        rgba(255,255,255,0.018)
      );

    border-color:
      rgba(63,140,255,0.34);
  }

}


/* Tablet */

@media (max-width: 980px) {

  #why .suite-grid,
  #suite + .split-section + .section .suite-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* Mobile */

@media (max-width: 680px) {

  .section,
  .split-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  #why .suite-grid,
  #suite + .split-section + .section .suite-grid {
    grid-template-columns: 1fr;
  }

  #why .suite-card,
  #suite + .split-section + .section .suite-card {
    min-height: 200px;
  }

}


/* =========================================================
   PROBLEM SECTION
   ========================================================= */

.problem-section {
  padding-top: 95px;
  padding-bottom: 105px;
}


.problem-heading {
  max-width: 820px;
  margin-bottom: 52px;
}


.problem-heading h2 span {
  display: block;
  color: var(--blue-light);
}


.problem-visual {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    120px
    minmax(0, 1fr);

  align-items: center;

  gap: 30px;
}


.problem-column {
  min-height: 410px;

  padding: 28px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      150deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.012)
    );
}


.problem-column-label {
  margin-bottom: 26px;

  color: var(--text-muted);

  font-size: 0.64rem;
  font-weight: 850;

  letter-spacing: 0.15em;
}


.scattered-tools {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  align-content: flex-start;
}


.scattered-tool {
  padding: 11px 14px;

  border: 1px solid var(--border);

  border-radius: 9px;

  background:
    rgba(255,255,255,0.025);

  color: var(--text-soft);

  font-size: 0.76rem;
  font-weight: 650;
}


.scattered-tool:nth-child(2n) {
  transform: translateY(8px);
}


.scattered-tool:nth-child(3n) {
  transform: translateY(-4px);
}


.problem-caption {
  margin: auto 0 0;
  padding-top: 30px;

  color: var(--text-muted);

  font-size: 0.72rem;
  line-height: 1.6;
}


.problem-converter {
  display: flex;
  align-items: center;

  gap: 10px;
}


.converter-line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--border),
      rgba(63,140,255,0.45)
    );
}


.converter-line:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(63,140,255,0.45),
      var(--border)
    );
}


.converter-mark {
  width: 64px;
  height: 64px;

  flex: 0 0 64px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  border:
    1px solid rgba(63,140,255,0.32);

  border-radius: 16px;

  background:
    rgba(63,140,255,0.09);

  box-shadow:
    0 15px 45px rgba(63,140,255,0.12);
}


.converter-mark img {
  width: 24px;
  height: 24px;

  border-radius: 6px;
}


.converter-mark span {
  color: var(--blue-light);

  font-size: 0.55rem;
  font-weight: 800;
}


.connected-column {
  border-color:
    rgba(63,140,255,0.28);

  background:
    linear-gradient(
      145deg,
      rgba(63,140,255,0.07),
      rgba(255,255,255,0.018)
    );
}


.connected-project {
  overflow: hidden;

  border:
    1px solid rgba(63,140,255,0.22);

  border-radius: 14px;

  background:
    rgba(7,16,29,0.54);
}


.connected-project-header {
  padding: 18px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 18px;

  border-bottom: 1px solid var(--border);
}


.connected-project-header small,
.connected-project-header strong {
  display: block;
}


.connected-project-header small {
  margin-bottom: 5px;

  color: var(--text-muted);

  font-size: 0.56rem;
  font-weight: 800;

  letter-spacing: 0.13em;
}


.connected-project-header strong {
  font-size: 0.9rem;
}


.connected-items {
  padding: 10px;

  display: grid;
  gap: 6px;
}


.connected-items div {
  padding: 10px 11px;

  border-radius: 8px;

  background:
    rgba(255,255,255,0.025);

  color: var(--text-soft);

  font-size: 0.72rem;
}


.connected-items span {
  display: inline-block;

  width: 28px;

  color: var(--blue-light);

  font-size: 0.62rem;
  font-weight: 800;
}


@media (max-width: 980px) {

  .problem-visual {
    grid-template-columns: 1fr;
  }


  .problem-column {
    min-height: 330px;
  }


  .problem-converter {
    min-height: 85px;

    flex-direction: column;
  }


  .converter-line {
    width: 1px;
    min-height: 18px;

    background:
      linear-gradient(
        180deg,
        var(--border),
        rgba(63,140,255,0.45)
      );
  }


  .converter-line:last-child {
    background:
      linear-gradient(
        180deg,
        rgba(63,140,255,0.45),
        var(--border)
      );
  }

}


@media (max-width: 680px) {

  .problem-section {
    padding-top: 65px;
    padding-bottom: 70px;
  }


  .problem-heading {
    margin-bottom: 34px;
  }


  .problem-column {
    min-height: 310px;
    padding: 21px;
  }


  .scattered-tool {
    padding: 9px 11px;
    font-size: 0.7rem;
  }

}


/* =========================================================
   PROBLEM SECTION V2
   ========================================================= */

.problem-visual-v2 {
  grid-template-columns:
    minmax(0, 0.9fr)
    170px
    minmax(420px, 1.1fr);

  gap: 38px;
}


/* Remove the giant "bad workflow" card */

.fragmented-side {
  min-height: 390px;

  display: flex;
  flex-direction: column;

  padding: 18px 0 10px;
}


.fragment-cloud {
  position: relative;

  min-height: 270px;
  margin-top: 8px;
}


.fragment {
  position: absolute;

  padding: 11px 15px;

  border: 1px solid var(--border-strong);
  border-radius: 10px;

  background:
    rgba(255,255,255,0.03);

  color: var(--text-soft);

  font-size: 0.75rem;
  font-weight: 700;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12);
}


.fragment-1 {
  top: 18px;
  left: 3%;
  transform: rotate(-2deg);
}


.fragment-2 {
  top: 5px;
  left: 44%;
  transform: rotate(2deg);
}


.fragment-3 {
  top: 75px;
  left: 20%;
  transform: rotate(1deg);
}


.fragment-4 {
  top: 58px;
  right: 2%;
  transform: rotate(-2deg);
}


.fragment-5 {
  top: 138px;
  left: 2%;
  transform: rotate(2deg);
}


.fragment-6 {
  top: 135px;
  left: 33%;
  transform: rotate(-1deg);
}


.fragment-7 {
  top: 194px;
  left: 15%;
  transform: rotate(-2deg);
}


.fragment-8 {
  top: 188px;
  right: 5%;
  transform: rotate(2deg);
}


.fragment-message,
.connected-message {
  margin-top: auto;
}


.fragment-message strong,
.fragment-message span,
.connected-message strong,
.connected-message span {
  display: block;
}


.fragment-message strong,
.connected-message strong {
  color: var(--text);
  font-size: 0.82rem;
}


.fragment-message span,
.connected-message span {
  margin-top: 4px;

  color: var(--text-muted);

  font-size: 0.72rem;
}


/* SyteByte becomes a real transition, not a tiny icon */

.solution-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 16px;
}


.flow-arrow {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;
}


.flow-arrow span {
  width: 20px;
  height: 1px;

  background:
    rgba(63,140,255,0.22);
}


.flow-arrow span:nth-child(2) {
  background:
    rgba(63,140,255,0.55);
}


.solution-mark {
  width: 150px;

  padding: 15px 16px;

  display: flex;
  align-items: center;

  gap: 11px;

  border:
    1px solid rgba(63,140,255,0.34);

  border-radius: 14px;

  background:
    rgba(63,140,255,0.08);

  box-shadow:
    0 18px 45px rgba(63,140,255,0.12);
}


.solution-mark img {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  border-radius: 7px;
}


.solution-mark small,
.solution-mark strong {
  display: block;
}


.solution-mark small {
  margin-bottom: 2px;

  color: var(--text-muted);

  font-size: 0.46rem;
  font-weight: 850;

  letter-spacing: 0.11em;
}


.solution-mark strong {
  font-size: 0.82rem;
}


/* Make the solution visually dominant */

.connected-side {
  padding: 28px;

  border:
    1px solid rgba(63,140,255,0.32);

  border-radius: var(--radius-lg);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(63,140,255,0.10),
      transparent 40%
    ),
    rgba(63,140,255,0.035);

  box-shadow:
    0 25px 70px rgba(0,0,0,0.16);
}


.connected-project-v2 {
  margin-top: 8px;
}


.connected-message {
  margin-top: 24px;
}


/* Hide old V1 visual treatment if still present */

.problem-visual-v2 .problem-column,
.problem-visual-v2 .problem-converter {
  display: none;
}


@media (max-width: 980px) {

  .problem-visual-v2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }


  .fragmented-side {
    min-height: 350px;
  }


  .solution-flow {
    flex-direction: row;
  }


  .flow-arrow {
    max-width: 90px;
  }


  .connected-side {
    padding: 24px;
  }

}


@media (max-width: 680px) {

  .fragment-cloud {
    min-height: 320px;
  }


  .fragment-1 {
    left: 0;
  }


  .fragment-2 {
    left: auto;
    right: 0;
  }


  .fragment-3 {
    left: 8%;
  }


  .fragment-4 {
    right: 0;
    top: 92px;
  }


  .fragment-5 {
    top: 150px;
  }


  .fragment-6 {
    top: 155px;
    left: auto;
    right: 4%;
  }


  .fragment-7 {
    top: 220px;
    left: 8%;
  }


  .fragment-8 {
    top: 240px;
    right: 2%;
  }


  .solution-flow {
    margin: 5px 0 15px;
  }


  .solution-mark {
    width: auto;
  }

}


/* =========================================================
   SUITE CARD HEIGHT NORMALIZATION
   ========================================================= */

#suite .suite-grid {
  align-items: stretch;
}

#suite .suite-card,
#suite .suite-card-large,
#suite .suite-card:nth-child(n+6) {
  min-height: 305px;
  height: 100%;
}

#suite .suite-card {
  display: flex;
  flex-direction: column;
}

#suite .suite-card .card-footer {
  margin-top: auto;
}


/* Keep hierarchy through styling, not size */

#suite .suite-card:nth-child(-n+5) {
  border-color:
    rgba(63,140,255,0.28);
}

#suite .suite-card:nth-child(n+6) {
  border-color: var(--border);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.015)
    );
}


@media (max-width: 680px) {

  #suite .suite-card,
  #suite .suite-card-large,
  #suite .suite-card:nth-child(n+6) {
    min-height: 260px;
  }

}


/* =========================================================
   PROBLEM SECTION — REFINEMENT PASS
   ========================================================= */

.problem-heading {
  max-width: 920px;
}

.problem-heading p {
  max-width: 900px;
}

.problem-visual-v2 {
  grid-template-columns:
    minmax(0, 1fr)
    190px
    minmax(460px, 1.04fr);

  gap: 42px;
}

.fragmented-side {
  min-height: 430px;
  padding: 12px 0 12px;
}

.fragment-cloud {
  position: relative;
  min-height: 325px;
  margin-top: 18px;
}

.fragment {
  padding: 12px 16px;
  border-radius: 11px;
  font-size: 0.77rem;
  line-height: 1;
  white-space: nowrap;
}

/* Better spread / less clumping */
.fragment-1 {
  top: 18px;
  left: 3%;
  transform: rotate(-2deg);
}

.fragment-2 {
  top: 6px;
  left: 40%;
  transform: rotate(2deg);
}

.fragment-3 {
  top: 88px;
  left: 16%;
  transform: rotate(-1deg);
}

.fragment-4 {
  top: 68px;
  left: 67%;
  transform: rotate(2deg);
}

.fragment-5 {
  top: 168px;
  left: 0;
  transform: rotate(1deg);
}

.fragment-6 {
  top: 162px;
  left: 29%;
  transform: rotate(-2deg);
}

.fragment-7 {
  top: 236px;
  left: 11%;
  transform: rotate(-1deg);
}

.fragment-8 {
  top: 226px;
  left: 61%;
  transform: rotate(2deg);
}

.fragment-message {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.fragment-message strong {
  font-size: 1.12rem;
  line-height: 1.15;
}

.fragment-message span {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}

.connected-side {
  padding: 30px;
}

.connected-message strong {
  font-size: 1rem;
}

.connected-message span {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Rounded-square suite-style mark */
.solution-mark {
  width: 172px;
  padding: 16px 17px;
  border-radius: 16px;
  gap: 12px;
}

.solution-mark-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: grid;
  place-items: center;

  border-radius: 12px;
  background: #ffffff;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.18);
}

.solution-mark-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 0;
}

.solution-mark small {
  font-size: 0.48rem;
  letter-spacing: 0.14em;
}

.solution-mark strong {
  font-size: 0.88rem;
}

.flow-arrow span {
  width: 22px;
}

@media (max-width: 980px) {
  .problem-visual-v2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fragmented-side {
    min-height: 400px;
  }

  .fragment-cloud {
    min-height: 310px;
  }

  .solution-flow {
    margin: 2px 0;
  }

  .connected-side {
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .problem-heading p {
    max-width: none;
  }

  .fragmented-side {
    min-height: 420px;
  }

  .fragment-cloud {
    min-height: 340px;
  }

  .fragment {
    font-size: 0.72rem;
    padding: 10px 13px;
  }

  .fragment-1 {
    top: 18px;
    left: 0;
  }

  .fragment-2 {
    top: 8px;
    left: auto;
    right: 6%;
  }

  .fragment-3 {
    top: 86px;
    left: 10%;
  }

  .fragment-4 {
    top: 92px;
    left: auto;
    right: 0;
  }

  .fragment-5 {
    top: 162px;
    left: 2%;
  }

  .fragment-6 {
    top: 165px;
    left: auto;
    right: 8%;
  }

  .fragment-7 {
    top: 235px;
    left: 10%;
  }

  .fragment-8 {
    top: 246px;
    left: auto;
    right: 2%;
  }

  .fragment-message strong {
    font-size: 1rem;
  }

  .fragment-message span {
    font-size: 0.88rem;
  }

  .solution-mark {
    width: auto;
  }
}


/* =========================================================
   HEADER BRAND MARK
   ========================================================= */

.brand {
  gap: 12px;
}

.brand-logo-wrap {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  background: #ffffff;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.18);
}

.brand-logo {
  width: 25px;
  height: 25px;

  object-fit: contain;

  border-radius: 0;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
}


@media (max-width: 680px) {

  .brand-logo-wrap {
    width: 34px;
    height: 34px;

    flex-basis: 34px;

    border-radius: 10px;
  }

  .brand-logo {
    width: 22px;
    height: 22px;
  }

}


/* =========================================================
   HEADER LOGO SIZE REFINEMENT
   ========================================================= */

.brand-logo-wrap {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  border-radius: 12px;
}

.brand-logo {
  width: 36px;
  height: 36px;

  object-fit: contain;
}

.brand-name {
  font-size: 1.18rem;
}


@media (max-width: 680px) {

  .brand-logo-wrap {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }

  .brand-logo {
    width: 31px;
    height: 31px;
  }

}


/* =========================================================
   BACKGROUND FLAIR
   ========================================================= */

body {
  position: relative;
  isolation: isolate;
}

.page-shell {
  position: relative;
  z-index: 1;
}


/* Global ambient glow */

.page-shell::before {
  content: "";

  position: absolute;
  top: 240px;
  left: 50%;

  width: 1050px;
  height: 1050px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      circle,
      rgba(63,140,255,0.065) 0%,
      rgba(63,140,255,0.025) 36%,
      transparent 68%
    );

  pointer-events: none;
  z-index: -1;
}


/* Hero depth */

.hero {
  position: relative;
}

.hero::before {
  content: "";

  position: absolute;
  top: 10%;
  right: -12%;

  width: 720px;
  height: 720px;

  background:
    radial-gradient(
      circle,
      rgba(63,140,255,0.12),
      rgba(63,140,255,0.035) 42%,
      transparent 70%
    );

  filter: blur(10px);

  pointer-events: none;
  z-index: -1;
}


/* Problem section ambient treatment */

.problem-section {
  position: relative;
}

.problem-section::before {
  content: "";

  position: absolute;
  inset: 8% -12% 6% -12%;

  background:
    radial-gradient(
      circle at 68% 46%,
      rgba(63,140,255,0.10),
      transparent 34%
    );

  pointer-events: none;
  z-index: -1;
}

.problem-section::after {
  content: "";

  position: absolute;
  inset: 24% 0 12%;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.018) 1px,
      transparent 1px
    );

  background-size: 46px 46px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0,0,0,0.65) 18%,
      rgba(0,0,0,0.65) 82%,
      transparent
    );

  opacity: 0.42;

  pointer-events: none;
  z-index: -1;
}


/* Suite section depth */

#suite {
  position: relative;
}

#suite::before {
  content: "";

  position: absolute;
  top: 15%;
  left: 50%;

  width: 950px;
  height: 720px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      ellipse,
      rgba(63,140,255,0.075),
      transparent 68%
    );

  pointer-events: none;
  z-index: -1;
}


/* CTA glow */

.cta-section {
  position: relative;
}

.cta-section::before {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -120px;

  width: 900px;
  height: 500px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      ellipse,
      rgba(63,140,255,0.11),
      transparent 70%
    );

  pointer-events: none;
  z-index: -1;
}


/* Softer section separation */

.section,
.split-section,
.ownership-section,
.cta-section {
  position: relative;
}

.section::marker {
  display: none;
}


/* Mobile — keep flair subtle */

@media (max-width: 680px) {

  .page-shell::before {
    width: 700px;
    height: 700px;
  }

  .hero::before {
    width: 500px;
    height: 500px;
    right: -40%;
  }

  .problem-section::after {
    opacity: 0.25;
    background-size: 38px 38px;
  }

  #suite::before {
    width: 620px;
    height: 520px;
  }

}


/* =========================================================
   SCROLL REVEAL + PARALLAX
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.parallax-item {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}


/* Slightly soften the reveal for larger visual panels */

.product-window,
.local-panel,
.ownership-panel,
.cta-panel,
.connected-side {
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .parallax-item,
  .product-window,
  .local-panel,
  .ownership-panel,
  .cta-panel,
  .connected-side {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}


/* =========================================================
   SYTEBYTE BACKGROUND MOTIFS
   ========================================================= */

.bg-motif {
  position: absolute;
  pointer-events: none;
  user-select: none;

  opacity: 0.055;

  z-index: -1;

  filter:
    drop-shadow(
      0 0 50px rgba(63,140,255,0.08)
    );

  will-change: transform;
}


/* Hero */

.bg-motif-hero {
  width: 620px;
  height: 620px;

  top: 70px;
  right: -170px;

  transform:
    rotate(16deg);
}


/* Problem / workflow area */

.bg-motif-problem {
  width: 580px;
  height: 580px;

  top: 280px;
  left: -220px;

  opacity: 0.045;

  transform:
    rotate(-22deg);
}


/* Suite */

.bg-motif-suite {
  width: 760px;
  height: 760px;

  top: 230px;
  right: -310px;

  opacity: 0.05;

  transform:
    rotate(12deg);
}


/* Make sure sections provide positioning context */

.hero,
.problem-section,
#suite {
  position: relative;
  isolation: isolate;
}


/* Mobile */

@media (max-width: 680px) {

  .bg-motif-hero {
    width: 420px;
    height: 420px;

    top: 130px;
    right: -220px;
  }

  .bg-motif-problem {
    width: 360px;
    height: 360px;

    top: 380px;
    left: -190px;
  }

  .bg-motif-suite {
    width: 460px;
    height: 460px;

    top: 420px;
    right: -250px;
  }

}


/* =========================================================
   BACKGROUND MOTIF VISIBILITY TUNING
   ========================================================= */

.bg-motif {
  opacity: 0.13;

  filter:
    drop-shadow(
      0 0 55px rgba(63,140,255,0.12)
    );
}

.bg-motif-hero {
  opacity: 0.16;
}

.bg-motif-problem {
  opacity: 0.12;
}

.bg-motif-suite {
  opacity: 0.14;
}


/* =========================================================
   PROBLEM MOTIF — PLACEMENT + SOFTENING
   ========================================================= */

.bg-motif-problem {
  width: 680px;
  height: 680px;

  top: 250px;
  left: auto;
  right: -140px;

  opacity: 0.22;

  transform:
    rotate(14deg);

  filter:
    blur(1.8px)
    drop-shadow(
      0 0 70px rgba(63,140,255,0.16)
    );
}


/* Keep the project card above the motif */

.connected-side {
  position: relative;
  z-index: 2;
}


/* Make sure the motif sits behind, not over */

.problem-section .bg-motif {
  z-index: 0;
}

.problem-section > *:not(.bg-motif) {
  position: relative;
  z-index: 1;
}


@media (max-width: 980px) {

  .bg-motif-problem {
    width: 560px;
    height: 560px;

    top: 520px;
    right: -220px;

    opacity: 0.18;
  }

}


@media (max-width: 680px) {

  .bg-motif-problem {
    width: 420px;
    height: 420px;

    top: 620px;
    right: -210px;

    opacity: 0.16;

    filter:
      blur(1.5px)
      drop-shadow(
        0 0 50px rgba(63,140,255,0.14)
      );
  }

}


/* =========================================================
   BACKGROUND MOTIFS — CRISP VERSION
   ========================================================= */

.bg-motif,
.bg-motif-problem,
.bg-motif-hero,
.bg-motif-suite {
  filter: none;
}

.bg-motif-hero {
  opacity: 0.10;
}

.bg-motif-problem {
  opacity: 0.085;
}

.bg-motif-suite {
  opacity: 0.095;
}


@media (max-width: 980px) {

  .bg-motif-hero,
  .bg-motif-problem,
  .bg-motif-suite {
    opacity: 0.075;
  }

}


@media (max-width: 680px) {

  .bg-motif-hero,
  .bg-motif-problem,
  .bg-motif-suite {
    opacity: 0.06;
  }

}


/* =========================================================
   SECTION MOTIF SYSTEM
   Alternate bg-element-1/2/3 across the site
   ========================================================= */

/* Hide the old hand-placed motif images */
.bg-motif {
  display: none !important;
}


/* Sections that can host a background motif */
.hero,
.problem-section,
#workflow,
.workflow-section,
#suite,
#local-first,
.local-first-section,
.ownership-section,
.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}


/* Keep content above the motif */
.hero > *,
.problem-section > *,
#workflow > *,
.workflow-section > *,
#suite > *,
#local-first > *,
.local-first-section > *,
.ownership-section > *,
.cta-section > * {
  position: relative;
  z-index: 1;
}


/* Shared motif behavior */
.hero::after,
.problem-section::after,
#workflow::after,
.workflow-section::after,
#suite::after,
#local-first::after,
.local-first-section::after,
.ownership-section::after,
.cta-section::after {
  content: "";

  position: absolute;
  inset: auto;
  z-index: 0;

  pointer-events: none;
  user-select: none;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.07;
}


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero::after {
  width: 760px;
  height: 760px;

  top: 80px;
  right: -240px;

  background-image: url("../assets/bg-element-1.svg");
  transform: rotate(14deg);
  opacity: 0.075;
}


/* ---------------------------------------------------------
   Problem
   --------------------------------------------------------- */

.problem-section::after {
  width: 700px;
  height: 700px;

  top: 220px;
  right: -150px;

  background-image: url("../assets/bg-element-2.svg");
  transform: rotate(12deg);
  opacity: 0.065;
}


/* ---------------------------------------------------------
   Workflow
   --------------------------------------------------------- */

#workflow::after,
.workflow-section::after {
  width: 660px;
  height: 660px;

  top: 160px;
  left: -200px;

  background-image: url("../assets/bg-element-3.svg");
  transform: rotate(-18deg);
  opacity: 0.06;
}


/* ---------------------------------------------------------
   Suite
   --------------------------------------------------------- */

#suite::after {
  width: 760px;
  height: 760px;

  top: 180px;
  right: -280px;

  background-image: url("../assets/bg-element-1.svg");
  transform: rotate(10deg);
  opacity: 0.06;
}


/* ---------------------------------------------------------
   Local First
   --------------------------------------------------------- */

#local-first::after,
.local-first-section::after {
  width: 700px;
  height: 700px;

  top: 110px;
  left: -250px;

  background-image: url("../assets/bg-element-2.svg");
  transform: rotate(-14deg);
  opacity: 0.06;
}


/* ---------------------------------------------------------
   Ownership
   --------------------------------------------------------- */

.ownership-section::after {
  width: 680px;
  height: 680px;

  top: 130px;
  right: -220px;

  background-image: url("../assets/bg-element-3.svg");
  transform: rotate(16deg);
  opacity: 0.058;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.cta-section::after {
  width: 760px;
  height: 760px;

  top: 50%;
  left: 50%;

  background-image: url("../assets/bg-element-1.svg");
  transform: translate(-50%, -50%) rotate(8deg);
  opacity: 0.05;
}


/* ---------------------------------------------------------
   Responsive tuning
   --------------------------------------------------------- */

@media (max-width: 980px) {

  .hero::after,
  .problem-section::after,
  #workflow::after,
  .workflow-section::after,
  #suite::after,
  #local-first::after,
  .local-first-section::after,
  .ownership-section::after,
  .cta-section::after {
    opacity: 0.05;
  }

  .hero::after {
    width: 560px;
    height: 560px;
    top: 160px;
    right: -220px;
  }

  .problem-section::after {
    width: 520px;
    height: 520px;
    top: 360px;
    right: -180px;
  }

  #workflow::after,
  .workflow-section::after {
    width: 500px;
    height: 500px;
    top: 220px;
    left: -180px;
  }

  #suite::after {
    width: 560px;
    height: 560px;
    top: 260px;
    right: -220px;
  }

  #local-first::after,
  .local-first-section::after {
    width: 520px;
    height: 520px;
    top: 180px;
    left: -180px;
  }

  .ownership-section::after {
    width: 520px;
    height: 520px;
    top: 180px;
    right: -180px;
  }

  .cta-section::after {
    width: 560px;
    height: 560px;
  }

}


@media (max-width: 680px) {

  .hero::after,
  .problem-section::after,
  #workflow::after,
  .workflow-section::after,
  #suite::after,
  #local-first::after,
  .local-first-section::after,
  .ownership-section::after,
  .cta-section::after {
    opacity: 0.04;
  }

  .hero::after {
    width: 420px;
    height: 420px;
    top: 230px;
    right: -180px;
  }

  .problem-section::after {
    width: 360px;
    height: 360px;
    top: 420px;
    right: -150px;
  }

  #workflow::after,
  .workflow-section::after {
    width: 340px;
    height: 340px;
    top: 280px;
    left: -130px;
  }

  #suite::after {
    width: 380px;
    height: 380px;
    top: 380px;
    right: -150px;
  }

  #local-first::after,
  .local-first-section::after {
    width: 360px;
    height: 360px;
    top: 250px;
    left: -130px;
  }

  .ownership-section::after {
    width: 340px;
    height: 340px;
    top: 260px;
    right: -120px;
  }

  .cta-section::after {
    width: 380px;
    height: 380px;
  }

}


/* =========================================================
   MOTIF BLEED — REMOVE SECTION CLIPPING
   ========================================================= */

/*
  Background geometry should extend naturally beyond
  individual section bounds. The page shell handles
  outer-page clipping.
*/

.hero,
.problem-section,
#workflow,
.workflow-section,
#suite,
#local-first,
.local-first-section,
.ownership-section,
.cta-section {
  overflow: visible;
}


/* Prevent horizontal page scrolling from oversized motifs */

html,
body {
  overflow-x: clip;
}


/* Let motifs sit farther outside their sections */

.problem-section::after {
  width: 760px;
  height: 760px;

  top: 190px;
  right: -210px;
}

.hero::after {
  right: -290px;
}

#suite::after {
  right: -340px;
}

#workflow::after,
.workflow-section::after {
  left: -250px;
}

#local-first::after,
.local-first-section::after {
  left: -300px;
}

.ownership-section::after {
  right: -280px;
}


/* =========================================================
   WHO IT'S FOR — BACKGROUND MOTIF
   ========================================================= */

.audience-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.audience-section > * {
  position: relative;
  z-index: 1;
}

.audience-section::after {
  content: "";

  position: absolute;

  width: 680px;
  height: 680px;

  left: -220px;
  bottom: -110px;

  z-index: 0;

  background:
    url("../assets/bg-element-2.svg")
    center / contain
    no-repeat;

  opacity: 0.055;

  transform: rotate(-18deg);

  pointer-events: none;
  user-select: none;
}


@media (max-width: 980px) {

  .audience-section::after {
    width: 520px;
    height: 520px;

    left: -180px;
    bottom: -80px;

    opacity: 0.045;
  }

}


@media (max-width: 680px) {

  .audience-section::after {
    width: 380px;
    height: 380px;

    left: -150px;
    bottom: 40px;

    opacity: 0.04;
  }

}


/* =========================================================
   FULL-WIDTH STICKY HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  width: 100%;
  min-height: 76px;
  margin: 0;

  border-bottom: 1px solid var(--border);

  background:
    rgba(7,16,29,0.88);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  min-height: 76px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Remove old constrained header border behavior */

.site-header {
  padding: 0;
}


/* Give anchor jumps breathing room below sticky nav */

#why,
#workflow,
#suite,
#local,
#ownership,
#download,
#audience {
  scroll-margin-top: 100px;
}


@media (max-width: 680px) {

  .site-header {
    min-height: 68px;
  }

  .site-header-inner {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );

    min-height: 68px;
  }

}


/* =========================================================
   STICKY HEADER — FINAL FIX
   ========================================================= */

/*
  Sticky positioning cannot work correctly when an ancestor
  has overflow:hidden. Let the page flow normally and only
  clip horizontal overflow at the document level.
*/

.page-shell {
  overflow: visible;
}

html,
body {
  overflow-x: clip;
}


.site-header {
  position: sticky;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  background:
    rgba(7,16,29,0.92);

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}


.site-header-inner {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
}


/* =========================================================
   STICKY HEADER — JITTER FIX
   ========================================================= */

.site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;

  background:
    rgba(7,16,29,0.97);

  transform: translateZ(0);
  will-change: transform;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.site-header-inner {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


/* =========================================================
   HEADER — SWITCH FROM STICKY TO FIXED
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  z-index: 1000;

  transform: none;
  will-change: auto;

  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

.site-header-inner {
  transform: none;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}


/* Reserve space for the fixed header */

.page-shell {
  padding-top: 76px;
}


@media (max-width: 680px) {

  .page-shell {
    padding-top: 68px;
  }

}


/* =========================================================
   SAFARI HEADER — ROOT SCROLLING FIX
   ========================================================= */

/*
  Do not clip the root scrolling element.
  Safari can jitter fixed elements when html/body use
  overflow-x: clip.
*/

html {
  overflow-x: visible;
}

body {
  overflow-x: hidden;
}


/* Contain oversized decorative assets here instead */

.page-shell {
  position: relative;

  width: 100%;

  overflow-x: hidden;
  overflow-y: visible;

  padding-top: 76px;
}


/* Completely plain fixed header */

.site-header {
  position: fixed !important;

  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  width: 100% !important;
  height: 76px;

  margin: 0 !important;

  z-index: 9999;

  background: #07101d;

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  transform: none !important;
  translate: none !important;

  filter: none !important;

  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;

  will-change: auto !important;

  transition: none !important;

  contain: none;
}


.site-header-inner {
  height: 76px;
  min-height: 76px;

  transform: none !important;
  translate: none !important;

  transition: none !important;
}


/* Nothing inside the header should animate on scroll */

.site-header *,
.site-header *::before,
.site-header *::after {
  transform-style: flat;
}


@media (max-width: 680px) {

  .site-header {
    height: 68px;
  }

  .site-header-inner {
    height: 68px;
    min-height: 68px;
  }

  .page-shell {
    padding-top: 68px;
  }

}


/* =========================================================
   SINGLE DOCUMENT SCROLL CONTAINER
   ========================================================= */

/*
  Do not let page-shell become a nested scroll container.
  Safari can consume the first wheel/trackpad gesture when
  overflow is applied independently on this wrapper.
*/

html {
  overflow-x: visible;
  overflow-y: visible;
}

body {
  overflow-x: hidden;
  overflow-y: visible;
}

.page-shell {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}


.mobile-menu-toggle {
  width: 42px;
  height: 42px;

  padding: 0;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  border:
    1px solid var(--border-strong);

  border-radius: 10px;

  background:
    rgba(255,255,255,0.035);

  color: var(--text);

  cursor: pointer;
}


.mobile-menu-toggle span {
  width: 18px;
  height: 2px;

  display: block;

  border-radius: 99px;

  background: currentColor;

  transform-origin: center;

  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}


.mobile-menu-toggle.is-open span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}


.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}


.mobile-menu-toggle.is-open span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


.mobile-nav {
  position: absolute;

  top: 100%;
  left: 0;
  right: 0;

  border-bottom:
    1px solid var(--border);

  background:
    #07101d;

  box-shadow:
    0 22px 45px rgba(0,0,0,0.28);
}


.mobile-nav.is-open {
  display: block;
}


.mobile-nav-inner {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;

  padding:
    14px 0
    22px;

  display: grid;
  gap: 5px;
}


.mobile-nav a:not(.button) {
  padding:
    12px 10px;

  border-radius: 9px;

  color: var(--text-soft);

  font-size: 0.9rem;
  font-weight: 650;
}


.mobile-nav a:not(.button):hover {
  background:
    rgba(255,255,255,0.04);

  color: var(--text);
}


.mobile-nav-cta {
  width: 100%;
  margin-top: 8px;
}


@media (max-width: 980px) {

  .desktop-nav {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-header {
    overflow: visible;
  }

}


@media (max-width: 680px) {

  .mobile-nav-inner {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );
  }

}

/* =========================================================
   MOBILE WORKFLOW POLISH
   Engagement Workflow + Simple by Design
   ========================================================= */

@media (max-width: 680px) {

  /* ---------------------------------------------
     SECTION RHYTHM
     --------------------------------------------- */

  #workflow,
  .ownership-section + .section {
    padding-top: 54px;
    padding-bottom: 58px;
  }


  /* ---------------------------------------------
     HEADING COMPOSITION
     --------------------------------------------- */

  #workflow .section-heading,
  .ownership-section + .section .section-heading {
    max-width: 100%;
    margin: 0 auto 34px;
    text-align: center;
  }

  #workflow .section-heading .eyebrow,
  .ownership-section + .section .section-heading .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  #workflow .section-heading h2,
  .ownership-section + .section .section-heading h2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;

    font-size: clamp(2rem, 9.5vw, 2.65rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
  }

  #workflow .section-heading p,
  .ownership-section + .section .section-heading p {
    max-width: 520px;
    margin: 20px auto 0;

    font-size: 0.92rem;
    line-height: 1.65;
  }


  /* ---------------------------------------------
     VERTICAL WORKFLOW
     --------------------------------------------- */

  #workflow .workflow,
  .ownership-section + .section .workflow {
    width: min(100%, 430px);
    margin: 32px auto 0;

    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }


  /* Each step becomes a compact timeline row */

  #workflow .workflow-step,
  .ownership-section + .section .workflow-step {
    position: relative;

    width: 100%;
    min-height: 58px;

    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 3px;

    align-items: center;
    text-align: left;
  }


  /* Number tile */

  #workflow .workflow-step > span,
  .ownership-section + .section .workflow-step > span {
    grid-column: 1;
    grid-row: 1 / 3;

    width: 42px;
    height: 42px;
    margin: 0;

    border-radius: 10px;

    font-size: 0.68rem;
  }


  /* Step title */

  #workflow .workflow-step > strong,
  .ownership-section + .section .workflow-step > strong {
    grid-column: 2;
    grid-row: 1;

    align-self: end;

    font-size: 0.94rem;
    line-height: 1.2;
  }


  /* Supporting copy */

  #workflow .workflow-step > small,
  .ownership-section + .section .workflow-step > small {
    grid-column: 2;
    grid-row: 2;

    align-self: start;

    margin: 0;

    font-size: 0.72rem;
    line-height: 1.4;
  }


  /* Connector becomes part of the left rail */

  #workflow .workflow-line,
  .ownership-section + .section .workflow-line {
    width: 1px;
    height: 24px;

    margin: 3px 0 3px 21px;

    background:
      linear-gradient(
        180deg,
        rgba(63,140,255,0.12),
        rgba(63,140,255,0.48),
        rgba(63,140,255,0.12)
      );
  }


  /* ---------------------------------------------
     MOBILE MOTIFS
     Let the content win over the decorative rings.
     --------------------------------------------- */

  #workflow::after,
  .workflow-section::after {
    width: 250px;
    height: 250px;

    top: 320px;
    left: -125px;

    opacity: 0.025;
  }

  .ownership-section::after {
    width: 240px;
    height: 240px;

    top: auto;
    right: -120px;
    bottom: -60px;

    opacity: 0.025;
  }


  /* Prevent motif bleed from visually swallowing the
     Simple by Design section on a narrow screen. */

  .ownership-section + .section {
    position: relative;
    z-index: 1;
  }

}


/* Extra-small phones */

@media (max-width: 430px) {

  #workflow .section-heading h2,
  .ownership-section + .section .section-heading h2 {
    font-size: 2rem;
  }

  #workflow .workflow,
  .ownership-section + .section .workflow {
    width: 100%;
  }

}

/* MOBILE HERO — HIDE POINT LIST */

@media (max-width: 680px) {

  .hero-points {
    display: none;
  }

}


/* =========================================================
   MOBILE — BRING IT TOGETHER REVEAL
   One motion system, short confident settle
   ========================================================= */

@media (max-width: 680px) {

  .solution-flow.reveal {
    transform: translate3d(0, 12px, 0);

    transition:
      opacity 0.28s ease,
      transform 0.38s cubic-bezier(.2,.8,.2,1);

    transition-delay: 0s !important;
  }

  .solution-flow.reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }

}



/* =========================================================
   PRODUCT SHOWCASE
   ========================================================= */

.product-showcase-section {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
  padding: 75px 0 95px;
}

.product-showcase-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.product-showcase-heading h2 {
  margin: 0;

  font-family:
    Kanit,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  font-size:
    clamp(2.4rem, 5vw, 4.2rem);

  line-height: 1.02;
  letter-spacing: -0.045em;
}

.product-showcase-heading h2 span {
  display: block;
  color: var(--blue-light);
}

.product-showcase-heading p {
  max-width: 700px;
  margin: 22px auto 0;

  color: var(--text-soft);

  font-size: 1rem;
  line-height: 1.7;
}


.product-showcase {
  max-width: 1180px;
  margin: 0 auto;
}


.showcase-stage {
  display: grid;
  grid-template-columns:
    52px minmax(0, 1fr) 52px;

  align-items: center;
  gap: 18px;
}


.showcase-window {
  overflow: hidden;

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 20px;

  background:
    rgba(10,20,35,0.92);

  box-shadow:
    0 34px 90px rgba(0,0,0,0.34);
}


.showcase-window-bar {
  min-height: 44px;

  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;

  padding: 0 15px;

  border-bottom: 1px solid var(--border);

  background:
    rgba(255,255,255,0.025);
}


.showcase-window-dots {
  display: flex;
  gap: 6px;
}

.showcase-window-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.16);
}


.showcase-window-label {
  grid-column: 2;

  text-align: center;

  color: var(--text-muted);

  font-size: 0.72rem;
  font-weight: 700;
}


.showcase-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #07101d;
}


.showcase-slide {
  position: absolute;
  inset: 0;

  margin: 0;

  opacity: 0;
  visibility: hidden;

  transform:
    translate3d(24px, 0, 0)
    scale(0.992);

  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(.2,.8,.2,1),
    visibility 0s linear 0.38s;

  pointer-events: none;
}


.showcase-slide.is-active {
  opacity: 1;
  visibility: visible;

  transform:
    translate3d(0,0,0)
    scale(1);

  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(.2,.8,.2,1);

  pointer-events: auto;
}


.showcase-slide img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top center;
}


.showcase-arrow {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border:
    1px solid rgba(63,140,255,0.28);

  border-radius: 13px;

  background:
    rgba(63,140,255,0.07);

  color: var(--text);

  font: inherit;
  font-size: 1.8rem;
  line-height: 1;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}


.showcase-arrow:hover {
  transform: translateY(-2px);

  background:
    rgba(63,140,255,0.14);

  border-color:
    rgba(63,140,255,0.48);
}


.showcase-caption {
  min-height: 68px;

  margin-top: 24px;

  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;

  text-align: center;
}


.showcase-caption strong {
  color: var(--text);

  font-size: 0.92rem;
}


.showcase-caption span {
  color: var(--text-muted);

  font-size: 0.82rem;
}


.showcase-nav {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 8px;
}


.showcase-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border:
    1px solid rgba(63,140,255,0.34);

  border-radius: 999px;

  background:
    rgba(63,140,255,0.08);

  cursor: pointer;

  transition:
    width 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}


.showcase-dot.is-active {
  width: 28px;

  background: var(--blue);

  border-color: var(--blue);
}


/* Tablet */

@media (max-width: 980px) {

  .product-showcase-section {
    padding:
      65px 0
      80px;
  }

  .showcase-stage {
    grid-template-columns:
      44px minmax(0, 1fr) 44px;

    gap: 12px;
  }

  .showcase-arrow {
    width: 42px;
    height: 42px;

    font-size: 1.5rem;
  }

}


/* Mobile */

@media (max-width: 680px) {

  .product-showcase-section {
    width:
      min(
        calc(100% - 28px),
        var(--max-width)
      );

    padding:
      52px 0
      64px;
  }

  .product-showcase-heading {
    margin-bottom: 30px;
  }

  .product-showcase-heading .eyebrow {
    margin-bottom: 13px;

    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }

  .product-showcase-heading h2 {
    font-size:
      clamp(2rem, 10vw, 2.7rem);
  }

  .product-showcase-heading p {
    margin-top: 18px;

    font-size: 0.91rem;
    line-height: 1.6;
  }


  .showcase-stage {
    display: block;
    position: relative;
  }


  .showcase-window {
    border-radius: 14px;
  }


  .showcase-window-bar {
    min-height: 38px;
    padding: 0 12px;

    grid-template-columns:
      55px 1fr 55px;
  }


  .showcase-window-dots span {
    width: 6px;
    height: 6px;
  }


  .showcase-window-label {
    font-size: 0.62rem;
  }


  .showcase-slides {
    aspect-ratio: 16 / 10;
  }


  .showcase-arrow {
    position: absolute;
    z-index: 5;

    top: 50%;

    width: 38px;
    height: 38px;

    transform:
      translateY(-50%);

    border-radius: 50%;

    background:
      rgba(7,16,29,0.82);

    -webkit-backdrop-filter:
      blur(10px);

    backdrop-filter:
      blur(10px);
  }


  .showcase-arrow:hover {
    transform:
      translateY(-50%);
  }


  .showcase-arrow-prev {
    left: 8px;
  }

  .showcase-arrow-next {
    right: 8px;
  }


  .showcase-caption {
    min-height: 82px;

    margin-top: 18px;

    display: grid;
    gap: 5px;

    align-content: start;
  }


  .showcase-caption strong {
    font-size: 0.88rem;
  }


  .showcase-caption span {
    max-width: 310px;
    margin: 0 auto;

    font-size: 0.76rem;
    line-height: 1.45;
  }

}


/* Respect reduced motion */

@media (prefers-reduced-motion: reduce) {

  .showcase-slide,
  .showcase-arrow,
  .showcase-dot {
    transition: none !important;
  }

}



/* =========================================================
   PUBLIC LEGAL PAGES
   ========================================================= */

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
}

.legal-back:hover {
  color: var(--text);
}

.legal-page .eyebrow {
  margin-bottom: 14px;
}

.legal-page h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-family:
    Kanit,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.legal-page .legal-intro {
  max-width: 760px;
  margin-bottom: 42px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-family:
    Kanit,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: 1.3rem;
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-summary-box {
  margin: 28px 0 38px;
  padding: 22px;
  border: 1px solid rgba(63,140,255,.22);
  border-radius: 14px;
  background: rgba(63,140,255,.06);
}

.legal-summary-box strong {
  display: block;
  margin-bottom: 8px;
}

.legal-summary-box p {
  margin: 0;
  font-size: .84rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 10px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
}

.footer-legal a:hover {
  color: var(--text);
}

@media (max-width: 680px) {
  .legal-shell {
    width: min(calc(100% - 28px), 900px);
    padding: 48px 0 72px;
  }

  .legal-page h1 {
    font-size: 2.6rem;
  }

  .legal-intro {
    margin-bottom: 32px;
  }
}


/* =========================================================
   FOOTER LAYOUT REFINEMENT
   ========================================================= */

.site-footer {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
  padding: 30px 0;

  display: grid;
  grid-template-columns:
    auto minmax(220px, 1fr) auto auto;

  align-items: center;
  gap: 18px;

  border-top: 1px solid var(--border);
}


.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}


.site-footer .footer-brand img {
  width: 28px;
  height: 28px;

  object-fit: contain;

  border-radius: 7px;
}


.site-footer .footer-brand span {
  font-size: 0.78rem;
}


.site-footer > p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.7rem;
  line-height: 1.4;
}


.site-footer .footer-legal {
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 16px;
}


.site-footer .footer-copy {
  white-space: nowrap;

  color: var(--text-muted);

  font-size: 0.66rem;
}


@media (max-width: 800px) {

  .site-footer {
    width:
      min(
        calc(100% - 28px),
        var(--max-width)
      );

    grid-template-columns:
      1fr auto;

    gap: 12px 18px;
  }


  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;

    text-align: left;
  }


  .site-footer .footer-legal {
    grid-column: 1 / -1;
    grid-row: 3;

    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 12px;
  }


  .site-footer .footer-copy {
    grid-column: 2;
    grid-row: 1;

    justify-self: end;
  }

}


@media (max-width: 480px) {

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;

    padding: 26px 0;
  }


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


  .site-footer .footer-legal {
    margin-top: 6px;
  }


  .site-footer .footer-copy {
    margin-top: 5px;
  }

}


/* =========================================================
   FINAL FOOTER LAYOUT
   ========================================================= */

.site-footer {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
  padding: 28px 0 32px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand legal"
    "tagline copyright";

  align-items: center;
  gap: 10px 28px;

  border-top: 1px solid var(--border);
}

.site-footer .footer-brand {
  grid-area: brand;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  justify-self: start;
}

.site-footer .footer-brand img {
  width: 28px;
  height: 28px;

  object-fit: contain;
  border-radius: 7px;
}

.site-footer .footer-brand span {
  font-size: 0.78rem;
}

.site-footer > p {
  grid-area: tagline;

  margin: 0;

  color: var(--text-muted);

  font-size: 0.7rem;
  line-height: 1.4;

  text-align: left;
}

.site-footer .footer-legal {
  grid-area: legal;

  margin: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;

  gap: 14px;

  justify-self: end;
}

.site-footer .footer-copy {
  grid-area: copyright;

  justify-self: end;

  color: var(--text-muted);

  font-size: 0.66rem;

  white-space: nowrap;
}


/* TABLET / MOBILE */

@media (max-width: 680px) {

  .site-footer {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;

    padding: 26px 0 30px;
  }

  .site-footer .footer-brand,
  .site-footer .footer-legal,
  .site-footer .footer-copy,
  .site-footer > p {
    margin: 0;

    justify-self: auto;
  }

  .site-footer .footer-legal {
    justify-content: flex-start;

    margin-top: 6px;
  }

  .site-footer .footer-copy {
    margin-top: 4px;
  }

}


/* =========================================================
   FINAL FOOTER LAYOUT
   ========================================================= */

.site-footer {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
  padding: 28px 0 32px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand legal"
    "tagline copyright";

  align-items: center;
  gap: 10px 28px;

  border-top: 1px solid var(--border);
}

.site-footer .footer-brand {
  grid-area: brand;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  justify-self: start;
}

.site-footer .footer-brand img {
  width: 28px;
  height: 28px;

  object-fit: contain;
  border-radius: 7px;
}

.site-footer .footer-brand span {
  font-size: 0.78rem;
}

.site-footer > p {
  grid-area: tagline;

  margin: 0;

  color: var(--text-muted);

  font-size: 0.7rem;
  line-height: 1.4;

  text-align: left;
}

.site-footer .footer-legal {
  grid-area: legal;

  margin: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;

  gap: 14px;

  justify-self: end;
}

.site-footer .footer-copy {
  grid-area: copyright;

  justify-self: end;

  color: var(--text-muted);

  font-size: 0.66rem;

  white-space: nowrap;
}


/* TABLET / MOBILE */

@media (max-width: 680px) {

  .site-footer {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;

    padding: 26px 0 30px;
  }

  .site-footer .footer-brand,
  .site-footer .footer-legal,
  .site-footer .footer-copy,
  .site-footer > p {
    margin: 0;

    justify-self: auto;
  }

  .site-footer .footer-legal {
    justify-content: flex-start;

    margin-top: 6px;
  }

  .site-footer .footer-copy {
    margin-top: 4px;
  }

}


/* =========================================================
   FOOTER — SIMPLIFIED FINAL LAYOUT
   ========================================================= */

.site-footer {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
  padding: 28px 0 32px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;

  align-items: start;
  gap: 24px;

  border-top: 1px solid var(--border);
}


/* LEFT SIDE */

.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin: 0;
}

.site-footer .footer-brand img {
  width: 28px;
  height: 28px;

  object-fit: contain;
  border-radius: 7px;
}

.site-footer .footer-brand span {
  font-size: 0.78rem;
}

.site-footer > p {
  grid-column: 1;
  margin: 8px 0 0;

  max-width: 430px;

  color: var(--text-muted);

  font-size: 0.7rem;
  line-height: 1.45;

  text-align: left;
}

.site-footer .footer-copy {
  grid-column: 1;

  margin-top: 8px;

  color: var(--text-muted);

  font-size: 0.66rem;

  justify-self: start;
}


/* RIGHT SIDE */

.site-footer .footer-legal {
  grid-column: 2;
  grid-row: 1 / span 3;

  margin: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;

  gap: 16px;

  align-self: center;
}

.site-footer .footer-legal a {
  font-size: 0.68rem;
}


/* MOBILE */

@media (max-width: 680px) {

  .site-footer {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    padding: 24px 0 28px;
  }

  .site-footer .footer-brand,
  .site-footer > p,
  .site-footer .footer-legal,
  .site-footer .footer-copy {
    margin: 0;
  }

  .site-footer > p {
    margin-top: 4px;
  }

  .site-footer .footer-legal {
    margin-top: 10px;

    justify-content: flex-start;

    gap: 12px;
  }

  .site-footer .footer-copy {
    margin-top: 4px;
  }

}


/* =========================================================
   FOOTER — CLEAN CENTERED LAYOUT
   ========================================================= */

.site-footer {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
  padding: 28px 0 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 10px;

  text-align: center;

  border-top: 1px solid var(--border);
}

.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  margin: 0;
}

.site-footer .footer-brand img {
  width: 28px;
  height: 28px;

  object-fit: contain;
  border-radius: 7px;
}

.site-footer .footer-brand span {
  font-size: 0.8rem;
}

.site-footer > p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.7rem;
  line-height: 1.45;

  text-align: center;
}

.site-footer .footer-legal {
  margin: 4px 0 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 14px;
}

.site-footer .footer-legal a {
  font-size: 0.68rem;
}

.site-footer .footer-copy {
  display: none !important;
}

@media (max-width: 680px) {

  .site-footer {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );

    padding: 24px 0 28px;
  }

}


/* =========================================================
   FOOTER — LEGAL LINKS ON TOP
   ========================================================= */

.site-footer {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin: 0 auto;
  padding: 28px 0 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 10px;
  text-align: center;

  border-top: 1px solid var(--border);
}

.site-footer .footer-legal {
  order: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 14px;
  margin: 0 0 6px;
}

.site-footer .footer-brand {
  order: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;
  margin: 0;
}

.site-footer > p {
  order: 3;

  margin: 0;
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

.site-footer .footer-copy {
  display: none !important;
}

.site-footer .footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 7px;
}

.site-footer .footer-brand span {
  font-size: 0.8rem;
}

.site-footer .footer-legal a {
  font-size: 0.68rem;
}

@media (max-width: 680px) {

  .site-footer {
    width: min(
      calc(100% - 28px),
      var(--max-width)
    );

    padding: 24px 0 28px;
    gap: 9px;
  }

  .site-footer .footer-legal {
    gap: 12px;
  }

}

