:root {
  --bg: #07111f;
  --bg-soft: #0b1628;
  --panel: rgba(12, 23, 39, 0.72);
  --panel-strong: rgba(15, 26, 44, 0.86);
  --panel-light: rgba(255, 255, 255, 0.08);
  --surface: #f4f7fb;
  --surface-soft: #ebf0f7;
  --text: #101826;
  --text-soft: #5d6a7f;
  --white: #f8fbff;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 24, 38, 0.08);
  --shadow: 0 24px 72px rgba(4, 10, 20, 0.22);
  --shadow-soft: 0 20px 44px rgba(9, 16, 29, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --auracolor: linear-gradient(135deg, #b4e3ff 0%, #90b9ff 28%, #b6a6ff 52%, #ffd59d 100%);
  --vanguard: linear-gradient(135deg, #86c3ff 0%, #3c6dff 48%, #7cc8bd 100%);
  --translate: linear-gradient(135deg, #8de0d4 0%, #69a8ff 48%, #c3d2ff 100%);
  --auradesk: linear-gradient(135deg, #89b7ff 0%, #6c88ff 34%, #9478ff 62%, #6ad2c4 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(180, 214, 255, 0.2), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(191, 238, 228, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(209, 221, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #eff4fa 0%, #e8eef5 100%);
}

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

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

.site-shell {
  width: min(calc(100% - 36px), var(--container));
  margin: 18px auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 255, 0.78)),
    rgba(248, 251, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  box-shadow:
    0 30px 80px rgba(56, 78, 114, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  backdrop-filter: blur(28px);
}

.site-nav,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav {
  position: sticky;
  top: 18px;
  z-index: 10;
  width: min(calc(100% - 64px), 1048px);
  margin: 20px auto 0;
  padding: 8px 6px;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav-brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-column a,
.footer-column span {
  font-size: 14px;
  color: var(--text-soft);
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(16, 24, 38, 0.05);
  color: var(--text);
}

.section {
  padding: 54px 28px;
}

.hero {
  padding-top: 8px;
  padding-bottom: 26px;
}

.hero-centered,
.featured-shell,
.pricing-shell,
.trust-shell {
  display: grid;
  gap: 24px;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-centered {
  --mx: 50%;
  --my: 34%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  justify-items: center;
  text-align: center;
  min-height: 560px;
  overflow: hidden;
  background: #07111f;
  border-radius: 38px;
  border: 1px solid rgba(225, 236, 252, 0.16);
  box-shadow:
    0 32px 72px rgba(13, 22, 39, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 108px 0 70px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media video {
  transform: scale(1.06) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transition: transform 320ms ease-out;
  will-change: transform;
}

.hero-centered::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0.08), rgba(6, 12, 24, 0.28) 44%, rgba(6, 12, 24, 0.58) 100%),
    linear-gradient(90deg, rgba(5, 10, 19, 0.38), rgba(5, 10, 19, 0.04) 42%, rgba(5, 10, 19, 0.22));
  opacity: 0.86;
  pointer-events: none;
}

.hero-centered::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px circle at var(--mx) var(--my), rgba(153, 198, 255, 0.12), transparent 42%),
    radial-gradient(420px circle at calc(var(--mx) + 4%) calc(var(--my) - 6%), rgba(86, 224, 201, 0.09), transparent 36%),
    radial-gradient(circle at 50% 74%, rgba(151, 185, 255, 0.06), transparent 34%);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a7890;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #78a6ff, #7ad8cb);
}

.hero-content h1,
.section-header h2,
.product-hero-copy h1 {
  margin: 16px 0 0;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-content h1 {
  max-width: 9ch;
  font-size: clamp(3.9rem, 7.8vw, 6.7rem);
  color: #fff;
  font-weight: 760;
  text-shadow: 0 14px 40px rgba(7, 13, 25, 0.2);
}

.hero-content h1 span {
  display: block;
}

.hero-content p,
.section-header p,
.product-positioning,
.trust-note,
.pricing-summary p,
.pricing-example p {
  color: var(--text-soft);
  line-height: 1.72;
}

.hero-content p {
  max-width: 32.5rem;
  margin: 22px auto 0;
  font-size: 17px;
  color: rgba(236, 242, 252, 0.74);
}

.hero-actions,
.featured-actions,
.product-actions,
.trust-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #1c2f4c, #396f95);
  box-shadow: 0 16px 30px rgba(26, 48, 77, 0.22);
}

.button--ghost {
  color: var(--text);
  background: rgba(16, 24, 38, 0.05);
  border-color: rgba(16, 24, 38, 0.08);
}

.hero-actions .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease, color 260ms ease;
}

.hero-actions .button--primary {
  background: rgba(31, 56, 88, 0.72);
  border-color: rgba(205, 223, 255, 0.12);
  box-shadow: 0 14px 28px rgba(10, 26, 48, 0.2);
}

.hero-actions .button--ghost {
  color: rgba(247, 251, 255, 0.96);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 239, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(5, 12, 24, 0.14);
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  transform: translateY(-2px);
}

.hero-actions .button--ghost:hover,
.hero-actions .button--ghost:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(232, 239, 255, 0.28);
  box-shadow: 0 14px 28px rgba(5, 12, 24, 0.18);
}

.hero-actions .button--primary:hover,
.hero-actions .button--primary:focus-visible {
  box-shadow: 0 18px 34px rgba(10, 26, 48, 0.24);
}

.button--text {
  color: var(--text-soft);
  background: transparent;
  border-color: transparent;
  padding-inline: 10px;
}

.is-static {
  cursor: default;
}

.hero-featured-product {
  width: min(100%, 1080px);
  padding: 26px;
  border-radius: calc(var(--radius-xl) + 4px);
}

[data-product-visual] {
  width: 100%;
}

.hero-feature-shell {
  display: grid;
  gap: 22px;
}

.hero-feature-top,
.hero-feature-bottom,
.hero-feature-heading,
.hero-feature-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-feature-kicker,
.hero-feature-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #73819a;
}

.hero-feature-stage {
  display: grid;
  gap: 18px;
}

.hero-feature-shot {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(193, 216, 255, 0.7), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 218, 170, 0.32), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-shot-toolbar {
  display: flex;
  gap: 8px;
}

.hero-shot-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(22, 33, 52, 0.18);
}

.hero-shot-body {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 348px;
}

.hero-shot-sidebar,
.hero-shot-canvas,
.product-card-placeholder,
.color-app-shot {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 44px rgba(103, 126, 170, 0.12);
}

.hero-shot-sidebar {
  padding: 18px;
  border-radius: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.hero-shot-chip,
.hero-export-cluster span,
.color-app-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-shot-chip {
  width: fit-content;
  color: #405170;
  background: rgba(145, 183, 255, 0.18);
}

.hero-shot-bar,
.placeholder-bar {
  display: block;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(138, 174, 238, 0.22), rgba(205, 222, 249, 0.58));
}

.hero-shot-bar--short,
.placeholder-bar--1 {
  width: 68%;
}

.hero-shot-bar--soft,
.placeholder-bar--2 {
  background: linear-gradient(90deg, rgba(255, 212, 169, 0.22), rgba(233, 241, 252, 0.7));
}

.hero-shot-canvas {
  padding: 22px;
  border-radius: 24px;
  display: grid;
  gap: 18px;
  align-content: space-between;
}

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

.hero-shot-swatch,
.swatch {
  border-radius: 24px;
}

.hero-shot-swatch {
  height: 216px;
  box-shadow: 0 18px 36px rgba(111, 131, 168, 0.14);
}

.hero-shot-swatch--1,
.swatch--1 {
  background: linear-gradient(180deg, #edf7ff, #99c6ff);
}

.hero-shot-swatch--2,
.swatch--2 {
  background: linear-gradient(180deg, #f9f5ff, #baa5ff);
}

.hero-shot-swatch--3,
.swatch--3 {
  background: linear-gradient(180deg, #fff7f0, #ffcd94);
}

.hero-shot-swatch--4,
.swatch--4 {
  background: linear-gradient(180deg, #f2fff8, #8adfc0);
}

.hero-shot-export-card,
.mini-panel {
  padding: 18px;
  border-radius: 22px;
  background: rgba(244, 248, 255, 0.9);
  border: 1px solid rgba(216, 227, 243, 0.74);
}

.hero-shot-export-card small,
.mini-panel small,
.roadmap-card small {
  display: block;
  line-height: 1.6;
}

.hero-shot-export-card small {
  color: #6f7c93;
}

.hero-shot-export-card strong,
.mini-panel strong {
  display: block;
  margin-top: 6px;
  line-height: 1.45;
  color: #172338;
}

.hero-export-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-export-cluster span,
.color-app-pill {
  color: #44526a;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 226, 242, 0.82);
}

.hero-feature-bottom h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  letter-spacing: -0.03em;
}

.hero-feature-bottom p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 52ch;
}

.hero-product-card,
.product-card,
.tool-card,
.principle-card,
.roadmap-card,
.detail-card,
.pricing-example,
.pricing-summary,
.trust-card {
  border-radius: var(--radius-lg);
}

.hero-product-card {
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-product-top,
.product-card-meta,
.tool-card-top,
.roadmap-top,
.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-product-card h3,
.product-card h3,
.tool-card h3,
.principle-card h3,
.featured-copy h3,
.pricing-example h3,
.roadmap-card h3,
.detail-card h2 {
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-product-card h3 {
  font-size: 20px;
}

.hero-product-index {
  color: rgba(233, 241, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-product-card p {
  margin: 10px 0 0;
  color: rgba(238, 244, 252, 0.78);
  line-height: 1.6;
  font-size: 14px;
}

.hero-product-badge,
.product-category {
  font-size: 12px;
  color: rgba(240, 245, 255, 0.78);
}

.hero-product-badge {
  margin-top: 14px;
  color: rgba(240, 245, 255, 0.62);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: clamp(2.3rem, 4.3vw, 3.4rem);
  font-weight: 740;
}

.section-header p {
  max-width: 36rem;
  color: #70809a;
}

.section-panel {
  padding: 14px;
  border-radius: 28px;
}

.section-panel--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.products-grid,
.tools-grid,
.principles-grid,
.roadmap-grid,
.product-detail-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.product-card,
.tool-card,
.principle-card,
.roadmap-card,
.detail-card,
.pricing-example,
.pricing-summary,
.trust-card,
.product-hero-panel,
.product-hero-copy {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 252, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card-media {
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(217, 227, 242, 0.9);
  background: linear-gradient(180deg, #f7faff 0%, #edf3fb 100%);
  min-height: 210px;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.product-card-media--placeholder {
  padding: 16px;
}

.product-card-placeholder {
  min-height: 178px;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.placeholder-chip {
  width: 96px;
  height: 32px;
  border-radius: 999px;
  background: rgba(149, 183, 255, 0.18);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--auradesk);
  opacity: 0.9;
}

.product-card--auracolor::before {
  background: var(--auracolor);
}

.product-card--vanguard::before {
  background: var(--vanguard);
}

.product-card--translate::before {
  background: var(--translate);
}

.product-card--auradesk::before {
  background: var(--auradesk);
}

.product-card p,
.tool-card p,
.principle-card p,
.roadmap-card p,
.detail-card p,
.detail-card dd,
.snapshot-list dd,
.feature-list li,
.footer-column p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.product-card-badge,
.tool-card-label {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a879b;
}

.product-card-actions,
.tool-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-card-detail {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247, 250, 255, 0.78);
  border: 1px solid rgba(220, 230, 244, 0.84);
}

.product-card-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f7d95;
}

.product-card-detail ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  line-height: 1.6;
}

.product-card-detail--pro {
  background: rgba(241, 245, 255, 0.76);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(16, 24, 38, 0.05);
  color: #5f6c84;
  border: 1px solid rgba(192, 204, 224, 0.34);
}

.status-pill--live {
  background: rgba(126, 201, 171, 0.16);
  color: #3d7d69;
  border-color: rgba(126, 201, 171, 0.22);
}

.status-pill--beta {
  background: rgba(130, 145, 255, 0.14);
  color: #566bc0;
  border-color: rgba(130, 145, 255, 0.2);
}

.status-pill--in-review {
  background: rgba(162, 138, 255, 0.14);
  color: #7762c4;
  border-color: rgba(162, 138, 255, 0.2);
}

.status-pill--planned {
  background: rgba(224, 211, 192, 0.26);
  color: #92785a;
  border-color: rgba(209, 190, 165, 0.3);
}

.status-pill--meta {
  background: rgba(233, 237, 244, 0.7);
  color: #7a879d;
  border-color: rgba(199, 208, 222, 0.3);
}

.featured-shell,
.pricing-shell,
.trust-shell {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.featured-copy,
.featured-visual {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.featured-copy {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.featured-visual {
  background:
    radial-gradient(circle at top right, rgba(183, 209, 255, 0.4), transparent 36%),
    linear-gradient(160deg, #0d1b33, #12274a 54%, #15213b 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

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

.swatch {
  height: 160px;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(10, 18, 32, 0.24);
}

.swatch--1 {
  background: linear-gradient(180deg, #f0f7ff, #91bcff);
}

.swatch--2 {
  background: linear-gradient(180deg, #f8f6ff, #b29bff);
}

.swatch--3 {
  background: linear-gradient(180deg, #fff8f0, #ffc78b);
}

.swatch--4 {
  background: linear-gradient(180deg, #f1fff9, #8ce0c1);
}

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

.color-app-shot {
  min-height: 320px;
  padding: 18px;
  border-radius: 26px;
  display: grid;
  gap: 18px;
}

.color-app-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-app-body {
  display: grid;
  gap: 18px;
}

.mini-panel small,
.product-panel-card small {
  color: #6f7c93;
}

.pricing-example,
.pricing-summary,
.trust-card,
.product-hero-copy,
.product-hero-panel {
  border-radius: var(--radius-xl);
}

.trust-shell {
  align-items: start;
}

.trust-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.roadmap-card {
  min-height: 184px;
}

.site-footer {
  padding: 32px 28px 40px;
  align-items: start;
  gap: 20px;
  border-top: 1px solid rgba(16, 24, 38, 0.06);
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  height: 34px;
  width: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 18px;
  flex: 1;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-column li {
  line-height: 1.5;
}

.footer-meta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-soft);
}

.product-page-shell {
  padding: 24px 28px 44px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 18px;
}

.product-hero-copy,
.product-hero-panel {
  min-height: 340px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

.back-link::before {
  content: "←";
}

.product-positioning {
  margin-top: 16px;
  max-width: 60ch;
}

.product-panel-card {
  height: 100%;
  padding: 24px;
  border-radius: 26px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(160deg, #102038, #0d162b);
}

.product-detail-grid {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.snapshot-list {
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.snapshot-list dt {
  font-size: 13px;
  font-weight: 700;
  color: #6b7689;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.snapshot-list dd {
  margin: 6px 0 0;
}

@media (max-width: 980px) {
  .featured-shell,
  .pricing-shell,
  .trust-shell,
  .product-hero,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .tools-grid,
  .principles-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature-shot {
    min-height: 360px;
  }

  .hero-shot-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 16px), var(--container));
    margin: 8px auto;
    border-radius: 24px;
  }

  .site-nav {
    width: calc(100% - 20px);
    margin: 12px auto 0;
    padding: 14px 16px;
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section,
  .site-footer,
  .product-page-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-featured-product,
  .featured-copy,
  .featured-visual,
  .pricing-example,
  .pricing-summary,
  .trust-card,
  .product-hero-copy,
  .product-hero-panel {
    padding: 20px;
  }

  .hero-content h1,
  .section-header h2,
  .product-hero-copy h1 {
    letter-spacing: -0.03em;
  }

  .hero-content {
    padding: 88px 0 52px;
  }

  .hero-centered {
    min-height: 520px;
    border-radius: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    justify-items: center;
  }

  .hero-feature-bottom,
  .hero-feature-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-feature-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-feature-links .button {
    width: min(100%, 240px);
  }

  .hero-shot-swatches,
  .swatch-stack,
  .mini-panels,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-feature-shot {
    min-height: auto;
  }

  .hero-shot-swatch {
    height: 132px;
  }

  .hero-export-cluster {
    justify-content: flex-start;
  }

  .footer-columns {
    width: 100%;
  }
}

/* Homepage refinement */

.section--compact {
  padding-top: 22px;
}

.section-header--showcase {
  max-width: 760px;
}

.studio-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 24, 38, 0.08);
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #6b7790;
}

.product-showcase {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(168, 201, 255, 0.2), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(210, 194, 255, 0.16), transparent 26%),
    radial-gradient(circle at 54% 86%, rgba(175, 236, 225, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 250, 255, 0.68));
  border: 1px solid rgba(225, 234, 248, 0.84);
  box-shadow:
    0 28px 72px rgba(92, 116, 156, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 48%);
  pointer-events: none;
}

.product-showcase::after {
  content: "";
  position: absolute;
  inset: auto 8% 10% 8%;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(170, 192, 236, 0.14), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.product-slider-shell {
  display: grid;
  gap: 16px;
}

.product-slider-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.product-slider-controls {
  display: flex;
  gap: 10px;
}

.slider-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(171, 188, 218, 0.28);
  background: rgba(255, 255, 255, 0.64);
  color: #50617c;
  box-shadow: 0 10px 22px rgba(116, 139, 178, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, color 260ms ease, background 260ms ease;
}

.slider-control:hover,
.slider-control:focus-visible {
  transform: translateY(-2px);
  color: #30425d;
  border-color: rgba(145, 166, 209, 0.36);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(116, 139, 178, 0.11);
}

.product-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding: 16px 8px 24px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 12px;
  scrollbar-width: thin;
}

.product-slider-card {
  --card-glow: rgba(138, 161, 214, 0.14);
  --glow-x: 50%;
  --glow-y: 0%;
  position: relative;
  display: grid;
  grid-template-rows: 58px minmax(122px, auto) 60px;
  align-content: start;
  gap: 14px;
  padding: 20px;
  text-align: left;
  border-radius: 30px;
  border: 1px solid rgba(180, 200, 230, 0.32);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(80, 110, 160, 0.1);
  opacity: 0.8;
  transform: translateY(0) scale(0.985);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease, opacity 260ms ease, filter 260ms ease;
  scroll-snap-align: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
}

.product-slider-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), var(--card-glow), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 56%);
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 260ms ease, background 260ms ease;
}

.product-slider-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.product-slider-card:hover,
.product-slider-card:focus-visible {
  opacity: 0.95;
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(156, 176, 221, 0.42);
  box-shadow: 0 24px 60px rgba(90, 120, 255, 0.13);
  background: rgba(255, 255, 255, 0.78);
}

.product-slider-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(0.985);
  border-color: rgba(122, 139, 255, 0.34);
  box-shadow:
    0 18px 46px rgba(90, 120, 255, 0.1),
    0 0 0 1px rgba(120, 140, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 252, 255, 0.76));
}

.product-showcase.is-interacted .product-slider-card.is-active {
  transform: translateY(-4px) scale(1.025);
  box-shadow:
    0 22px 58px rgba(90, 120, 255, 0.14),
    0 0 0 1px rgba(120, 140, 255, 0.14);
}

.product-slider-card.is-active:hover,
.product-slider-card.is-active:focus-visible {
  transform: translateY(-6px) scale(1.018);
  box-shadow:
    0 24px 62px rgba(90, 120, 255, 0.15),
    0 0 0 1px rgba(120, 140, 255, 0.18);
}

.product-showcase.is-interacted .product-slider-card.is-active:hover,
.product-showcase.is-interacted .product-slider-card.is-active:focus-visible {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 26px 66px rgba(90, 120, 255, 0.16),
    0 0 0 1px rgba(120, 140, 255, 0.18);
}

.product-slider-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 24px rgba(100, 120, 160, 0.12);
}

.product-slider-card__icon img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  transform-origin: center;
}

.product-slider-card__icon--auracolor img {
  transform: scale(1.03);
}

.product-slider-card__icon--translate img {
  transform: scale(1.08);
}

.product-slider-card__icon--auracolor {
  background: linear-gradient(135deg, rgba(96, 157, 255, 0.86), rgba(117, 102, 255, 0.86));
}

.product-slider-card__icon--vanguard {
  background: linear-gradient(135deg, rgba(36, 73, 111, 0.86), rgba(77, 144, 187, 0.86));
}

.product-slider-card__icon--translate {
  background: linear-gradient(135deg, rgba(74, 124, 255, 0.9), rgba(47, 201, 163, 0.88));
}

.product-slider-card__icon--auradesk {
  background: linear-gradient(135deg, rgba(62, 98, 121, 0.82), rgba(122, 145, 181, 0.82));
}

.product-slider-card--auracolor {
  --card-glow: rgba(123, 126, 255, 0.16);
}

.product-slider-card--vanguard {
  --card-glow: rgba(88, 176, 212, 0.14);
}

.product-slider-card--translate {
  --card-glow: rgba(255, 140, 140, 0.12);
}

.product-slider-card--auradesk {
  --card-glow: rgba(150, 175, 214, 0.14);
}

.product-slider-card__copy strong {
  display: block;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: #142034;
}

.product-slider-card__copy {
  display: grid;
  align-content: start;
}

.product-slider-card__copy p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.62;
  color: var(--text-soft);
}

.product-slider-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
}

.product-showcase-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.product-showcase-detail__copy,
.product-showcase-detail__media {
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 255, 0.74));
  border: 1px solid rgba(184, 201, 229, 0.34);
  box-shadow: 0 24px 56px rgba(91, 114, 155, 0.07);
  backdrop-filter: blur(18px);
}

.product-showcase-detail__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.product-showcase-detail__copy h3 {
  margin: 14px 0 0;
  font-size: clamp(2.35rem, 4.2vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 760;
}

.product-showcase-detail__summary,
.product-showcase-detail__intro p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.74;
}

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

.product-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-showcase-visual {
  height: 100%;
}

.product-showcase-visual--image {
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(198, 214, 238, 0.9);
  background: linear-gradient(180deg, rgba(245, 248, 253, 0.96), rgba(235, 242, 250, 0.92));
  min-height: 388px;
  padding: 12px;
}

.product-showcase-visual--image img {
  width: 100%;
  height: 100%;
  min-height: 348px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  background: transparent;
}

.product-showcase-visual--vanguard img {
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.product-showcase-visual--rightlive-translate img {
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.product-showcase-visual--preview .auracolor-preview__window {
  min-height: 388px;
}

.showcase-visual-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.showcase-visual-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(248, 251, 255, 0.96);
  background: rgba(14, 24, 41, 0.48);
  border: 1px solid rgba(238, 244, 255, 0.16);
  backdrop-filter: blur(12px);
}

.product-showcase-visual--auracolor .auracolor-preview__window {
  background:
    radial-gradient(circle at top left, rgba(195, 214, 255, 0.7), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 220, 184, 0.38), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
  border-radius: 28px;
  border: 1px solid rgba(214, 226, 244, 0.76);
  box-shadow: 0 24px 54px rgba(112, 132, 171, 0.08);
}

.lab-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(210, 221, 238, 0.72);
}

.lab-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(210, 221, 238, 0.72);
}

.lab-row__index {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(127, 143, 171, 0.46);
}

.lab-row__copy h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lab-row__copy p {
  margin: 10px 0 0;
  max-width: 34rem;
  color: var(--text-soft);
  line-height: 1.64;
}

.privacy-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.privacy-strip p {
  margin: 0;
  color: #6b7a92;
  line-height: 1.68;
}

.privacy-strip-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing-page-hero {
  padding-top: 32px;
  padding-bottom: 10px;
}

.pricing-page-hero .section-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pricing-page-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(3.3rem, 6.5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #112038;
}

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

.pricing-feature {
  display: grid;
  gap: 20px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.pricing-feature .section-header {
  max-width: 980px;
}

.pricing-feature .section-header h2 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.pricing-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(204, 217, 238, 0.74);
  box-shadow: 0 24px 58px rgba(91, 114, 155, 0.1);
}

.pricing-tier {
  padding: 28px 32px;
}

.pricing-tier--free {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 252, 255, 0.9));
}

.pricing-tier--pro {
  background: linear-gradient(180deg, #121c31 0%, #1a2642 100%);
  color: #f5f8ff;
}

.pricing-tier__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64738d;
}

.pricing-tier--pro .pricing-tier__kicker {
  color: rgba(229, 239, 255, 0.86);
}

.pricing-tier h3 {
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.pricing-tier__price {
  margin-top: 10px;
  font-size: clamp(2.3rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.pricing-tier__tagline {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.48;
}

.pricing-tier__copy {
  margin: 8px 0 0;
  color: rgba(232, 239, 252, 0.82);
  line-height: 1.6;
  font-size: 15px;
}

.pricing-tier--free .pricing-tier__copy,
.pricing-tier--free .pricing-tier__tagline {
  color: #132038;
}

.pricing-tier__list {
  margin: 18px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
  line-height: 1.56;
  color: #55647d;
  font-size: 15px;
}

.pricing-tier--pro .pricing-tier__list {
  color: rgba(238, 244, 255, 0.88);
}

.pricing-tier__actions {
  margin-top: 22px;
}

.pricing-tier__actions--stacked {
  display: grid;
  gap: 10px;
  align-content: start;
}

.pricing-tier__button {
  width: 100%;
  min-height: 52px;
  font-size: 14px;
}

.pricing-tier--free .pricing-tier__button {
  background: #fff;
  border-color: rgba(16, 24, 38, 0.08);
}

.pricing-tier--pro .pricing-tier__button {
  color: #0f1b30;
  background: linear-gradient(90deg, #dbe7ff 0%, #d2f6e7 100%);
  border-color: transparent;
}

.pricing-tier__note {
  margin: 0;
  color: rgba(232, 239, 252, 0.74);
  line-height: 1.56;
  font-size: 14px;
}

.pricing-tier__inline-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.pricing-tier__activate {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  font-weight: 600;
  color: #eef5ff;
  background: rgba(223, 235, 255, 0.12);
  border-color: rgba(220, 233, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-tier__activate:hover,
.pricing-tier__activate:focus-visible {
  color: #fff;
  background: rgba(223, 235, 255, 0.18);
  border-color: rgba(220, 233, 255, 0.28);
}

.pricing-tier__privacy {
  justify-content: flex-start;
  min-height: auto;
  padding-inline: 0;
  color: rgba(232, 239, 252, 0.78);
}

.pricing-tier__privacy:hover,
.pricing-tier__privacy:focus-visible {
  color: #fff;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 255, 0.76));
  border: 1px solid rgba(184, 201, 229, 0.34);
  box-shadow: 0 22px 54px rgba(91, 114, 155, 0.08);
  backdrop-filter: blur(18px);
  scroll-margin-top: 110px;
}

.pricing-card--wide {
  grid-column: 1 / -1;
}

.pricing-card--featured {
  background:
    radial-gradient(circle at top right, rgba(173, 214, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 255, 0.78));
  border-color: rgba(152, 182, 231, 0.42);
  box-shadow: 0 26px 62px rgba(87, 118, 178, 0.12);
}

.pricing-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
}

.pricing-card__header {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.pricing-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.pricing-card__title-block {
  display: grid;
  align-content: start;
  min-height: 154px;
}

.pricing-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.pricing-card__description {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
  max-width: 52rem;
  min-height: 108px;
}

.pricing-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64738d;
  background: rgba(242, 246, 252, 0.94);
  border: 1px solid rgba(210, 221, 240, 0.82);
}

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

.pricing-mini-block {
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(214, 225, 242, 0.78);
}

.pricing-mini-block--soft {
  background: rgba(244, 248, 255, 0.78);
}

.pricing-mini-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6780;
}

.pricing-card .feature-list {
  gap: 8px;
}

.pricing-card .feature-list li {
  margin-top: 0;
  line-height: 1.56;
}

.pricing-card__actions,
.license-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-card__actions {
  margin-top: auto;
  align-self: end;
}

.license-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 250, 255, 0.72));
  border: 1px solid rgba(184, 201, 229, 0.34);
  box-shadow: 0 22px 54px rgba(91, 114, 155, 0.08);
}

.license-strip__copy {
  max-width: 720px;
}

.license-strip__copy h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.license-strip__copy p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
}

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

.faq-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 201, 229, 0.28);
  box-shadow: 0 14px 32px rgba(106, 128, 165, 0.08);
}

.faq-item h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.34;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.66;
}

.pro-access-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 251, 255, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.pro-access-copy {
  max-width: 860px;
}

.pro-access-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pro-access-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.pro-access-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.auracolor-preview {
  display: grid;
  gap: 18px;
}

.auracolor-preview__window {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(190, 216, 255, 0.72), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 218, 174, 0.34), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.auracolor-preview__toolbar {
  display: flex;
  gap: 8px;
}

.auracolor-preview__toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(22, 33, 52, 0.18);
}

.auracolor-preview__body {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(200px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
}

.auracolor-preview__sidebar,
.auracolor-preview__workspace,
.auracolor-preview__export-card,
.auracolor-format-card,
.workflow-step,
.free-card,
.pro-card,
.privacy-card,
.auracolor-support-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 44px rgba(103, 126, 170, 0.1);
}

.auracolor-preview__sidebar {
  padding: 18px;
  border-radius: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.auracolor-preview__panel-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #46556e;
}

.auracolor-preview__mini-palette {
  display: flex;
  gap: 10px;
}

.auracolor-preview__mini-swatch,
.auracolor-preview__swatch,
.format-card-swatch {
  display: block;
  border-radius: 18px;
}

.auracolor-preview__mini-swatch {
  width: 38px;
  height: 38px;
}

.auracolor-preview__mini-swatch--1,
.auracolor-preview__swatch--1,
.format-card-swatch--1 {
  background: linear-gradient(180deg, #edf7ff, #99c6ff);
}

.auracolor-preview__mini-swatch--2,
.auracolor-preview__swatch--2,
.format-card-swatch--2 {
  background: linear-gradient(180deg, #f9f5ff, #baa5ff);
}

.auracolor-preview__mini-swatch--3,
.auracolor-preview__swatch--3,
.format-card-swatch--3 {
  background: linear-gradient(180deg, #fff7f0, #ffcd94);
}

.auracolor-preview__swatch--4,
.format-card-swatch--4 {
  background: linear-gradient(180deg, #f2fff8, #8adfc0);
}

.auracolor-preview__line {
  display: block;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(138, 174, 238, 0.22), rgba(205, 222, 249, 0.58));
}

.auracolor-preview__line--short {
  width: 68%;
}

.auracolor-preview__line--soft {
  background: linear-gradient(90deg, rgba(255, 212, 169, 0.22), rgba(233, 241, 252, 0.7));
}

.auracolor-preview__workspace {
  padding: 22px;
  border-radius: 24px;
  display: grid;
  gap: 18px;
  align-content: space-between;
}

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

.auracolor-preview__swatch {
  height: 220px;
  box-shadow: 0 18px 36px rgba(111, 131, 168, 0.14);
}

.auracolor-preview__export {
  padding: 18px;
  border-radius: 22px;
  background: rgba(244, 248, 255, 0.92);
  border: 1px solid rgba(216, 227, 243, 0.74);
}

.auracolor-preview__export small {
  display: block;
  color: #6f7c93;
  line-height: 1.6;
}

.auracolor-preview__export strong {
  display: block;
  margin-top: 6px;
  color: #172338;
  line-height: 1.45;
}

.auracolor-format-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.auracolor-format-tags span,
.format-file-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #44526a;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 226, 242, 0.82);
}

/* AuraColor product page */

.auracolor-page {
  padding: 34px 28px 48px;
}

.auracolor-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.auracolor-nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auracolor-page .section-header {
  max-width: 760px;
}

.auracolor-hero {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

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

.auracolor-hero-copy h1 {
  margin: 14px 0 0;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.auracolor-hero-copy p {
  margin: 20px auto 0;
  max-width: 48rem;
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-soft);
}

.auracolor-hero-actions,
.auracolor-privacy-actions,
.auracolor-pro-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.auracolor-hero-stage {
  width: min(100%, 1080px);
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 252, 255, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.auracolor-hero-stage .auracolor-preview__window {
  min-height: 500px;
}

.auracolor-grid-4,
.auracolor-format-grid,
.auracolor-workflow,
.auracolor-split {
  display: grid;
  gap: 18px;
}

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

.auracolor-format-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

.feature-card,
.auracolor-format-card,
.workflow-step,
.free-card,
.pro-card,
.privacy-card {
  padding: 22px;
  border-radius: 24px;
}

.feature-card h3,
.auracolor-format-card h3,
.workflow-step h3,
.free-card h3,
.pro-card h3,
.privacy-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.feature-card p,
.auracolor-format-card p,
.workflow-step p,
.free-card p,
.pro-card p,
.privacy-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.auracolor-format-card {
  display: grid;
  gap: 18px;
}

.format-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.format-card-swatch {
  width: 58px;
  height: 58px;
}

.workflow-step small,
.free-card small,
.pro-card small,
.privacy-card small {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e7b93;
}

.free-list,
.pro-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  line-height: 1.68;
}

.auracolor-page-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 24, 38, 0.08);
}

.auracolor-page-footer p {
  margin: 0;
  font-size: 13px;
  color: #6e7b93;
}

@media (max-width: 1080px) {
  .pricing-feature-grid,
  .product-showcase-detail,
  .faq-list,
  .auracolor-grid-4,
  .auracolor-format-grid,
  .auracolor-workflow,
  .auracolor-split {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid,
  .pricing-card__split {
    grid-template-columns: 1fr;
  }

  .pricing-card--wide {
    grid-column: auto;
  }

  .lab-row {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .lab-row .status-pill {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .auracolor-preview__body,
  .product-showcase-detail,
  .auracolor-grid-4,
  .auracolor-format-grid,
  .auracolor-workflow,
  .auracolor-split,
  .product-showcase-detail__lists,
  .pricing-grid,
  .pricing-card__split,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .privacy-strip,
  .auracolor-nav,
  .license-strip,
  .pricing-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card__top {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pricing-card__title-block,
  .pricing-card__description {
    min-height: auto;
  }

  .auracolor-nav-links,
  .privacy-strip-actions,
  .product-showcase-actions,
  .pricing-card__actions,
  .license-strip__actions {
    width: 100%;
  }

  .auracolor-hero-actions,
  .auracolor-privacy-actions,
  .auracolor-pro-actions,
  .product-showcase-actions,
  .pricing-card__actions,
  .license-strip__actions {
    display: grid;
    width: 100%;
  }

  .auracolor-hero-actions .button,
  .auracolor-privacy-actions .button,
  .auracolor-pro-actions .button,
  .product-showcase-actions .button,
  .product-showcase-actions .is-static,
  .pricing-card__actions .button,
  .pricing-card__actions .is-static,
  .license-strip__actions .button {
    width: 100%;
  }

  .product-showcase {
    padding: 20px;
  }

  .product-slider {
    grid-auto-columns: minmax(240px, 88%);
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .lab-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .pricing-tier {
    padding: 24px;
  }

  .pricing-tier__inline-links {
    display: grid;
  }

  .pricing-tier__inline-links .button {
    width: 100%;
  }

  .auracolor-hero-stage .auracolor-preview__window,
  .auracolor-preview__window {
    min-height: auto;
  }

  .auracolor-preview__swatches {
    grid-template-columns: 1fr;
  }

  .auracolor-preview__swatch {
    height: 140px;
  }
}
