:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --ink: #0d1321;
  --muted: #667085;
  --panel: #ffffff;
  --panel-soft: #f1f5f9;
  --line: #d8e0ea;
  --primary: #009dc2;
  --primary-2: #006c87;
  --harmony: #d9563c;
  --success: #168a3a;
  --warning: #ad7300;
  --danger: #b9463d;
  --violet: #7554d9;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius: 8px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090d14;
  --ink: #f7fafc;
  --muted: #a7b0bf;
  --panel: #101722;
  --panel-soft: #172233;
  --line: #263343;
  --primary: #21b6d2;
  --primary-2: #7cd4e6;
  --harmony: #f06f55;
  --success: #38b960;
  --warning: #d99918;
  --danger: #e06a60;
  --violet: #a78bfa;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 5% 0%, rgba(0, 157, 194, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 8%, rgba(217, 86, 60, 0.16), transparent 34rem),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 42%, #edf2f7 100%);
  color: var(--ink);
  font-family:
    "Noto Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at 5% 0%, rgba(33, 182, 210, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(240, 111, 85, 0.16), transparent 34rem),
    linear-gradient(180deg, #070b12 0%, var(--bg) 48%, #0d1420 100%);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 224, 234, 0.8);
  background: rgba(247, 249, 252, 0.82);
  backdrop-filter: blur(18px);
}

[data-theme="dark"] .site-header {
  background: rgba(9, 13, 20, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

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

.brand-mark {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand img {
  position: absolute;
  inset: 0;
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.brand-icon-dark,
[data-theme="dark"] .brand-icon-light {
  display: none;
}

[data-theme="dark"] .brand-icon-dark {
  display: block;
}

.brand span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #485467;
  font-size: 14px;
  font-weight: 600;
}

[data-theme="dark"] .nav-links {
  color: #c6cfdb;
}

.nav-links a {
  text-decoration: none;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.theme-toggle::before {
  content: none;
}

.theme-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-icon-moon,
[data-theme="dark"] .theme-icon-sun {
  display: none;
}

[data-theme="dark"] .theme-icon-moon {
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.button.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.button.dark {
  border-color: #101828;
  background: #101828;
  color: #fff;
}

[data-theme="dark"] .button.dark {
  border-color: #e2e8f0;
  background: #e2e8f0;
  color: #0f172a;
}

.hero-stage {
  position: relative;
  isolate: isolate;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  stroke: rgba(15, 23, 42, 0.08);
  mask-image: radial-gradient(100% 100% at top right, white, transparent);
}

[data-theme="dark"] .hero-grid-bg {
  stroke: rgba(255, 255, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 56px;
  padding: 78px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(0, 157, 194, 0.12);
}

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

h1,
h2 {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 20px;
  margin-top: 14px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-weight: 200;
}

.lead {
  max-width: 660px;
  color: #475467;
  font-size: 19px;
}

[data-theme="dark"] .lead {
  color: #b7c1cf;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 12px 7px 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

[data-theme="dark"] .release-pill {
  background: rgba(16, 23, 34, 0.82);
}

.release-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.release-pill span {
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary), white 88%);
  color: var(--primary-2);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.release-pill b {
  color: var(--ink);
}

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

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

.proof-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  padding: 13px;
}

.proof-item,
.feature-card,
.screen-card,
.workflow-step,
.faq-item,
.content-card,
.side-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.proof-item:hover,
.feature-card:hover,
.screen-card:hover,
.workflow-step:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary), var(--line) 55%);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .proof-item,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .screen-card,
[data-theme="dark"] .workflow-step,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .content-card,
[data-theme="dark"] .side-card,
[data-theme="dark"] .mock-card,
[data-theme="dark"] .side-panel,
[data-theme="dark"] .metric-panel,
[data-theme="dark"] .chart-panel,
[data-theme="dark"] .table-panel {
  background: rgba(16, 23, 34, 0.88);
}

.proof-item strong {
  display: block;
  font-size: 18px;
}

.proof-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.app-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.hero-shot {
  position: relative;
  transform: perspective(1800px) rotateY(-8deg) rotateX(3deg);
  transform-origin: center left;
}

.hero-shot-frame {
  overflow: hidden;
  background: var(--panel);
}

.hero-shot-frame img {
  width: min(860px, 62vw);
  height: 545px;
  object-fit: cover;
  object-position: top left;
}

.hero-shot-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(310px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 10px;
  background: rgba(16, 24, 40, 0.82);
  color: #fff;
  padding: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.hero-shot-card strong {
  display: block;
  margin-bottom: 5px;
}

.hero-shot-card span {
  color: #d9e3ee;
  font-size: 13px;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] .window-bar {
  background: rgba(16, 23, 34, 0.94);
}

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

.window-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d0d5dd;
}

.window-dots i:nth-child(1) {
  background: #ff5f57;
}

.window-dots i:nth-child(2) {
  background: #ffbd2e;
}

.window-dots i:nth-child(3) {
  background: #28c840;
}

.window-bar span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.studio-preview {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  min-height: 500px;
}

.studio-sidebar {
  border-right: 1px solid var(--line);
  background: #ffffff;
  padding: 18px;
}

.studio-sidebar h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.mini-input {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  margin: 12px 0;
}

.swatch {
  border-radius: 7px;
  background: var(--primary);
}

.input-line {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fafc;
}

.scale-list {
  display: grid;
  gap: 6px;
  margin: 18px 0 24px;
}

.scale-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  border-radius: 7px;
  padding: 0 12px;
  color: #082f3a;
  font-size: 12px;
  font-weight: 700;
}

.scale-list div:nth-child(1) {
  background: #dff7fb;
}

.scale-list div:nth-child(2) {
  background: #7cd4e6;
}

.scale-list div:nth-child(3) {
  background: #009dc2;
  color: #fff;
}

.scale-list div:nth-child(4) {
  background: #006a88;
  color: #fff;
}

.drop-zone {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px dashed #b8c4d3;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.studio-main {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.tab-row {
  display: flex;
  gap: 8px;
}

.tab-row span {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 8px 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tab-row span:first-child {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.mock-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 15px;
}

.mock-card h3 {
  margin-bottom: 6px;
  font-size: 14px;
}

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

.mock-bars {
  display: flex;
  align-items: end;
  height: 150px;
  gap: 9px;
  margin-top: 18px;
  border-bottom: 1px solid var(--line);
}

.mock-bars i {
  width: 100%;
  min-width: 14px;
  border-radius: 5px 5px 0 0;
  background: var(--primary);
}

.mock-bars i:nth-child(2n) {
  background: var(--harmony);
}

.mock-actions {
  display: grid;
  gap: 9px;
}

.mock-button {
  border-radius: 7px;
  padding: 11px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mock-button:nth-child(1) {
  background: var(--primary);
}

.mock-button:nth-child(2) {
  background: var(--success);
}

.mock-button:nth-child(3) {
  background: var(--warning);
}

.mock-button:nth-child(4) {
  background: var(--danger);
}

.section {
  padding: 70px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.feature-card strong {
  display: inline-flex;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--panel-soft);
  padding: 6px 10px;
  color: var(--primary-2);
  font-size: 12px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
}

.feature-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  border-radius: 20px;
  background: #101828;
  color: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
}

.feature-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 182, 210, 0.22), transparent 38%),
    linear-gradient(135deg, transparent 48%, rgba(217, 86, 60, 0.18));
  pointer-events: none;
}

.feature-showcase-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1.22fr);
  gap: 34px;
  align-items: center;
}

.feature-showcase h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
}

.feature-showcase p,
.feature-showcase dd {
  color: #cbd5e1;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-list div {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 0 46px;
}

.feature-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-list div::after {
  position: absolute;
  left: 8px;
  top: 21px;
  color: var(--primary-2);
  font-size: 14px;
  font-weight: 700;
}

.feature-list div:nth-child(1)::after {
  content: "✓";
}

.feature-list div:nth-child(2)::after {
  content: "{}";
  left: 6px;
  top: 24px;
  font-size: 11px;
}

.feature-list div:nth-child(3)::after {
  content: "•";
  left: 11px;
  top: 19px;
  font-size: 22px;
}

.feature-list dt {
  margin-bottom: 3px;
  color: #fff;
  font-weight: 700;
}

.showcase-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.showcase-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top left;
}

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

.screen-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.screen-button {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
  text-align: inherit;
}

.screen-art {
  min-height: 310px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 157, 194, 0.13), rgba(217, 86, 60, 0.1)),
    #f8fafc;
  padding: 18px;
}

.screen-art.product-shot {
  display: grid;
  place-items: center;
  padding: 10px;
}

.screen-art.product-shot img {
  width: 100%;
  height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: top left;
  transition: transform 220ms ease, filter 220ms ease;
}

.screen-card:hover .screen-art.product-shot img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.screen-caption {
  padding: 18px;
}

.screen-caption h3 {
  margin-bottom: 7px;
}

.screen-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.palette-demo {
  display: grid;
  gap: 8px;
}

.palette-demo div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  border-radius: 7px;
  padding: 0 13px;
  font-weight: 700;
}

.palette-demo div:nth-child(1) {
  background: #e2f6fb;
}

.palette-demo div:nth-child(2) {
  background: #9fe1ed;
}

.palette-demo div:nth-child(3) {
  background: #21b6d2;
}

.palette-demo div:nth-child(4) {
  background: #009dc2;
  color: #fff;
}

.palette-demo div:nth-child(5) {
  background: #006a88;
  color: #fff;
}

.wheel-demo {
  position: relative;
  width: min(275px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  background: conic-gradient(#ff405d, #ff9a00, #d7d900, #1fcf72, #00b8d9, #635bff, #d84dcc, #ff405d);
}

.wheel-demo::after {
  content: "";
  position: absolute;
  inset: 23%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.1) 36%, rgba(0,0,0,0.36));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.point {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.3);
}

.point.one {
  right: 16%;
  top: 24%;
}

.point.two {
  left: 18%;
  bottom: 18%;
  background: var(--harmony);
}

.point.three {
  left: 12%;
  top: 32%;
  background: var(--violet);
}

.diff-demo {
  display: grid;
  gap: 10px;
}

.diff-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 13px;
  font-size: 13px;
  font-weight: 600;
}

.diff-row span:last-child {
  color: var(--success);
}

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

.validation-card {
  min-height: 95px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 13px;
}

.validation-card b {
  display: block;
  margin-top: 14px;
  font-size: 24px;
}

.validation-card span {
  float: right;
  border-radius: 999px;
  background: #e6edf5;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
}

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

.workflow-step {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 18px;
}

.workflow-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #101828;
  color: #fff;
  font-weight: 700;
}

.workflow-step h3 {
  margin: 18px 0 8px;
}

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

.seo-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 24px 0;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.keyword-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 7px 11px;
  color: #344054;
  font-size: 13px;
  font-weight: 600;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta {
  padding: 78px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: 18px;
  background: #101828;
  color: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: #cbd5e1;
}

[data-theme="dark"] .cta-panel {
  background: #151f2e;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 13, 0.82);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 110px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.page-main {
  padding: 64px 0 86px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 28px;
}

.content-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 28px;
}

.content-card h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.content-card h2 {
  margin-top: 30px;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.side-card {
  position: sticky;
  top: 98px;
  align-self: start;
}

.side-card a {
  overflow-wrap: anywhere;
  color: var(--primary-2);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .page-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

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

  .studio-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-shot {
    transform: none;
  }

  .hero-shot-frame img {
    width: 100%;
    height: 420px;
  }

  .feature-showcase-inner {
    grid-template-columns: 1fr;
  }

  .screenshots,
  .feature-grid,
  .workflow,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-proof,
  .dashboard-mock,
  .screenshots,
  .feature-grid,
  .workflow,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

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

  .hero-shot-frame img,
  .showcase-image img {
    height: 300px;
  }

  .hero-shot-card {
    position: static;
    width: auto;
    border-radius: 0;
  }
}
