    :root {
      --ink: #171717;
      --muted: #656565;
      --line: #e6e2dc;
      --paper: #fffdf9;
      --surface: #ffffff;
      --clay: #c85f45;
      --sage: #6d8d7a;
      --sky: #4c7d9a;
      --gold: #c39a4b;
      --rose: #f7dfd7;
      --mint: #e2eee6;
      --blue: #e0edf3;
      --shadow: 0 22px 70px rgba(23, 23, 23, 0.11);
      --radius: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        linear-gradient(180deg, rgba(247, 223, 215, 0.6) 0, rgba(255, 253, 249, 0) 560px),
        var(--paper);
      line-height: 1.55;
    }

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

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

    .page-shell {
      min-height: 100vh;
      padding-top: 68px;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      border-bottom: 1px solid rgba(230, 226, 220, 0.75);
      background: rgba(255, 253, 249, 0.9);
      backdrop-filter: blur(18px);
      transition: background 180ms ease, border-color 180ms ease;
    }

    .header-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: 0;
      font-size: 14px;
      transition: opacity 180ms ease;
    }

    .brand:hover {
      opacity: 0.78;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--ink);
      font-size: 14px;
      font-weight: 900;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 8px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      color: #4d4d4d;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav a,
    .button {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: var(--radius);
      padding: 0 14px;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .nav a:hover,
    .button:hover {
      transform: translateY(-1px);
      background: #fff;
	  color: #000;
    }

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

    .social-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .social-icon {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      color: #606060;
      transition: color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    .social-icon:hover {
      color: #000;
      background: #fff;
      transform: translateY(-1px);
    }

    .language-switch {
      display: flex;
      align-items: center;
      padding: 3px;
      border-radius: 999px;
      background: #f2f0ed;
      font-size: 12px;
      font-weight: 800;
    }

    .language-switch a,
    .language-switch span {
      min-width: 38px;
      padding: 5px 11px;
      border-radius: 999px;
      text-align: center;
    }

    .language-switch a {
      color: #777;
      transition: color 180ms ease, background 180ms ease;
    }

    .language-switch a:hover {
      color: #000;
    }

    .language-switch span {
      color: #000;
      background: #fff;
      box-shadow: 0 2px 10px rgba(23, 23, 23, 0.08);
    }

    .mobile-menu-toggle {
      display: none;
      min-height: 38px;
      border: 0;
      border-radius: var(--radius);
      padding: 0 2px;
      color: #606060;
      background: transparent;
      font: inherit;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
    }

    .mobile-menu-toggle:hover {
      color: #000;
    }

.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;

  width: 100%;
  max-height: calc(100vh - 62px);

  overflow-y: auto;
  overflow-x: hidden;

  padding: 28px 20px 30px;

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

  background: rgba(255, 253, 249, 0.97);

  box-shadow: 0 24px 50px rgba(23, 23, 23, 0.12);

  backdrop-filter: blur(18px);

  -webkit-overflow-scrolling: touch;
}

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

    .mobile-menu-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      gap: 24px;
    }

    .mobile-nav {
      display: grid;
      gap: 14px;
      color: #202020;
      font-size: 19px;
      font-weight: 800;
    }

    .mobile-nav a {
      min-height: 34px;
    }

    .mobile-divider {
      height: 1px;
      background: var(--line);
    }

    .button {
      border: 1px solid var(--ink);
      color: #fff;
      background: var(--ink);
      font-weight: 800;
    }

    .button.secondary {
      color: var(--ink);
      background: transparent;
      border-color: var(--line);
    }
	
	.button.secondary:hover {
      transform: translateY(-1px);
      background: #fff;
	  color: #000;
    }

    main {
      overflow: hidden;
    }

    .hero {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 76px 0 52px;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
      align-items: center;
      gap: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--clay);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--clay);
    }

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

    h1 {
      margin-bottom: 22px;
      font-size: clamp(42px, 6vw, 78px);
      line-height: 0.96;
      letter-spacing: 0;
      max-width: 850px;
    }

    .hero-copy {
      margin-bottom: 28px;
      max-width: 680px;
      color: #3f3f3f;
      font-size: clamp(18px, 2vw, 22px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 30px;
    }

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

    .fact {
      min-height: 112px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.74);
    }

    .fact strong {
      display: block;
      margin-bottom: 7px;
      font-size: 13px;
      text-transform: uppercase;
    }

    .fact span {
      color: var(--muted);
      font-size: 14px;
    }

    .product-preview {
      position: relative;
      min-height: 590px;
      padding: 16px;
      border: 1px solid rgba(23, 23, 23, 0.1);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .preview-topbar {
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .preview-dots {
      display: flex;
      gap: 7px;
    }

    .preview-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--line);
    }

    .preview-body {
      padding: 22px 4px 4px;
    }

    .upload-tile {
      min-height: 170px;
      display: grid;
      place-items: center;
      padding: 24px;
      border: 1px dashed #d7cfc6;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(226, 238, 230, 0.85), rgba(224, 237, 243, 0.8)),
        #f7f3ee;
      text-align: center;
    }

    .upload-tile strong {
      display: block;
      margin-bottom: 6px;
      font-size: 22px;
    }

    .upload-tile span {
      color: var(--muted);
      font-size: 14px;
    }

    .flow {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 14px 0;
    }

    .flow-step {
      min-height: 74px;
      padding: 13px;
      border-radius: var(--radius);
      color: #323232;
      background: #f8f6f2;
      font-size: 13px;
      font-weight: 800;
    }

    .look-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .look-card {
      min-height: 206px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .look-art {
      min-height: 116px;
      border-radius: 7px;
      background: var(--rose);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      padding: 12px;
    }

    .look-card:nth-child(2) .look-art {
      background: var(--blue);
    }

    .look-card:nth-child(3) .look-art {
      background: var(--mint);
    }

    .garment {
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.8);
      min-height: 34px;
    }

    .garment:nth-child(3) {
      grid-column: 1 / -1;
      min-height: 42px;
      border-radius: 7px;
    }

    .look-card h3 {
      margin: 12px 0 2px;
      font-size: 15px;
    }

    .look-card p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
    }

    .section {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 72px 0;
    }

    .section-header {
      max-width: 760px;
      margin-bottom: 32px;
    }

    .section-kicker {
      margin-bottom: 10px;
      color: var(--sky);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 16px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .section-header p {
      color: var(--muted);
      font-size: 18px;
    }

    .split {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .problem-panel {
      padding: 30px;
      border-radius: var(--radius);
      background: var(--ink);
      color: #fff;
    }

    .problem-panel p {
      margin-bottom: 18px;
      color: rgba(255, 255, 255, 0.76);
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      padding: 0 12px;
      font-size: 13px;
      font-weight: 800;
    }

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

    .insight,
    .module,
    .tech-row,
    .local-video-card,
    .video-card,
    .source-note {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
    }

    .insight {
      min-height: 150px;
      padding: 24px;
    }

    .insight b,
    .module b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .insight p,
    .module p {
      margin-bottom: 0;
      color: var(--muted);
    }

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

    .module {
      min-height: 235px;
      padding: 24px;
    }

    .module-index {
      width: 34px;
      height: 34px;
      margin-bottom: 28px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: #fff;
      background: var(--clay);
      font-size: 13px;
      font-weight: 900;
    }

    .module:nth-child(2) .module-index,
    .module:nth-child(5) .module-index {
      background: var(--sage);
    }

    .module:nth-child(3) .module-index,
    .module:nth-child(4) .module-index {
      background: var(--sky);
    }

    .workflow {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: #f7f3ee;
    }

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

    .workflow-step {
      min-height: 220px;
      padding: 32px;
      border-right: 1px solid var(--line);
    }

    .workflow-step:last-child {
      border-right: 0;
    }

    .workflow-step span {
      display: block;
      margin-bottom: 48px;
      color: var(--clay);
      font-weight: 900;
    }

    .workflow-step h3 {
      margin-bottom: 10px;
      font-size: 20px;
    }

    .workflow-step p {
      margin: 0;
      color: var(--muted);
    }

    .tech-table {
      display: grid;
      gap: 10px;
    }

    .tech-row {
      display: grid;
      grid-template-columns: 0.6fr 1.4fr;
      gap: 18px;
      padding: 18px;
    }

    .tech-row strong {
      font-size: 15px;
      text-transform: uppercase;
    }

    .tech-row span {
      color: var(--muted);
    }

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

    .local-video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 18px;
    }

    .local-video-card {
      overflow: hidden;
    }

    .case-video {
      aspect-ratio: 16 / 9;
      width: 100%;
      background: #111;
      cursor: pointer;
      object-fit: cover;
    }

.video-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 25px rgba(247, 223, 215, 0.45),
    0 4px 10px rgba(255, 180, 160, 0.25);
  cursor: pointer;
}

    .site-preview {
      aspect-ratio: 16 / 9;
      display: grid;
      align-content: center;
      gap: 14px;
      padding: 20px;
      background:
        linear-gradient(135deg, rgba(247, 223, 215, 0.9), rgba(255, 239, 83, 0.25)),
        #f7f3ee;
    }

    .site-preview strong {
      font-size: 28px;
      line-height: 1;
    }

    .site-preview span {
      width: fit-content;
      border: 1px solid rgba(23, 23, 23, 0.18);
      border-radius: 999px;
      padding: 6px 10px;
      color: #3f3f3f;
      background: rgba(255, 255, 255, 0.62);
      font-size: 12px;
      font-weight: 800;
    }

    .video-card-content {
      padding: 18px;
    }

    .local-video-content {
      padding: 18px;
    }

    .video-card-content b {
      display: block;
      margin-bottom: 8px;
      line-height: 1.25;
    }

    .local-video-content b {
      display: block;
      margin-bottom: 8px;
      line-height: 1.25;
    }

    .video-card-content p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .local-video-content p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .source-note {
      margin-top: 18px;
      padding: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .final-band {
      background: var(--ink);
      color: #fff;
    }

    .final-band .section {
      padding-bottom: 86px;
    }

    .final-band p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 20px;
    }

    .final-band .button {
      border-color: #fff;
      background: #fff;
      color: var(--ink);
    }

    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding: 24px 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 14px;
    }

    footer .section {
      padding: 0;
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    @media (max-width: 980px) {
      .hero,
      .split {
        grid-template-columns: 1fr;
      }

      .product-preview {
        min-height: auto;
      }

      .modules,
      .local-video-grid,
      .video-grid,
      .case-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .workflow-step:nth-child(2) {
        border-right: 0;
      }

      .workflow-step:nth-child(1),
      .workflow-step:nth-child(2) {
        border-bottom: 1px solid var(--line);
      }
    }

    @media (max-width: 900px) {
      .header-inner,
      .hero,
      .section {
        width: min(100% - 28px, 1180px);
      }

      .header-inner {
        min-height: 62px;
      }

      .nav {
        display: none;
      }

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

      .social-row.desktop-only,
      .language-switch.desktop-only {
        display: none;
      }

      .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
      }

      .hero {
        padding-top: 44px;
      }

      .case-facts,
      .insight-list,
      .modules,
      .local-video-grid,
      .video-grid,
      .workflow-grid,
      .tech-row {
        grid-template-columns: 1fr;
      }

      .flow,
      .look-grid {
        grid-template-columns: 1fr;
      }

      .workflow-step,
      .workflow-step:nth-child(2) {
        border-right: 0;
      }

      .workflow-step:not(:last-child) {
        border-bottom: 1px solid var(--line);
      }

      footer .section {
        flex-direction: column;
      }
    }.footer {
  margin-top: 80px;
  padding: 56px 0 30px;

  background: #171717;
  color: rgba(255,255,255,0.92);

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

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;

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

  padding-bottom: 28px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;

  transition: opacity 0.25s ease;
}

.footer-name:hover {
  opacity: 0.7;
}

.footer-role {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-button {
  min-height: 48px;
  padding: 0 24px;

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

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

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

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

/* primary */
.footer-button.primary {
  background: #fff;
  color: #171717;
}

.footer-button.primary:hover {
  background: #f1f1f1;
}

/* secondary */
.footer-button.secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;

  backdrop-filter: blur(12px);
}

.footer-button.secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;

  padding-top: 22px;

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

  color: rgba(255,255,255,0.38);
  font-size: 13px;
}

/* mobile */
@media (max-width: 720px) {

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-button {
    flex: 1;
  }
}


.mobile-menu-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.mobile-menu-scroll::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
}

@media (orientation: landscape) and (max-width: 900px) {
  .mobile-menu {
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }
}