:root {
  --coral: #ff8f7a;
  --coral-dark: #ed6f60;
  --coral-soft: #fff0eb;
  --lavender: #a78bfa;
  --lavender-dark: #8065e8;
  --lavender-soft: #f1edff;
  --seafoam: #63c7c0;
  --seafoam-dark: #3fa9a2;
  --seafoam-soft: #e8f8f6;
  --slate: #2f3440;
  --ink: #17191e;
  --ink-soft: #3d424d;
  --muted: #68707c;
  --muted-light: #9299a4;
  --page: #fbfaf7;
  --surface: #ffffff;
  --surface-subtle: #f4f3f0;
  --line: #e6e2dc;
  --line-strong: #d8d2ca;
  --shadow-soft: 0 12px 35px rgba(47, 52, 64, 0.08);
  --shadow-card: 0 18px 60px rgba(47, 52, 64, 0.1);
  --shadow-window: 0 38px 110px rgba(34, 39, 50, 0.19), 0 8px 28px rgba(34, 39, 50, 0.11);
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 32px;
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 143, 122, 0.05), transparent 32rem),
    radial-gradient(circle at 90% 5%, rgba(99, 199, 192, 0.05), transparent 36rem),
    var(--page);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: rgba(167, 139, 250, 0.25);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, summary):focus-visible {
  outline: 3px solid rgba(128, 101, 232, 0.38);
  outline-offset: 3px;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-label {
  margin: 0 0 16px;
  color: var(--lavender-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.68);
}

.section-copy h2,
.section-heading-centered h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5.1vw, 64px);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.section-copy > p:not(.section-label),
.section-heading-centered > p:not(.section-label) {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.section-heading-centered {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading-centered > p:not(.section-label) {
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.72);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(216, 210, 202, 0.75);
  background: rgba(251, 250, 247, 0.9);
  box-shadow: 0 8px 30px rgba(47, 52, 64, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  width: min(var(--max-width), calc(100% - 40px));
  height: var(--header-height);
  margin-inline: auto;
  gap: 32px;
}

.brand-link {
  width: 132px;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 580;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--lavender), var(--seafoam));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 690;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 12px;
  font-size: 13px;
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 22px rgba(23, 25, 30, 0.14);
}

.button-dark:hover {
  background: #292d36;
  box-shadow: 0 12px 30px rgba(23, 25, 30, 0.18);
}

.button-primary {
  position: relative;
  color: white;
  background:
    linear-gradient(var(--slate), var(--slate)) padding-box,
    linear-gradient(120deg, var(--coral), var(--lavender), var(--seafoam)) border-box;
  box-shadow: 0 14px 34px rgba(47, 52, 64, 0.2);
}

.button-primary::before {
  position: absolute;
  z-index: -1;
  inset: 7px 18px -12px;
  border-radius: 99px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 143, 122, 0.4), rgba(167, 139, 250, 0.45), rgba(99, 199, 192, 0.4));
  filter: blur(18px);
  opacity: 0.68;
  transition: opacity 180ms ease;
}

.button-primary:hover::before {
  opacity: 1;
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 16px rgba(47, 52, 64, 0.045);
}

.button-quiet:hover {
  border-color: var(--line-strong);
  background: white;
  box-shadow: var(--shadow-soft);
}

.button-light {
  color: var(--ink);
  background: white;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.23);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.button-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 152px 0 92px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -4;
  top: 90px;
  left: 50%;
  width: 1050px;
  height: 1050px;
  border: 1px solid rgba(47, 52, 64, 0.04);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  z-index: -3;
  top: 240px;
  left: 50%;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(47, 52, 64, 0.04);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.hero-aura {
  position: absolute;
  z-index: -5;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.19;
  pointer-events: none;
}

.hero-aura-coral {
  top: 130px;
  left: -260px;
  background: var(--coral);
}

.hero-aura-lavender {
  top: -260px;
  left: 50%;
  background: var(--lavender);
  transform: translateX(-50%);
  opacity: 0.12;
}

.hero-aura-seafoam {
  top: 260px;
  right: -260px;
  background: var(--seafoam);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 7px 13px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 20px rgba(47, 52, 64, 0.045);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.eyebrow-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 9px;
  background: white;
  box-shadow: 0 2px 8px rgba(47, 52, 64, 0.08);
}

.eyebrow-mark img {
  width: 19px;
  height: 19px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(55px, 7.4vw, 92px);
  font-weight: 710;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  padding-bottom: 0.08em;
  color: transparent;
  background: linear-gradient(104deg, var(--coral-dark) 0%, var(--lavender-dark) 49%, var(--seafoam-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 580;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-product {
  position: relative;
  z-index: 2;
  margin-top: 76px;
  perspective: 1600px;
}

.hero-product-glow {
  position: absolute;
  z-index: -2;
  top: 22%;
  left: 50%;
  width: 78%;
  height: 58%;
  border-radius: 50%;
  background: linear-gradient(95deg, rgba(255, 143, 122, 0.22), rgba(167, 139, 250, 0.25), rgba(99, 199, 192, 0.22));
  filter: blur(70px);
  transform: translateX(-50%);
}

.mac-window {
  overflow: hidden;
  border: 1px solid rgba(194, 198, 205, 0.88);
  border-radius: 24px;
  background: #f5f6f8;
  box-shadow: var(--shadow-window);
}

.hero-window {
  width: 100%;
  min-height: 676px;
  transform: rotateX(1.5deg) rotateY(-0.7deg);
  transform-origin: center bottom;
}

.window-titlebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #e1e4e8;
  background: rgba(249, 250, 252, 0.96);
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.traffic-lights span:nth-child(1) { background: #ff5f57; }
.traffic-lights span:nth-child(2) { background: #febc2e; }
.traffic-lights span:nth-child(3) { background: #28c840; }

.window-title {
  color: #8c939f;
  font-size: 11px;
  font-weight: 600;
}

.app-layout {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  min-height: 634px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 20px 13px 14px;
  border-right: 1px solid #dfe3e8;
  background: rgba(249, 250, 252, 0.94);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px 19px;
}

.app-brand img {
  width: 27px;
  height: 27px;
}

.app-brand span {
  color: #252933;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.app-nav-label {
  margin: 0;
  padding: 8px 10px 7px;
  color: #9aa1ab;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-nav-item {
  display: flex;
  width: 100%;
  height: 34px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  color: #69717d;
  background: transparent;
  font-size: 11px;
  font-weight: 560;
  text-align: left;
}

.app-nav-item + .app-nav-item {
  margin-top: 3px;
}

.app-nav-item svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #858e99;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-nav-item.active {
  color: var(--lavender-dark);
  background: rgba(128, 101, 232, 0.11);
}

.app-nav-item.active svg {
  stroke: var(--lavender-dark);
}

.app-sidebar-spacer {
  flex: 1;
}

.local-library {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding: 11px;
  border-radius: 10px;
  background: #f0f2f5;
}

.local-library div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.local-library strong {
  color: #353944;
  font-size: 9px;
  font-weight: 650;
}

.local-library span {
  margin-top: 2px;
  color: #929aa5;
  font-size: 8px;
}

.local-library i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #25a866;
  box-shadow: 0 0 0 3px rgba(37, 168, 102, 0.13);
}

.app-main {
  min-width: 0;
  background: #f5f6f8;
}

.app-toolbar {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(250px, 350px) 36px auto auto;
  align-items: center;
  gap: 9px;
  min-height: 76px;
  padding: 13px 18px;
  border-bottom: 1px solid #dfe3e8;
  background: rgba(248, 249, 251, 0.94);
}

.toolbar-heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.toolbar-heading span {
  color: #9aa1ab;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toolbar-heading strong {
  margin-top: 3px;
  overflow: hidden;
  color: #242730;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-search {
  display: flex;
  min-width: 0;
  height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  color: #9aa1ab;
  background: white;
  box-shadow: 0 1px 2px rgba(20, 24, 32, 0.03);
  font-size: 9px;
}

.app-search svg,
.app-icon-button svg,
.app-secondary-button svg,
.app-primary-button svg,
.library-summary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-search span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-search kbd {
  padding: 2px 4px;
  border: 1px solid #dfe3e8;
  border-radius: 5px;
  color: #969da8;
  background: #f7f8fa;
  font-family: inherit;
  font-size: 7px;
}

.app-icon-button,
.app-secondary-button,
.app-primary-button,
.library-summary button {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 650;
}

.app-icon-button {
  width: 36px;
  border: 1px solid #dfe3e8;
  color: #69717d;
  background: white;
}

.app-secondary-button {
  padding: 0 11px;
  border: 1px solid #dfe3e8;
  color: #555d69;
  background: white;
}

.app-primary-button {
  padding: 0 12px;
  border: 0;
  color: white;
  background: var(--lavender-dark);
  box-shadow: 0 7px 18px rgba(128, 101, 232, 0.2);
}

.library-summary {
  display: flex;
  height: 45px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  color: #8c949f;
  font-size: 9px;
}

.library-summary strong {
  color: #404650;
}

.summary-divider {
  width: 1px;
  height: 13px;
  background: #d8dde3;
}

.summary-spacer {
  flex: 1;
}

.library-summary button {
  width: 30px;
  height: 28px;
  border: 1px solid #dfe3e8;
  color: var(--lavender-dark);
  background: white;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  padding: 0 20px 22px;
}

.palette-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  background: white;
  box-shadow: 0 2px 6px rgba(20, 24, 32, 0.035);
}

.palette-card.selected {
  border-color: var(--lavender-dark);
  box-shadow: 0 0 0 1px var(--lavender-dark), 0 10px 24px rgba(128, 101, 232, 0.1);
}

.palette-swatches {
  display: flex;
  height: 105px;
  overflow: hidden;
  border-bottom: 1px solid #e3e6ea;
}

.palette-swatches button {
  min-width: 0;
  flex: 1;
  border: 0;
  background: var(--c);
  cursor: copy;
}

.palette-swatches.gradient-preview-card button {
  background: var(--g);
}

.palette-card-copy {
  padding: 12px 13px 11px;
}

.palette-card-copy > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.palette-card-copy strong {
  overflow: hidden;
  color: #2d313a;
  font-size: 10px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.palette-card-copy span,
.palette-card-copy p {
  color: #98a0aa;
  font-size: 8px;
}

.palette-card-copy span {
  margin-top: 2px;
}

.palette-card-copy p {
  margin: 11px 0 0;
  padding-top: 9px;
  border-top: 1px solid #edf0f2;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border: 1px solid rgba(223, 227, 232, 0.95);
  border-radius: 13px;
  color: #555d68;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(47, 52, 64, 0.16);
  backdrop-filter: blur(14px);
  font-size: 10px;
  animation: floating 5s ease-in-out infinite;
}

.floating-note strong {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.floating-note svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #25a866;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-note-one {
  right: -28px;
  bottom: 80px;
}

.floating-note-two {
  top: 80px;
  left: -32px;
  animation-delay: -2.2s;
}

.floating-note-two svg {
  stroke: var(--lavender-dark);
}

.floating-swatch {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Audience */
.audience-band {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.audience-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.audience-inner > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 600;
}

.audience-list span {
  position: relative;
}

.audience-list span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--line-strong);
  transform: translateY(-50%);
}

/* Problem */
.problem-section {
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 76px;
}

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

.problem-card {
  position: relative;
  min-height: 236px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 11px 32px rgba(47, 52, 64, 0.055);
}

.problem-card:first-child {
  grid-column: span 2;
  min-height: 206px;
}

.problem-card::after {
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  content: "";
  opacity: 0.24;
  filter: blur(2px);
}

.problem-card-coral::after { background: var(--coral); }
.problem-card-lavender::after { background: var(--lavender); }
.problem-card-seafoam::after { background: var(--seafoam); }

.problem-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(47, 52, 64, 0.19);
  font-size: 12px;
  font-weight: 730;
  letter-spacing: 0.1em;
}

.problem-card > svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  margin: 44px 0 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.problem-card:first-child h3 {
  margin-top: 34px;
}

.problem-card p {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Palette feature */
.feature-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 82px;
}

.feature-points {
  display: grid;
  gap: 19px;
  margin-top: 37px;
}

.feature-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
}

.feature-points > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(128, 101, 232, 0.12);
  border-radius: 13px;
  color: var(--lavender-dark);
  background: var(--lavender-soft);
}

.feature-points svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-points p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.feature-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
}

.palette-showcase {
  position: relative;
  min-height: 580px;
  padding: 22px;
  border: 1px solid #e0dde6;
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 10%, rgba(167, 139, 250, 0.15), transparent 16rem),
    radial-gradient(circle at 20% 90%, rgba(99, 199, 192, 0.13), transparent 18rem),
    #f5f4f8;
  box-shadow: 0 28px 80px rgba(47, 52, 64, 0.11);
}

.palette-showcase::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.showcase-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 7px 19px;
}

.showcase-header > div {
  display: flex;
  flex-direction: column;
}

.showcase-header span {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-header strong {
  margin-top: 4px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.showcase-header button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--lavender-dark);
  box-shadow: 0 8px 20px rgba(128, 101, 232, 0.2);
}

.showcase-header svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
}

.showcase-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.showcase-palette {
  display: grid;
  grid-template-columns: minmax(210px, 0.94fr) minmax(150px, 1fr);
  align-items: center;
  min-height: 128px;
  overflow: hidden;
  border: 1px solid rgba(218, 215, 223, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 30px rgba(47, 52, 64, 0.07);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.showcase-palette:hover {
  transform: translateX(-5px);
  box-shadow: 0 16px 40px rgba(47, 52, 64, 0.12);
}

.showcase-swatches {
  display: flex;
  align-self: stretch;
  min-height: 128px;
}

.showcase-swatches button {
  min-width: 0;
  flex: 1;
  border: 0;
  background: var(--c);
  cursor: copy;
}

.showcase-palette > div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
}

.showcase-palette strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.showcase-palette span {
  margin-top: 5px;
  color: var(--muted-light);
  font-size: 11px;
}

.showcase-toast {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid #e0dde6;
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 17px 42px rgba(47, 52, 64, 0.15);
  font-size: 11px;
  font-weight: 600;
}

.showcase-toast svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #25a866;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Gradient section */
.gradient-section {
  overflow: hidden;
  color: white;
  background: #222630;
  isolation: isolate;
}

.gradient-section::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.gradient-bg {
  position: absolute;
  z-index: -3;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
}

.gradient-bg-one {
  top: -250px;
  left: -180px;
  background: linear-gradient(135deg, var(--coral), var(--lavender));
}

.gradient-bg-two {
  right: -280px;
  bottom: -320px;
  background: linear-gradient(135deg, var(--lavender), var(--seafoam));
}

.gradient-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 80px;
}

.gradient-copy h2 {
  color: white;
}

.gradient-copy > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.68);
}

.gradient-feature-list {
  display: grid;
  gap: 12px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.gradient-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 570;
}

.gradient-feature-list svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--seafoam);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gradient-studio {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(22, 24, 30, 0.72);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.gradient-studio-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-studio-bar > div {
  display: flex;
  flex-direction: column;
}

.studio-kicker {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gradient-studio-bar strong {
  margin-top: 4px;
  font-size: 15px;
}

.studio-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.studio-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ddd92;
  box-shadow: 0 0 0 4px rgba(77, 221, 146, 0.11);
}

.gradient-canvas {
  position: relative;
  display: grid;
  height: 240px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ff8f7a 0%, #a78bfa 50%, #63c7c0 100%);
  transition: background 100ms linear;
}

.gradient-canvas::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.gradient-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black, transparent 82%);
}

.gradient-angle-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 80px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: white;
  background: rgba(23, 25, 30, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 650;
}

.gradient-controls {
  padding: 20px;
}

.angle-control {
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.angle-control > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.angle-control output {
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.gradient-controls input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  border-radius: 99px;
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.gradient-controls input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  appearance: none;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.gradient-controls input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.stops-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 12px;
}

.stops-heading > div {
  display: flex;
  flex-direction: column;
}

.stops-heading strong {
  color: white;
  font-size: 12px;
}

.stops-heading span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.studio-add-stop {
  display: inline-flex;
  height: 31px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  font-size: 9px;
  font-weight: 650;
}

.studio-add-stop svg,
.remove-stop svg,
.studio-footer svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.gradient-stop {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) minmax(105px, 0.65fr) 28px;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.gradient-stop input[type="color"] {
  width: 38px;
  height: 38px;
  padding: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.gradient-stop input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.gradient-stop input[type="color"]::-webkit-color-swatch {
  border: 0;
  border-radius: 7px;
}

.stop-meta {
  display: grid;
  grid-template-columns: minmax(78px, auto) 1fr;
  align-items: center;
  gap: 11px;
}

.stop-meta > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.stop-meta strong {
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.stop-meta small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 8px;
}

.stop-meta label,
.opacity-control {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.remove-stop {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.34);
  background: transparent;
}

.remove-stop:hover:not(:disabled) {
  color: var(--coral);
  background: rgba(255, 143, 122, 0.08);
}

.remove-stop:disabled {
  opacity: 0.18;
}

.studio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-footer > span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.studio-footer button {
  display: inline-flex;
  height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--lavender-dark);
  box-shadow: 0 8px 20px rgba(128, 101, 232, 0.2);
  font-size: 10px;
  font-weight: 680;
}

/* Search */
.search-section {
  background: #fff;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 82px;
}

.search-demo {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 143, 122, 0.12), transparent 15rem),
    radial-gradient(circle at 95% 90%, rgba(99, 199, 192, 0.11), transparent 18rem),
    #f5f4f1;
  box-shadow: 0 24px 72px rgba(47, 52, 64, 0.09);
}

.search-demo-window {
  overflow: hidden;
  border: 1px solid #dedbe2;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 42px rgba(47, 52, 64, 0.1);
}

.search-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 19px;
  border-bottom: 1px solid #ece9ee;
}

.search-demo-head > div {
  display: flex;
  flex-direction: column;
}

.search-demo-head span {
  color: var(--muted-light);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.search-demo-head strong {
  margin-top: 4px;
  font-size: 14px;
}

.search-demo-head kbd {
  padding: 5px 7px;
  border: 1px solid #e2dfe5;
  border-radius: 7px;
  color: var(--muted-light);
  background: #f7f6f8;
  font-family: inherit;
  font-size: 8px;
}

.search-demo-input {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 9px;
  margin: 16px 16px 10px;
  padding: 0 13px;
  border: 1px solid #d8d4de;
  border-radius: 13px;
  background: white;
  box-shadow: 0 0 0 3px rgba(128, 101, 232, 0.06);
}

.search-demo-input svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.9;
  stroke-linecap: round;
}

.search-demo-input input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
}

.search-demo-input input::placeholder {
  color: #a0a6af;
}

.search-demo-input > span {
  color: var(--muted-light);
  font-size: 8px;
  white-space: nowrap;
}

.search-suggestions {
  display: flex;
  gap: 6px;
  padding: 0 16px 10px;
}

.search-suggestions button {
  height: 26px;
  padding: 0 9px;
  border: 1px solid #e2dfe5;
  border-radius: 999px;
  color: #757c87;
  background: #faf9fb;
  font-size: 8px;
  font-weight: 590;
}

.search-suggestions button:hover {
  border-color: rgba(128, 101, 232, 0.24);
  color: var(--lavender-dark);
  background: var(--lavender-soft);
}

.search-results {
  display: grid;
  max-height: 338px;
  overflow-y: auto;
  padding: 0 10px 10px;
}

.search-results article {
  display: grid;
  grid-template-columns: 86px 1fr 18px;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 9px;
  border-radius: 12px;
  transition: background-color 150ms ease;
}

.search-results article + article {
  border-top: 1px solid #f0edf1;
}

.search-results article:hover {
  background: #f8f6fb;
}

.search-results article[hidden] {
  display: none;
}

.result-swatches {
  display: flex;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(47, 52, 64, 0.08);
  border-radius: 9px;
}

.result-swatches i {
  min-width: 0;
  flex: 1;
  background: var(--c);
}

.search-results article > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.search-results strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results span {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted-light);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results article > svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #a5abb3;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  padding: 30px;
  text-align: center;
}

.search-empty[hidden] {
  display: none;
}

.search-empty svg {
  width: 28px;
  height: 28px;
  margin-bottom: 13px;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.6;
}

.search-empty strong {
  font-size: 13px;
}

.search-empty span {
  max-width: 240px;
  margin-top: 5px;
  color: var(--muted-light);
  font-size: 9px;
}

.search-callout {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  margin-top: 31px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-subtle);
}

.search-callout > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: white;
  box-shadow: 0 4px 14px rgba(47, 52, 64, 0.07);
}

.search-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.search-callout strong {
  color: var(--ink);
}

/* Workflow */
.workflow-section {
  border-top: 1px solid var(--line);
}

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

.workflow-grid::before {
  position: absolute;
  z-index: -1;
  top: 52px;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--lavender), var(--seafoam), var(--slate));
  opacity: 0.24;
}

.workflow-card {
  position: relative;
  min-height: 278px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(47, 52, 64, 0.04);
}

.workflow-index {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.workflow-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 7px solid white;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(47, 52, 64, 0.1);
}

.workflow-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-icon-coral { color: var(--coral-dark); background: var(--coral-soft); }
.workflow-icon-lavender { color: var(--lavender-dark); background: var(--lavender-soft); }
.workflow-icon-seafoam { color: var(--seafoam-dark); background: var(--seafoam-soft); }
.workflow-icon-slate { color: var(--slate); background: #e9ebef; }

.workflow-card h3 {
  margin: 41px 0 0;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.workflow-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Native */
.native-section {
  padding-top: 30px;
}

.native-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  min-height: 550px;
  align-items: center;
  gap: 56px;
  padding: 64px 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(167, 139, 250, 0.15), transparent 22rem),
    radial-gradient(circle at 70% 90%, rgba(99, 199, 192, 0.14), transparent 24rem),
    white;
  box-shadow: 0 30px 90px rgba(47, 52, 64, 0.09);
}

.native-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 70%;
  content: "";
  background:
    linear-gradient(rgba(47, 52, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 52, 64, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, transparent, black);
}

.native-copy {
  position: relative;
  z-index: 2;
}

.native-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 1;
}

.native-copy > p:not(.section-label) {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.native-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.native-chips span {
  display: inline-flex;
  height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 620;
}

.native-chips svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.native-visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 410px;
  place-items: center;
}

.native-visual > img {
  position: relative;
  z-index: 3;
  width: min(310px, 73%);
  height: auto;
  filter: drop-shadow(0 30px 42px rgba(47, 52, 64, 0.2));
  animation: appIconFloat 6s ease-in-out infinite;
}

@keyframes appIconFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.app-icon-orbit {
  position: absolute;
  border: 1px solid rgba(128, 101, 232, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 360px;
  height: 360px;
}

.orbit-two {
  width: 460px;
  height: 270px;
  transform: rotate(-18deg);
}

.native-format {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(47, 52, 64, 0.11);
  backdrop-filter: blur(14px);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.06em;
}

.format-one { top: 32px; left: 16%; transform: rotate(-8deg); }
.format-two { top: 56px; right: 10%; transform: rotate(8deg); }
.format-three { bottom: 66px; left: 9%; transform: rotate(7deg); }
.format-four { right: 15%; bottom: 28px; transform: rotate(-6deg); }

/* Capabilities */
.capability-section {
  padding-top: 54px;
}

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

.capability-card {
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.capability-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.capability-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(128, 101, 232, 0.12);
  border-radius: 14px;
  color: var(--lavender-dark);
  background: linear-gradient(135deg, white, var(--lavender-soft));
  box-shadow: 0 7px 18px rgba(47, 52, 64, 0.06);
}

.capability-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h3 {
  margin: 33px 0 0;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.capability-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* Final CTA */
.final-cta {
  overflow: hidden;
  color: white;
  background: #252a34;
  isolation: isolate;
}

.final-cta::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 32rem),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.final-cta-aura {
  position: absolute;
  z-index: -2;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
}

.final-cta-aura-one {
  top: -360px;
  left: -180px;
  background: linear-gradient(135deg, var(--coral), var(--lavender));
}

.final-cta-aura-two {
  right: -220px;
  bottom: -420px;
  background: linear-gradient(135deg, var(--lavender), var(--seafoam));
}

.final-cta-inner {
  display: flex;
  max-width: 840px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.final-cta-inner > img {
  width: 106px;
  height: 106px;
  margin-bottom: 27px;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.25));
}

.final-cta h2 {
  color: white;
  font-size: clamp(48px, 6vw, 72px);
}

.final-cta-inner > p:not(.section-label) {
  max-width: 590px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  gap: 11px;
  margin-top: 32px;
}

.final-cta small {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.03em;
}

/* FAQ */
.faq-section {
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 90px;
}

.faq-copy {
  position: sticky;
  top: 118px;
}

.faq-copy a {
  color: var(--lavender-dark);
  text-decoration: underline;
  text-decoration-color: rgba(128, 101, 232, 0.28);
  text-underline-offset: 4px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -0.015em;
  text-align: left;
}

.faq-item button span {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-subtle);
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--ink-soft);
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  max-width: 650px;
  margin: -8px 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* Footer */
.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--page);
}

.footer-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  width: 126px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted-light);
  font-size: 12px;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 580;
}

.footer-inner nav a:hover {
  color: var(--ink);
}

.footer-inner small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-light);
  font-size: 10px;
}

/* Copy toast */
.copy-toast {
  position: fixed;
  z-index: 180;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid rgba(223, 227, 232, 0.95);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(47, 52, 64, 0.16);
  backdrop-filter: blur(15px);
  font-size: 11px;
  font-weight: 620;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.copy-toast svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #25a866;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-window {
    min-height: 590px;
  }

  .app-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 548px;
  }

  .app-toolbar {
    grid-template-columns: minmax(95px, 1fr) minmax(210px, 290px) 36px auto;
  }

  .app-secondary-button {
    display: none;
  }

  .palette-swatches {
    height: 90px;
  }

  .problem-grid,
  .feature-grid,
  .search-layout,
  .gradient-layout {
    gap: 54px;
  }

  .native-card {
    padding: 58px 52px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 104px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 70px rgba(47, 52, 64, 0.17);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition:
      opacity 170ms ease,
      transform 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 11px;
    font-size: 15px;
  }

  .site-nav a:hover {
    background: var(--surface-subtle);
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-product {
    width: min(100%, 820px);
  }

  .hero-window {
    min-height: 530px;
  }

  .app-layout {
    grid-template-columns: 164px minmax(0, 1fr);
    min-height: 488px;
  }

  .app-sidebar {
    padding-inline: 10px;
  }

  .app-toolbar {
    grid-template-columns: minmax(90px, 1fr) minmax(185px, 1.5fr) 34px;
  }

  .app-primary-button {
    display: none;
  }

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

  .palette-card:nth-child(n+5) {
    display: none;
  }

  .floating-note-one {
    right: 8px;
  }

  .floating-note-two {
    left: 8px;
  }

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

  .audience-list {
    justify-content: flex-start;
  }

  .problem-grid,
  .feature-grid,
  .gradient-layout,
  .search-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .gradient-layout,
  .search-layout {
    gap: 60px;
  }

  .feature-copy,
  .gradient-copy,
  .search-copy {
    max-width: 690px;
  }

  .gradient-studio {
    max-width: 760px;
  }

  .search-demo {
    order: 2;
  }

  .search-copy {
    order: 1;
  }

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

  .workflow-grid::before {
    display: none;
  }

  .native-card {
    grid-template-columns: 1fr;
    padding: 56px;
  }

  .native-copy {
    max-width: 660px;
  }

  .native-visual {
    min-height: 380px;
  }

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

  .faq-copy {
    position: static;
    max-width: 660px;
  }

  .faq-layout {
    gap: 50px;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 82px 0;
  }

  .section-copy h2,
  .section-heading-centered h2,
  .final-cta h2,
  .native-copy h2 {
    font-size: clamp(38px, 12vw, 51px);
  }

  .section-copy > p:not(.section-label),
  .section-heading-centered > p:not(.section-label),
  .native-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-link {
    width: 119px;
  }

  .hero {
    padding: 118px 0 66px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(50px, 15.7vw, 70px);
    letter-spacing: -0.07em;
    line-height: 0.92;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 17px;
  }

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

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

  .hero-proof {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero-product {
    margin-top: 52px;
  }

  .hero-window {
    width: 780px;
    min-height: 500px;
    transform: scale(0.47) rotateX(1.5deg) rotateY(-0.7deg);
    transform-origin: top left;
  }

  .hero-product {
    height: 260px;
    overflow: visible;
  }

  .floating-note {
    display: none;
  }

  .audience-band {
    padding: 28px 0;
  }

  .audience-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px 18px;
  }

  .audience-list span + span::before {
    display: none;
  }

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

  .problem-card:first-child {
    grid-column: auto;
  }

  .problem-card,
  .problem-card:first-child {
    min-height: 220px;
  }

  .feature-grid,
  .problem-grid,
  .gradient-layout,
  .search-layout {
    gap: 46px;
  }

  .palette-showcase {
    min-height: 560px;
    padding: 16px;
    border-radius: 23px;
  }

  .showcase-palette {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-swatches {
    min-height: 92px;
  }

  .showcase-palette > div:last-child {
    padding: 15px;
  }

  .showcase-toast {
    right: 18px;
    bottom: -18px;
  }

  .gradient-studio-bar,
  .gradient-controls {
    padding: 16px;
  }

  .gradient-canvas {
    height: 190px;
  }

  .gradient-stop {
    grid-template-columns: 36px 1fr 28px;
  }

  .gradient-stop input[type="color"] {
    width: 36px;
    height: 36px;
  }

  .stop-meta {
    grid-template-columns: 1fr;
  }

  .opacity-control {
    grid-column: 1 / -1;
    padding-left: 47px;
  }

  .remove-stop {
    grid-column: 3;
    grid-row: 1;
  }

  .search-demo {
    padding: 14px;
    border-radius: 22px;
  }

  .search-demo-input > span {
    display: none;
  }

  .search-results article {
    grid-template-columns: 70px 1fr 15px;
    gap: 9px;
  }

  .workflow-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card,
  .capability-card {
    min-height: 230px;
  }

  .native-section {
    padding-top: 8px;
  }

  .native-card {
    min-height: auto;
    padding: 38px 25px;
    border-radius: 26px;
  }

  .native-visual {
    min-height: 320px;
  }

  .native-visual > img {
    width: 220px;
  }

  .orbit-one {
    width: 270px;
    height: 270px;
  }

  .orbit-two {
    width: 330px;
    height: 210px;
  }

  .native-format {
    width: 48px;
    height: 48px;
  }

  .format-one { left: 3%; }
  .format-two { right: 0; }
  .format-three { left: 0; }
  .format-four { right: 4%; }

  .final-cta-inner > img {
    width: 90px;
    height: 90px;
  }

  .faq-item button {
    padding: 22px 0;
    font-size: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .footer-inner small {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-window {
    transform: scale(0.42) rotateX(1.5deg) rotateY(-0.7deg);
  }

  .hero-product {
    height: 230px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .search-suggestions {
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
