:root {
  --font-sans: "Montserrat", Arial, sans-serif;
  --ink: #171717;
  --muted: #687076;
  --paper: #f4f4f2;
  --panel: #ffffff;
  --line: #d7d7d2;
  --accent: #202020;
  --accent-ink: #111111;
  --data-bg: #080a0f;
  --data-panel: #111722;
  --data-panel-2: #0d111a;
  --data-line: #2a3444;
  --data-text: #e6edf3;
  --data-muted: #94a3b8;
  --data-accent: #7dd3fc;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
}

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

.eyebrow,
.panel-label,
.terminal-label {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--muted);
}

.gateway-page {
  display: grid;
  place-items: center;
  padding: 32px;
  background: #101416;
  color: #f8faf8;
}

.gateway-shell {
  width: min(960px, 100%);
}

.gateway-shell h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
}

.gateway-intro {
  max-width: 680px;
  margin: 24px 0 40px;
  color: #cad4cf;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.gateway-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid #39413e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gateway-card-product {
  border-radius: 18px;
  background: #f6f4ef;
  color: #171717;
}

.gateway-card-data {
  border-radius: 0;
  background: #0a0f16;
  color: #e6edf3;
}

.gateway-card span,
.gateway-card small {
  color: currentColor;
  opacity: 0.72;
}

.gateway-card strong {
  font-size: 2rem;
}

.product-page {
  background: var(--paper);
}

.dashboard-app {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
}

.product-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: #fbfaf7;
}

.brand-lockup {
  display: grid;
  gap: 8px;
}

.brand-lockup span {
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-lockup strong {
  font-size: 1.15rem;
}

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

.side-nav a,
.view-switch {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.side-nav a {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.side-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-nav a[aria-current="page"],
.side-nav a:hover,
.view-switch-light {
  background: #eeeeeb;
  color: var(--accent-ink);
}

.side-nav a.research-launch {
  margin-top: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

.side-nav a.research-launch:hover {
  background: #303030;
  color: #ffffff;
}

.view-switch {
  margin-top: auto;
}

.product-main {
  display: grid;
  grid-template-rows: 64px minmax(240px, 1fr) 2fr;
  gap: 14px;
  padding: 0 18px 18px;
}

.product-main-scroll {
  grid-template-rows: 64px 1fr;
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.product-header h1 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}

.dashboard-hero,
.case-table-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  min-height: 250px;
  overflow: hidden;
}

.hero-summary {
  padding: 18px;
}

.hero-summary h2,
.table-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.hero-summary p {
  color: var(--muted);
  line-height: 1.65;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.metric-grid div {
  padding: 12px;
  border-radius: 8px;
  background: #f3f3f0;
  border: 1px solid #e3e3de;
}

.metric-grid span {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
}

.metric-grid small {
  color: var(--muted);
  line-height: 1.3;
}

.hero-carousel {
  display: grid;
  align-items: end;
  padding: 12px;
  background: #ecece8;
}

.carousel-frame {
  min-height: 220px;
  border-radius: 10px;
  background: #f9f9f7;
  border: 1px solid #ddddda;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.carousel-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: contain;
}

.carousel-track {
  display: flex;
  width: 400%;
  height: 100%;
  animation: product-carousel 18s infinite;
}

.carousel-track img {
  flex: 0 0 25%;
  padding: 10px;
}

@keyframes product-carousel {
  0%, 20% {
    transform: translateX(0);
  }
  25%, 45% {
    transform: translateX(-25%);
  }
  50%, 70% {
    transform: translateX(-50%);
  }
  75%, 95% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}

.carousel-dots {
  display: flex;
  gap: 7px;
  margin: 12px 0 0;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.case-table-panel {
  overflow: hidden;
}

.table-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.table-header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-action {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f4;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.case-table {
  display: grid;
}

.case-row {
  display: grid;
  grid-template-columns: 1.1fr 0.35fr 0.7fr 1.7fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 0.92rem;
}

.case-row:not(.case-row-head):hover {
  background: #f4f4f1;
}

.case-row-head {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-row span {
  min-width: 0;
}

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

.case-gallery-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}

.case-gallery-card:hover {
  background: #f8f8f5;
}

.case-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  padding: 18px;
  background: #eeeeeb;
}

.case-gallery-card div {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.case-gallery-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-gallery-card h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.case-gallery-card span {
  color: var(--muted);
  line-height: 1.55;
}

.case-study-detail-page {
  background: var(--paper);
  overflow-x: hidden;
}

.case-study-main {
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr);
  gap: 0;
  padding: 0;
}

.case-study-main .product-header {
  margin: 0;
}

.case-study-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.case-study-breadcrumb a,
.case-study-breadcrumb span {
  min-width: 0;
}

.case-study-breadcrumb a:hover {
  color: var(--ink);
}

.case-study-breadcrumb svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-study-content {
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.case-study-content .hero,
.case-study-content .section-2,
.case-study-content .div-block,
.case-study-content .div-block-2,
.case-study-content .div-block-3,
.case-study-content .section {
  max-width: 100%;
}

.case-study-content img {
  max-width: 100%;
}

.case-study-content .w-layout-layout {
  max-width: 100%;
}

.resume-panel {
  display: grid;
  gap: 14px;
}

.resume-summary,
.experience-panel,
.education-panel,
.resume-grid section {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 20px;
}

.resume-summary h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.resume-summary p,
.experience-item p,
.experience-item li,
.resume-grid li {
  color: var(--muted);
  line-height: 1.65;
}

.resume-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.resume-contact a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f4;
  font-size: 0.86rem;
  font-weight: 700;
}

.experience-panel h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.education-panel h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.experience-item {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.experience-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.experience-item p {
  margin: 0;
  font-size: 0.86rem;
}

.experience-item ul {
  margin: 0;
  padding-left: 18px;
}

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

.education-list article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7f7f4;
}

.education-list h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.education-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.resume-grid ul {
  margin: 0;
  padding-left: 18px;
}

.data-page {
  background:
    radial-gradient(circle at 15% 12%, rgba(125, 211, 252, 0.13), transparent 28%),
    linear-gradient(135deg, #06080d, #0a0e16 48%, #05070b);
  color: var(--data-text);
}

.desktop-shell {
  min-height: 100vh;
  padding: 18px;
}

.desktop-menu {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  border: 1px solid var(--data-line);
  background: rgba(13, 17, 26, 0.88);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.04), 0 18px 60px rgba(0, 0, 0, 0.28);
  padding: 0 14px;
}

.desktop-menu nav {
  display: flex;
  gap: 18px;
}

.desktop-brand,
.desktop-menu a {
  color: var(--data-muted);
  font-size: 0.9rem;
}

.desktop-grid {
  display: grid;
  grid-template-columns: 260px minmax(420px, 1.3fr) minmax(360px, 1fr);
  grid-template-areas: "navigator preview sandbox";
  gap: 12px;
  min-height: calc(100vh - 80px);
  padding-top: 12px;
  transition: grid-template-columns 320ms ease, grid-template-rows 320ms ease;
}

.desktop-grid.coastline-layout {
  grid-template-columns: 260px minmax(520px, 1.45fr) minmax(260px, 0.55fr);
}

.desktop-grid.sandbox-maximized {
  grid-template-columns: 260px minmax(260px, 0.55fr) minmax(620px, 1.45fr);
}

.desktop-grid.coastline-layout.sandbox-maximized {
  grid-template-columns: 260px minmax(260px, 0.55fr) minmax(620px, 1.45fr);
}

.desktop-grid.is-transitioning .preview-window,
.desktop-grid.is-transitioning .visual-editor-window {
  animation: workstation-panel-shift 360ms ease both;
}

@keyframes workstation-panel-shift {
  0% {
    opacity: 0.55;
    transform: translateY(10px) scale(0.992);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.file-window,
.preview-window,
.visual-editor-window {
  border: 1px solid var(--data-line);
  background: rgba(17, 23, 34, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 24px 70px rgba(0, 0, 0, 0.22);
  min-height: 360px;
}

.file-window {
  grid-area: navigator;
  position: sticky;
  top: 74px;
  height: calc(100vh - 92px);
  align-self: start;
}

.preview-window {
  grid-area: preview;
  height: calc(100vh - 92px);
  overflow: hidden;
}

.visual-editor-window {
  grid-area: sandbox;
  position: sticky;
  top: 74px;
  height: calc(100vh - 92px);
  align-self: start;
}

.window-bar {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--data-line);
  background: linear-gradient(90deg, #0b1018, #101928);
  color: var(--data-muted);
  font-size: 0.82rem;
}

.window-bar-actions {
  justify-content: space-between;
  gap: 12px;
}

.sandbox-toggle {
  border: 1px solid var(--data-line);
  background: rgba(125, 211, 252, 0.08);
  color: var(--data-accent);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 8px;
  text-transform: uppercase;
}

.sandbox-toggle[hidden] {
  display: none;
}

.sandbox-toggle:hover {
  background: rgba(125, 211, 252, 0.16);
}

.miller-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: calc(100% - 36px);
}

.project-list {
  display: grid;
  align-content: start;
  gap: 1px;
  height: calc(100% - 36px);
  overflow-y: auto;
  background: rgba(42, 52, 68, 0.55);
}

.file-column {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--data-line);
}

.file-column:last-child {
  border-right: 0;
}

.file-node {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(42, 52, 68, 0.7);
  background: transparent;
  color: var(--data-muted);
  font: inherit;
  font-size: 0.8rem;
  text-align: left;
  padding: 11px 10px;
}

.file-node.active {
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.14), rgba(192, 132, 252, 0.07));
  color: var(--data-text);
}

.project-node {
  width: 100%;
  display: grid;
  gap: 7px;
  border: 0;
  background: rgba(13, 17, 26, 0.72);
  color: var(--data-muted);
  font: inherit;
  text-align: left;
  padding: 14px 12px;
}

.project-node:hover,
.project-node.active {
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.15), rgba(192, 132, 252, 0.08));
  color: var(--data-text);
}

.project-node span {
  font-weight: 800;
  line-height: 1.2;
}

.project-node small {
  color: currentColor;
  opacity: 0.62;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.preview-content {
  padding: 24px;
  height: calc(100% - 36px);
  overflow-y: auto;
}

.preview-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.preview-content p {
  color: var(--data-muted);
  line-height: 1.65;
}

.terminal-label {
  color: var(--data-accent);
}

.code-block {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--data-line);
  background: #080c12;
  color: #c4b5fd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
}

.readme-content {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.readme-section {
  border-top: 1px solid var(--data-line);
  padding-top: 14px;
}

.readme-section h2 {
  margin: 0 0 8px;
  color: var(--data-text);
  font-size: 0.9rem;
}

.readme-section p,
.readme-section li {
  color: var(--data-muted);
  line-height: 1.62;
}

.readme-section p {
  margin: 0;
}

.readme-section ul {
  margin: 0;
  padding-left: 18px;
}

.readme-section a {
  display: inline-block;
  margin-top: 8px;
  color: var(--data-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.readme-section li span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.method-tags span {
  border: 1px solid var(--data-line);
  background: rgba(125, 211, 252, 0.08);
  color: var(--data-muted);
  padding: 7px 9px;
  font-size: 0.75rem;
}

.viz-canvas {
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px;
  height: calc(100% - 36px);
  min-height: 420px;
  background:
    radial-gradient(circle at 60% 35%, rgba(192, 132, 252, 0.14), transparent 22%),
    linear-gradient(rgba(125, 211, 252, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.sandbox-placeholder {
  width: min(520px, 100%);
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  background: rgba(8, 12, 18, 0.7);
  padding: 28px;
  text-align: center;
}

.sandbox-placeholder p {
  margin: 0;
  color: var(--data-accent);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sandbox-placeholder h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: 1;
}

.sandbox-placeholder span {
  max-width: 380px;
  color: var(--data-muted);
  line-height: 1.6;
}

.sandbox-preview {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.sandbox-media-slot {
  min-height: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(8, 12, 18, 0.74);
  overflow: hidden;
}

.sandbox-media {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
}

.asset-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asset-chip {
  border: 1px solid var(--data-line);
  background: rgba(13, 17, 26, 0.88);
  color: var(--data-muted);
  font: inherit;
  font-size: 0.75rem;
  padding: 8px 10px;
}

.asset-chip:hover,
.asset-chip.active {
  border-color: rgba(125, 211, 252, 0.55);
  background: rgba(125, 211, 252, 0.12);
  color: var(--data-text);
}

.project-readme {
  border: 1px solid var(--data-line);
  background: rgba(13, 17, 26, 0.88);
  padding: 12px;
}

.project-readme p {
  margin: 0 0 8px;
  color: var(--data-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-readme h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.project-readme span {
  display: block;
  color: var(--data-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.project-readme a {
  display: inline-block;
  margin-top: 8px;
  color: var(--data-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.cv-shell {
  min-height: 100vh;
}

.cv-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
}

.cv-index,
.cv-document {
  border: 1px solid var(--data-line);
  background: rgba(17, 23, 34, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.cv-index {
  position: sticky;
  top: 18px;
  height: calc(100vh - 74px);
  align-self: start;
}

.cv-index nav {
  display: grid;
  padding: 10px;
}

.cv-index a {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(42, 52, 68, 0.7);
  color: var(--data-muted);
  font-size: 0.82rem;
}

.cv-index a:hover {
  background: rgba(125, 211, 252, 0.1);
  color: var(--data-text);
}

.cv-content {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.cv-hero,
.cv-section {
  border: 1px solid var(--data-line);
  background: rgba(8, 12, 18, 0.62);
  padding: 22px;
}

.cv-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
}

.cv-hero p:last-child {
  max-width: 880px;
  color: var(--data-muted);
  line-height: 1.7;
}

.cv-section h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.cv-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--data-line);
}

.cv-item strong {
  color: var(--data-accent);
  font-size: 0.84rem;
}

.cv-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cv-item p,
.cv-item li {
  color: var(--data-muted);
  line-height: 1.65;
}

.cv-item p {
  margin: 0;
}

.cv-item ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.cv-item a {
  display: inline-block;
  margin-top: 10px;
  color: var(--data-accent);
  font-size: 0.86rem;
  font-weight: 700;
}

.axis {
  position: absolute;
  background: var(--data-line);
}

.axis-x {
  left: 40px;
  right: 24px;
  bottom: 44px;
  height: 1px;
}

.axis-y {
  left: 40px;
  top: 24px;
  bottom: 44px;
  width: 1px;
}

.plot-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--data-accent);
  background: var(--data-bg);
}

.p1 { left: 18%; bottom: 24%; }
.p2 { left: 36%; bottom: 52%; }
.p3 { left: 58%; bottom: 42%; }
.p4 { left: 78%; bottom: 70%; }

@media (max-width: 760px) {
  .dashboard-app,
  .desktop-grid,
  .cv-grid,
  .dashboard-hero,
  .case-gallery,
  .resume-grid,
  .experience-item,
  .education-list,
  .cv-item {
    grid-template-columns: 1fr;
  }

  .desktop-grid,
  .desktop-grid.coastline-layout,
  .desktop-grid.sandbox-maximized,
  .desktop-grid.coastline-layout.sandbox-maximized {
    grid-template-areas:
      "navigator"
      "preview"
      "sandbox";
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .desktop-menu {
    top: 0;
  }

  .file-window,
  .preview-window,
  .visual-editor-window {
    position: static;
    height: auto;
  }

  .preview-content {
    height: auto;
    overflow: visible;
  }

  .product-sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cv-index {
    position: static;
    height: auto;
  }

  .product-main {
    grid-template-rows: auto;
  }

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

  .case-row-head {
    display: none;
  }

  .gateway-actions {
    grid-template-columns: 1fr;
  }
}
