/* ==========================================================================
   Kingdes — landing page styles
   Palette derived from the reference product site: cyan primary, deep navy
   surfaces, crimson for video, violet for style-engine, emerald for success.
   ========================================================================== */

:root {
  --cyan-300: #67e8f9;
  --cyan-400: #13d7e6;
  --cyan-500: #06b6d4;
  --cyan-600: #0092b5;
  --cyan-700: #0e7490;
  --cyan-50: #ecfeff;
  --cyan-100: #cefafe;

  --navy-950: #020618;
  --navy-900: #0b0f19;
  --navy-800: #0f172b;
  --navy-700: #1d293d;

  --ink: #0b1220;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #627493;
  --slate-400: #94a6c4;
  --slate-300: #cbd5e1;
  --line: #e2e8f0;
  --soft: #f8fafc;

  --red-500: #fb2c36;
  --red-600: #e11d48;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --green-500: #00bb7f;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06), 0 1px 3px rgba(11, 18, 32, 0.04);
  --shadow: 0 12px 30px -12px rgba(11, 18, 32, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(11, 18, 32, 0.28);
  --shadow-cyan: 0 18px 40px -18px rgba(6, 182, 212, 0.55);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --header-h: 66px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  font-weight: 700;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

code,
.mono {
  font-family: var(--font-mono);
}

::selection {
  background: var(--cyan-500);
  color: #04222b;
}

/* ---------- layout ---------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 940px;
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section-soft {
  background: linear-gradient(180deg, #fbfdff 0%, var(--soft) 45%, #fbfdff 100%);
}

.section-dark {
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(6, 182, 212, 0.16), transparent 62%),
    radial-gradient(900px 480px at 92% 108%, rgba(168, 85, 247, 0.14), transparent 60%),
    var(--navy-950);
  color: #e8eefb;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: #a7b6d4;
}

.section-head {
  margin-bottom: 52px;
}

.section-head.center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  margin-top: 16px;
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 68ch;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-sub {
  color: #9db0d1;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin-bottom: 14px;
}

.center {
  text-align: center;
}

.gap-top {
  margin-top: 96px;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: 1.125rem;
}

/* ---------- glows ---------- */

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.glow-red {
  width: 620px;
  height: 620px;
  right: -180px;
  top: -180px;
  background: rgba(251, 44, 54, 0.24);
}

.glow-purple {
  width: 640px;
  height: 640px;
  left: -220px;
  bottom: -260px;
  background: rgba(168, 85, 247, 0.26);
}

.glow-cyan {
  width: 760px;
  height: 520px;
  left: 50%;
  transform: translateX(-50%);
  top: -180px;
  background: rgba(6, 182, 212, 0.2);
}

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--cyan-500);
  --btn-fg: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
  box-shadow: 0 22px 46px -16px rgba(6, 182, 212, 0.7);
}

.btn-ghost {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-700);
}

.btn-purple {
  background: linear-gradient(135deg, #b06bff, var(--purple-600));
  box-shadow: 0 18px 40px -18px rgba(147, 51, 234, 0.6);
}

.btn-red {
  background: linear-gradient(135deg, #ff5b63, var(--red-600));
  box-shadow: 0 18px 40px -18px rgba(225, 29, 72, 0.65);
}

.btn-red-outline {
  background: transparent;
  border-color: rgba(251, 44, 54, 0.45);
  color: #ff8a90;
}

.btn-red-outline:hover {
  background: rgba(251, 44, 54, 0.12);
  border-color: var(--red-500);
  color: #ffd9db;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-xs {
  padding: 8px 13px;
  font-size: 0.75rem;
}

.btn-xs svg {
  width: 15px;
  height: 15px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-weight: 600;
  color: var(--cyan-700);
}

.link-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.link-purple {
  color: #c99bff;
}

/* ---------- pills ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

.pill svg {
  width: 15px;
  height: 15px;
}

.pill-cyan {
  background: var(--cyan-50);
  border-color: rgba(6, 182, 212, 0.28);
  color: var(--cyan-700);
}

.pill-red {
  background: rgba(251, 44, 54, 0.12);
  border-color: rgba(251, 44, 54, 0.35);
  color: #ff7a80;
}

.pill-purple {
  background: rgba(168, 85, 247, 0.14);
  border-color: rgba(168, 85, 247, 0.4);
  color: #c99bff;
}

.pill-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #cbd7ee;
  margin-bottom: 0;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  flex: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-light .brand-name {
  color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 8px;
}

.nav a {
  font-size: 0.9375rem;
  color: var(--slate-600);
  font-weight: 500;
  transition: color 0.16s ease;
}

.nav a:hover {
  color: var(--cyan-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.lang-switch button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  transition: background 0.16s ease, color 0.16s ease;
}

.lang-switch button.is-active {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  color: #ffffff;
}

.account-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
}

.account-link svg {
  width: 19px;
  height: 19px;
}

.account-link:hover {
  color: var(--cyan-600);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 24px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav a {
  padding: 11px 0;
  font-weight: 500;
  color: var(--slate-700);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.mobile-nav.is-open {
  display: flex;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 74px 0 0;
  background:
    radial-gradient(900px 520px at 78% 6%, rgba(6, 182, 212, 0.12), transparent 62%),
    linear-gradient(180deg, #f9fcff 0%, #fbfdfe 55%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding-bottom: 84px;
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 4.3vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 17ch;
}

.hero-copy .lead {
  margin-top: 24px;
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.hero-meta svg {
  width: 19px;
  height: 19px;
  color: var(--slate-400);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-500);
}

.hero-note svg {
  width: 18px;
  height: 18px;
}

/* ---------- app window mockup ---------- */

.hero-visual {
  position: relative;
}

.app-window {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dots {
  display: inline-flex;
  gap: 6px;
  flex: none;
}

.dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.d-red {
  background: #ff5f57;
}
.d-amber {
  background: #febc2e;
}
.d-green {
  background: #28c840;
}

.app-title {
  font-size: 0.8125rem;
  color: #94a6c4;
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-ver {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #5b6b88;
}

.app-body {
  display: grid;
  grid-template-columns: 46px 1fr 116px;
  height: 336px;
}

.app-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  background: #0d1526;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.app-rail .r {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  display: block;
}

.app-rail .r.on {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
}

.app-canvas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
}

.spread {
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px;
  flex: none;
}

.spread-a {
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 46px 30px;
  grid-template-areas: "p1 p2" "p1 p3";
}

.spread-a .p1 {
  grid-area: p1;
}
.spread-a .p2 {
  grid-area: p2;
}
.spread-a .p3 {
  grid-area: p3;
}

.spread-b {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 44px;
}

.spread-c {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 34px;
}

.ph {
  border-radius: 6px;
  background: linear-gradient(135deg, #1d2b45, #152036);
  position: relative;
  overflow: hidden;
}

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(19, 215, 230, 0.16) 50%, transparent 68%);
}

.spread:nth-child(2) .ph {
  background: linear-gradient(135deg, #24304c, #1a2438);
}

.spread:nth-child(3) .ph {
  background: linear-gradient(135deg, #1b2740, #131c30);
}

.app-panel {
  padding: 16px 12px;
  background: #0d1526;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pn-title {
  height: 8px;
  width: 70%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 4px;
}

.pn-row {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.pn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.pn-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
}

/* floating cards */

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  animation: float-y 6s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.float-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--slate-500);
}

.float-video {
  top: -22px;
  right: -14px;
  animation-delay: -1.4s;
}

.float-spread {
  bottom: -24px;
  left: -22px;
  animation-delay: -3.2s;
}

.fc-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}

.fc-ico svg {
  width: 19px;
  height: 19px;
}

.fc-ico-red {
  background: rgba(251, 44, 54, 0.12);
  color: var(--red-500);
}

.fc-ico-slate {
  background: rgba(98, 116, 147, 0.14);
  color: var(--slate-500);
}

.float-tag {
  position: absolute;
  right: 18px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--navy-900);
  color: #dbe6f7;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.float-tag svg {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ---------- process ---------- */

.process {
  padding-bottom: 96px;
}

.process-head {
  max-width: 720px;
  margin-bottom: 46px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.steps li {
  position: relative;
  padding: 26px 20px 24px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.steps li:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: var(--shadow);
}

.step-no {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan-600);
  margin-bottom: 12px;
}

.steps h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.steps p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ---------- split ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 64px;
  align-items: center;
}

.split-tight {
  margin-top: 84px;
}

.split-reverse .split-copy {
  order: 2;
}

.split-reverse .split-visual {
  order: 1;
}

.split-center-head {
  align-items: start;
}

.split-copy h2 {
  max-width: 18ch;
}

.split-copy > p {
  margin-top: 20px;
  color: var(--slate-500);
  font-size: 1.0625rem;
  max-width: 48ch;
}

.section-dark .split-copy > p {
  color: #a7b6d4;
}

.check-list {
  margin-top: 28px;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.section-dark .check-list li {
  color: #c3d0e6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: rgba(6, 182, 212, 0.14) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230092b5' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.4 4.4L19 7.4'/></svg>") center / 14px no-repeat;
}

.check-red li::before {
  background-color: rgba(251, 44, 54, 0.16);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5b63' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.4 4.4L19 7.4'/></svg>");
}

.check-purple li::before {
  background-color: rgba(168, 85, 247, 0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c99bff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.4 4.4L19 7.4'/></svg>");
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.badge-row .link-arrow {
  margin-top: 0;
}

/* ---------- panel cards ---------- */

.panel-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}

.dark-card {
  background: linear-gradient(170deg, #101a2f 0%, #0a1120 100%);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 80px -32px rgba(2, 6, 24, 0.9);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.panel-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: none;
}

.panel-ico svg {
  width: 20px;
  height: 20px;
}

.panel-ico-red {
  background: rgba(251, 44, 54, 0.16);
  color: #ff8188;
}

.panel-titles {
  display: flex;
  flex-direction: column;
}

.panel-titles strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
}

.panel-titles small {
  font-size: 0.75rem;
  color: #8ea1c2;
}

.panel-head .btn {
  margin-left: auto;
}

.panel-sub {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan-600);
  background: var(--cyan-50);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 8px;
  padding: 5px 9px;
}

.dark-card .mono-tag {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--cyan-400);
}

/* video player */

.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #060b16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.player-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 70% 20%, rgba(251, 44, 54, 0.16), transparent 60%),
    radial-gradient(420px 280px at 20% 90%, rgba(168, 85, 247, 0.14), transparent 60%);
}

.play-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff5b63, var(--red-600));
  color: #fff;
  box-shadow: 0 18px 40px -12px rgba(225, 29, 72, 0.8);
  transition: transform 0.2s ease;
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 2px;
}

.play-btn:hover {
  transform: scale(1.07);
}

.play-btn-lg {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  box-shadow: 0 22px 50px -12px rgba(6, 182, 212, 0.8);
}

.play-btn-lg svg {
  width: 34px;
  height: 34px;
}

.player-bar {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pb-ico {
  color: var(--cyan-400);
  display: grid;
  place-items: center;
}

.pb-ico svg {
  width: 18px;
  height: 18px;
}

.pb-name {
  font-size: 0.8125rem;
  color: #dbe6f7;
}

.pb-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #7f92b3;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stat {
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #7f92b3;
  margin-bottom: 5px;
}

.stat strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}

.val-red {
  color: #ff8188 !important;
}

.val-green {
  color: #34d399 !important;
}

/* auto design mockup */

.spread-preview {
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 18px;
  margin-bottom: 16px;
}

.big-spread {
  border-radius: 12px;
  background: #0d1526;
  padding: 12px;
  display: grid;
  gap: 9px;
}

.bs-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 9px;
  height: 108px;
}

.bs-row.single {
  grid-template-columns: 1fr;
  height: 62px;
}

.big-spread i {
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, #24304c, #1a2438);
}

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

.sug {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px;
  text-align: center;
}

.sug.is-on {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.14);
}

.sug-art {
  border-radius: 8px;
  background: var(--navy-900);
  padding: 7px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5px;
  height: 44px;
  margin-bottom: 8px;
}

.sug-art.focus {
  grid-template-columns: 1fr 2fr;
}

.sug-art.three {
  grid-template-columns: repeat(3, 1fr);
}

.sug-art i {
  display: block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.sug span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--slate-500);
  line-height: 1.35;
  display: block;
}

.sug.is-on span {
  color: var(--cyan-700);
}

/* ---------- template studio ---------- */

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

.tpl-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tpl-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.tpl-no {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan-600);
}

.tpl-card h3 {
  margin: 11px 0 7px;
}

.tpl-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.tpl-art {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 18px;
  height: 54px;
}

.tpl-art i {
  display: block;
  border-radius: 7px;
  background: linear-gradient(135deg, #e9f6fa, #d8eef5);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.tpl-card:nth-child(2) .tpl-art {
  grid-template-columns: repeat(3, 1fr);
}

.tpl-card:nth-child(3) .tpl-art {
  grid-template-columns: repeat(4, 1fr);
}

.mini-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.mt-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.mt-title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
}

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

.gm {
  border-radius: 10px;
  background: linear-gradient(135deg, #0d1526, #1c2740);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.gm::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(19, 215, 230, 0.18) 52%, transparent 66%);
}

.gm-2,
.gm-5 {
  background: linear-gradient(135deg, #16233a, #24304c);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
}

.chip.is-on {
  background: var(--cyan-50);
  border-color: rgba(6, 182, 212, 0.4);
  color: var(--cyan-700);
}

.chip-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #b8c6e0;
}

.chip-dark.is-on-p {
  background: rgba(168, 85, 247, 0.16);
  border-color: rgba(168, 85, 247, 0.45);
  color: #d8b4fe;
}

/* ---------- style engine ---------- */

.rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rate-label {
  font-size: 0.8125rem;
  color: #b8c6e0;
  font-weight: 600;
}

.stars {
  color: #fbbf24;
  letter-spacing: 3px;
  font-size: 0.95rem;
}

.rate-bars {
  display: grid;
  gap: 10px;
}

.rb {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rb span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #7f92b3;
  width: 12px;
}

.rb i {
  display: block;
  height: 8px;
  border-radius: 999px;
  width: var(--w);
  background: linear-gradient(90deg, var(--purple-500), var(--cyan-400));
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.45);
}

.chip-row-dark {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

/* ---------- psd ---------- */

.ps-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0b1b3f, #001e36);
  border: 1px solid rgba(49, 168, 255, 0.55);
  color: #31a8ff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex: none;
}

.dark-card .ps-badge {
  color: #31a8ff;
}

.import-steps {
  display: grid;
  gap: 10px;
}

.is-row {
  display: flex;
  gap: 13px;
  padding: 15px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fbfcfe;
}

.is-row.is-on {
  border-color: rgba(6, 182, 212, 0.45);
  background: var(--cyan-50);
}

.is-ico {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  flex: none;
}

.is-row strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.is-row small {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-500);
  line-height: 1.55;
}

.progress {
  margin-top: 18px;
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-400), var(--cyan-600));
}

.mono-note {
  margin-top: 11px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--slate-400);
}

/* ---------- store ---------- */

.check-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  max-width: 900px;
  margin: 0 auto 52px;
}

.check-row li {
  position: relative;
  padding-left: 30px;
  font-size: 0.9375rem;
  color: var(--slate-600);
}

.check-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: rgba(6, 182, 212, 0.14) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230092b5' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.4 4.4L19 7.4'/></svg>") center / 13px no-repeat;
}

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

.store-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 14px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.store-card h3 {
  margin: 16px 4px 5px;
  font-size: 1rem;
}

.store-card p {
  margin: 0 4px;
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.sc-art {
  border-radius: 12px;
  height: 168px;
  padding: 14px;
  display: grid;
  gap: 9px;
  background: linear-gradient(135deg, #eef3f8, #e2ebf3);
}

.sc-art i {
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, #c9d6e4, #b6c6d8);
}

.sc-a {
  grid-template-columns: 1.5fr 1fr;
}
.sc-a i:first-child {
  grid-row: span 2;
}

.sc-b {
  grid-template-columns: repeat(2, 1fr);
}
.sc-b i:first-child {
  grid-column: span 2;
}

.sc-c {
  grid-template-columns: 1fr 1.4fr;
}

.sc-d {
  grid-template-columns: 1fr;
}

.sc-e {
  grid-template-columns: repeat(3, 1fr);
}

.sc-f {
  grid-template-columns: 1.3fr 1fr;
}
.sc-f i:last-child {
  background: linear-gradient(135deg, #dbe4ee, #cfd9e6);
}

.store-card:nth-child(2) .sc-art {
  background: linear-gradient(135deg, #eaf6f2, #dcefe9);
}
.store-card:nth-child(3) .sc-art {
  background: linear-gradient(135deg, #f6efe9, #efe3d9);
}
.store-card:nth-child(4) .sc-art {
  background: linear-gradient(135deg, #f1f1f4, #e4e4ea);
}
.store-card:nth-child(5) .sc-art {
  background: linear-gradient(135deg, #f4eef8, #ebe0f4);
}
.store-card:nth-child(6) .sc-art {
  background: linear-gradient(135deg, #eaeef4, #dde3ec);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ---------- tools ---------- */

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

.tool {
  padding: 15px 17px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fbfcfe;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.tool:hover {
  border-color: rgba(6, 182, 212, 0.5);
  color: var(--cyan-700);
  background: var(--cyan-50);
}

.social-mock {
  display: grid;
  grid-template-columns: 130px 1fr;
  grid-template-rows: 1fr auto;
  gap: 14px;
  height: 270px;
}

.sm-phone {
  position: relative;
  grid-row: span 2;
  border-radius: 18px;
  background: #0d1526;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sm-notch {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.sm-screen {
  flex: 1;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(160deg, #1b2740, #101a2f);
  overflow: hidden;
  position: relative;
}

.sm-screen i {
  position: absolute;
  inset: 12% 12% 34% 12%;
  border-radius: 8px;
  background: linear-gradient(135deg, #2b3a5c, #22304c);
}

.sm-cap {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--slate-500);
}

.sm-feed {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(160deg, #101a2f, #0a1120);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sm-feed i {
  display: block;
  border-radius: 9px;
  height: 96px;
  background: linear-gradient(135deg, #25334f, #1a2438);
}

.sm-share {
  border-radius: 14px;
  border: 1px dashed rgba(6, 182, 212, 0.4);
  background: var(--cyan-50);
  display: grid;
  place-items: center;
  padding: 16px;
}

.sm-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cyan-700);
}

/* ---------- automation ---------- */

.form-mock {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.fm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fbfcfe;
}

.fm-label {
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 500;
}

.fm-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}

/* ---------- layout collection ---------- */

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

.ly {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d1526, #141f36);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  display: grid;
  gap: 10px;
  height: 210px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease;
}

.ly:hover {
  transform: translateY(-6px);
}

.ly i {
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, #24304c, #1a2438);
  position: relative;
  overflow: hidden;
}

.ly i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(19, 215, 230, 0.14) 52%, transparent 64%);
}

.ly:nth-child(1) {
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.ly:nth-child(1) i:first-child {
  grid-row: span 2;
}

.ly:nth-child(2) {
  grid-template-columns: repeat(2, 1fr);
}
.ly:nth-child(2) i:first-child {
  grid-column: span 2;
}

.ly:nth-child(3) {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 0.45fr;
}

.ly:nth-child(5) {
  grid-template-columns: repeat(2, 1fr);
}

/* ---------- export ---------- */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.exp-card {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--shadow);
}

.exp-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--cyan-50);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--cyan-600);
  margin-bottom: 18px;
}

.exp-ico svg {
  width: 23px;
  height: 23px;
}

.exp-card h3 {
  margin-bottom: 9px;
  font-size: 1.0625rem;
}

.exp-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
}

/* ---------- demo ---------- */

.demo-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(700px 400px at 70% 25%, rgba(168, 85, 247, 0.22), transparent 62%),
    radial-gradient(600px 360px at 22% 82%, rgba(6, 182, 212, 0.2), transparent 62%),
    #060b16;
  display: grid;
  place-items: center;
  box-shadow: 0 50px 90px -40px rgba(2, 6, 24, 0.95);
  overflow: hidden;
}

.demo-tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #cbd7ee;
}

/* ---------- pricing ---------- */

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 34px 32px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #fdfbff 100%);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 40px 80px -40px rgba(88, 28, 135, 0.35);
  overflow: hidden;
}

.price-card-head {
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-card-head h3 {
  font-size: 1.6rem;
  margin-top: 4px;
}

.price-card-head p {
  margin-top: 6px;
  font-size: 0.9375rem;
  color: var(--slate-500);
}

.price-watermark {
  position: absolute;
  right: -8px;
  top: -16px;
  width: 108px;
  height: 108px;
  color: rgba(168, 85, 247, 0.13);
}

.price-watermark svg {
  width: 100%;
  height: 100%;
}

.plan-list {
  display: grid;
  gap: 14px;
  padding: 24px 0;
}

.plan {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.plan:hover {
  border-color: rgba(168, 85, 247, 0.45);
}

.plan input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan:has(input:checked) {
  border-color: var(--purple-500);
  background: linear-gradient(180deg, #fbf5ff, #ffffff);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.13);
}

.plan-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--slate-300);
  flex: none;
  margin-top: 2px;
  position: relative;
  transition: border-color 0.18s ease;
}

.plan:has(input:checked) .plan-radio {
  border-color: var(--purple-500);
}

.plan:has(input:checked) .plan-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--purple-500);
}

.plan-body {
  display: block;
  flex: 1;
}

.plan-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.plan-name {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}

.plan-star {
  color: #fbbf24;
  font-size: 0.95rem;
  line-height: 1;
}

.plan-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--purple-600);
  white-space: nowrap;
}

.plan-desc {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--slate-500);
}

.price-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px dashed var(--line);
  margin-bottom: 18px;
}

.price-summary > span:first-child {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.price-summary strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--ink);
}

.price-final {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--purple-600);
}

.price-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-400);
}

/* included */

.included {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 34px 32px 30px;
}

.included h3 {
  font-size: 1.4rem;
}

.included > p {
  margin-top: 10px;
  font-size: 0.9375rem;
  color: var(--slate-500);
}

.inc-trial {
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--cyan-50);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--cyan-700) !important;
  font-weight: 600;
  font-size: 0.875rem !important;
  margin-top: 18px !important;
}

.inc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin-top: 24px;
}

.inc-grid li {
  position: relative;
  padding-left: 28px;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.inc-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: rgba(0, 187, 127, 0.14) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300bb7f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.4 4.4L19 7.4'/></svg>") center / 12px no-repeat;
}

/* ---------- faq ---------- */

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.faq details[open] {
  border-color: rgba(6, 182, 212, 0.42);
}

.faq summary {
  position: relative;
  padding: 19px 56px 19px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -7px;
  background: currentColor;
  color: var(--cyan-600);
  clip-path: polygon(0 35%, 50% 85%, 100% 35%, 100% 55%, 50% 105%, 0 55%);
  transition: transform 0.22s ease;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq details p {
  padding: 0 22px 22px;
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ---------- final cta ---------- */

.final-cta {
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(6, 182, 212, 0.14), transparent 65%),
    linear-gradient(180deg, #f6fafd, #ffffff 70%);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: #9db0d1;
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand p {
  margin: 18px 0 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 34ch;
  color: #8ea1c2;
}

.footer-mail {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan-400);
}

.footer-mail:hover {
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.875rem;
  color: #9db0d1;
  transition: color 0.16s ease;
}

.footer-col a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: #8ea1c2;
}

.footer-legal a:hover {
  color: var(--cyan-400);
}

.copyright {
  font-size: 0.8125rem;
  color: #7f92b3;
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-card {
    animation: none;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .nav {
    display: none;
  }
  .account-link span {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-wrap {
    grid-template-columns: 1fr;
  }
  .store-grid,
  .tpl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .split-reverse .split-copy {
    order: 1;
  }
  .split-reverse .split-visual {
    order: 2;
  }
  .hero-copy h1 {
    max-width: none;
  }
  .split-copy h2 {
    max-width: none;
  }
  .split-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .split-reverse .split-copy {
    order: 2;
  }
  .split-reverse .split-visual {
    order: 1;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .check-row {
    grid-template-columns: 1fr;
  }
  .gap-top {
    margin-top: 72px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding: 60px 0;
  }
  .steps,
  .store-grid,
  .tpl-grid,
  .exp-grid,
  .layout-grid,
  .suggestions {
    grid-template-columns: 1fr;
  }
  .suggestions {
    grid-template-columns: repeat(3, 1fr);
  }
  .inc-grid {
    grid-template-columns: 1fr;
  }
  .app-body {
    grid-template-columns: 40px 1fr;
    height: 262px;
  }
  .app-panel {
    display: none;
  }
  .float-video {
    right: 0;
    top: -18px;
  }
  .float-spread {
    left: 0;
    bottom: -18px;
  }
  .float-card {
    padding: 9px 12px;
  }
  .float-card small {
    display: none;
  }
  .float-tag {
    display: none;
  }
  .social-mock {
    grid-template-columns: 110px 1fr;
    height: 240px;
  }
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .price-card,
  .included {
    padding: 26px 20px 24px;
  }
  .plan-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .panel-card {
    padding: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta .btn,
  .final-cta-actions .btn {
    width: 100%;
  }
}
