:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --bg-2: #eef2f7;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --text: #0f172a;
  --muted: #475569;
  --muted-2: rgba(71, 85, 105, 0.75);
  --brand: #4f46e5;
  --brand-2: #6366f1;
  --accent: #d97706;
  --ok: #16a34a;
  --radius: 18px;
  --radius-sm: 14px;
  --shadow: 0 18px 55px rgba(2, 6, 23, 0.1);
  --shadow-soft: 0 10px 30px rgba(2, 6, 23, 0.06);
  --ring: 0 0 0 4px rgba(79, 70, 229, 0.18);
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background:
    url("../img/noise.png") repeat,
    var(--bg-2);
  background-size: 420px 420px, auto;
  background-repeat: repeat, no-repeat;
  background-blend-mode: multiply, normal;
  line-height: 1.55;
  overflow-x: hidden;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
}

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

a:hover {
  text-decoration: underline;
}

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

::selection {
  background: rgba(79, 70, 229, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.icon {
  width: 20px;
  height: 20px;
  display: block;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  transform: translateY(-200%);
  transition: transform 180ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--ring);
}

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

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 28px 0 18px;
}

.section--alt {
  background: rgba(15, 23, 42, 0.012);
}

section {
  scroll-margin-top: 92px;
}

main {
  animation: pageIn 220ms ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
}

body.scrolled .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.brand-logo {
  width: 38px;
  height: 38px;
  display: block;
}

.brand-name {
  font-size: 18px;
}

.brand-dot {
  color: var(--brand);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.18);
  text-decoration: none;
}

.nav-cta {
  color: #ffffff !important;
  background: var(--brand);
  border: 1px solid rgba(79, 70, 229, 0.28);
  box-shadow: 0 16px 35px rgba(79, 70, 229, 0.16);
}

.nav a.nav-cta:hover {
  background: #4338ca;
  border-color: rgba(79, 70, 229, 0.38);
  color: #ffffff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.12);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav-toggle-bars {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  display: block;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

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

.page-hero {
  padding: 112px 0 12px;
}

.page-hero--compact {
  padding: 104px 0 6px;
}

.page-hero--split .hero-grid {
  align-items: start;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  align-items: center;
}

.hero-art {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 28% 26%, rgba(79, 70, 229, 0.18), transparent 70%),
    radial-gradient(closest-side at 74% 32%, rgba(99, 102, 241, 0.16), transparent 72%),
    radial-gradient(closest-side at 60% 78%, rgba(217, 119, 6, 0.12), transparent 70%),
    radial-gradient(closest-side at 26% 78%, rgba(22, 163, 74, 0.12), transparent 72%);
  opacity: 0.9;
  transform: scale(1) rotate(0deg);
  transition: transform 420ms ease, opacity 420ms ease;
}

.hero-art-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 18px 55px rgba(79, 70, 229, 0.18));
  transition: transform 420ms ease, filter 420ms ease;
  z-index: 1;
}

.hero-art-bubble {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
  z-index: 2;
}

.hero-art-bubble .icon {
  width: 24px;
  height: 24px;
}

.hero-art-bubble--a {
  left: 12%;
  top: 18%;
  color: var(--brand);
}

.hero-art-bubble--b {
  right: 12%;
  top: 26%;
  color: var(--ok);
}

.hero-art-bubble--c {
  left: 22%;
  bottom: 16%;
  color: var(--accent);
}

.hero-art-bubble--d {
  right: 18%;
  bottom: 18%;
  color: var(--brand-2);
}

.hero-art:hover::before {
  opacity: 1;
  transform: scale(1.06) rotate(-2deg);
}

.hero-art:hover .hero-art-logo {
  transform: translate(-50%, -50%) scale(1.03) rotate(1deg);
  filter: drop-shadow(0 22px 66px rgba(79, 70, 229, 0.22));
}

.hero-art:hover .hero-art-bubble {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(79, 70, 229, 0.18);
}

.hero-art:hover .hero-art-bubble--a {
  transform: translate(2px, -6px);
}

.hero-art:hover .hero-art-bubble--b {
  transform: translate(-2px, -4px);
}

.hero-art:hover .hero-art-bubble--c {
  transform: translate(2px, 4px);
}

.hero-art:hover .hero-art-bubble--d {
  transform: translate(-2px, 6px);
}

.hero-art--home {
  height: 340px;
}

.hero-art--home::before {
  background:
    conic-gradient(from 220deg at 52% 46%, rgba(79, 70, 229, 0.1), transparent 40%, rgba(22, 163, 74, 0.1), transparent 72%, rgba(99, 102, 241, 0.1)),
    radial-gradient(closest-side at 24% 32%, rgba(99, 102, 241, 0.18), transparent 72%),
    radial-gradient(closest-side at 78% 24%, rgba(79, 70, 229, 0.16), transparent 72%),
    radial-gradient(closest-side at 68% 82%, rgba(217, 119, 6, 0.11), transparent 74%);
  opacity: 0.95;
}

.hero-art--home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.18;
  transform: translateY(0);
  transition: transform 420ms ease, opacity 420ms ease;
}

.hero-home-slab {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  opacity: 0.76;
  transition: transform 520ms ease, opacity 520ms ease;
  z-index: 1;
}

.hero-home-slab--a {
  width: 84%;
  height: 66%;
  left: 8%;
  top: 15%;
  transform: rotate(-8deg);
}

.hero-home-slab--b {
  width: 74%;
  height: 58%;
  left: 16%;
  top: 24%;
  transform: rotate(8deg);
  opacity: 0.64;
}

.hero-art--home .hero-art-logo {
  width: 176px;
  opacity: 0.9;
  transform: translate(-50%, -50%) rotate(-10deg);
  filter: drop-shadow(0 22px 70px rgba(79, 70, 229, 0.16));
  z-index: 2;
}

.hero-home-node {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
  z-index: 3;
}

.hero-home-node .icon {
  width: 22px;
  height: 22px;
}

.hero-home-node--a {
  left: 14%;
  top: 22%;
  color: var(--brand-2);
}

.hero-home-node--b {
  right: 14%;
  top: 18%;
  color: var(--brand);
}

.hero-home-node--c {
  left: 24%;
  bottom: 18%;
  color: var(--ok);
}

.hero-home-node--d {
  right: 20%;
  bottom: 22%;
  color: var(--accent);
}

.hero-art--home:hover::after {
  opacity: 0.24;
  transform: translateY(-4px);
}

.hero-art--home:hover .hero-home-slab--a {
  transform: rotate(-12deg) translate(-2px, -4px);
  opacity: 0.92;
}

.hero-art--home:hover .hero-home-slab--b {
  transform: rotate(12deg) translate(2px, -2px);
  opacity: 0.86;
}

.hero-art--home:hover .hero-art-logo {
  transform: translate(-50%, -50%) scale(1.04) rotate(-6deg);
  filter: drop-shadow(0 26px 82px rgba(79, 70, 229, 0.2));
}

.hero-art--home:hover .hero-home-node {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(79, 70, 229, 0.18);
}

.hero-art--home:hover .hero-home-node--a {
  transform: translate(-2px, -8px);
}

.hero-art--home:hover .hero-home-node--b {
  transform: translate(2px, -6px);
}

.hero-art--home:hover .hero-home-node--c {
  transform: translate(-2px, 6px);
}

.hero-art--home:hover .hero-home-node--d {
  transform: translate(2px, 8px);
}

.hero-copy {
  padding-top: 26px;
}

.eyebrow {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.4vw + 1rem, 3.5rem);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.8px;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 2.3vw + 1rem, 2.6rem);
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -0.7px;
}

.gradient-text {
  color: var(--brand);
}

.sade-mark {
  position: relative;
  display: inline-block;
  color: #1f67d8;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-bottom: 0.2em;
  white-space: nowrap;
}

.sade-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.28em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24'%3E%3Cpath d='M4 16 C 28 21 82 21 116 14' stroke='%231f67d8' stroke-width='6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.lede {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(11, 18, 32, 0.92);
  font-weight: 900;
  letter-spacing: -0.2px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.page-tab:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(79, 70, 229, 0.18);
  background: rgba(79, 70, 229, 0.06);
}

.page-tab[aria-current="page"] {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(79, 70, 229, 0.1);
}

.hero-bullets {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  margin: 0 0 20px;
}

.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(11, 18, 32, 0.92);
}

.hero-bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 4px;
  margin-top: 7px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.09);
  flex: none;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
  text-decoration: none;
  user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.15);
  box-shadow: none;
}

.btn-primary {
  background: var(--brand);
  border-color: rgba(79, 70, 229, 0.3);
  color: #ffffff;
  box-shadow: 0 18px 55px rgba(79, 70, 229, 0.18);
}

.btn-primary:hover {
  filter: brightness(1.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: #ffffff;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
  text-decoration: none;
}

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

.trust-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
}

.trust-pill .label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted-2);
  font-weight: 700;
}

.trust-pill .value {
  display: block;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.hero-panel {
  position: relative;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 1.6vw + 1.1rem, 2.2rem);
  letter-spacing: -0.6px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

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

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

.card {
  --card-accent: var(--brand);
  scroll-margin-top: 92px;
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--card-accent) 50%, transparent 100%);
  background-size: 200% 100%;
  background-position: 50% 0%;
  opacity: 0.55;
  transition: height 180ms ease, opacity 180ms ease, background-position 520ms ease;
}

.card:hover::before,
.card:focus-within::before {
  height: 6px;
  opacity: 0.9;
  background-position: 0% 0%;
}

.card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(79, 70, 229, 0.22);
}

.card h3 {
  margin: 6px 0 8px;
  letter-spacing: -0.3px;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.card .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 850;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(11, 18, 32, 0.92);
}

.price {
  font-weight: 900;
  color: var(--accent);
}

.card ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(11, 18, 32, 0.92);
}

.card li {
  margin: 6px 0;
  color: rgba(11, 18, 32, 0.92);
}

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

.feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.feature:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(79, 70, 229, 0.18);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(79, 70, 229, 0.09);
  border: 1px solid rgba(79, 70, 229, 0.16);
  color: rgba(79, 70, 229, 0.95);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

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

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

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px;
}

.stat .label {
  display: block;
  color: var(--muted-2);
  font-weight: 800;
  font-size: 0.82rem;
}

.stat .value {
  display: block;
  font-weight: 950;
  font-size: 1.25rem;
  letter-spacing: -0.4px;
  margin-top: 3px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.step {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: rgba(79, 70, 229, 0.09);
  border: 1px solid rgba(79, 70, 229, 0.16);
  color: rgba(11, 18, 32, 0.92);
}

.timeline h3 {
  margin: 0 0 4px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

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

.infra-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.infra-card h3 {
  margin: 0 0 10px;
}

.checklist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(11, 18, 32, 0.92);
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 4px;
  margin-top: 7px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
  flex: none;
}

.fineprint {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.report-box {
  margin-top: 10px;
  white-space: pre-wrap;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  max-height: 320px;
  overflow: auto;
}

.code-panel {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.code-panel-code {
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: 0.6px;
  color: rgba(11, 18, 32, 0.92);
}

.code-panel-copy {
  flex: none;
  white-space: nowrap;
}

.callout {
  margin-top: 22px;
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(79, 70, 229, 0.12);
  background: rgba(79, 70, 229, 0.06);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 70, 229, 0.14);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(79, 70, 229, 0.95);
}

.callout h3 {
  margin: 0 0 4px;
}

.callout p {
  margin: 0;
  color: var(--muted);
}

.callout-body {
  min-width: 0;
}

.faq {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 14px;
  transition: background 180ms ease, border-color 180ms ease;
}

.faq details[open] {
  background: var(--surface-2);
  border-color: rgba(79, 70, 229, 0.18);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  letter-spacing: -0.2px;
}

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

.faq .answer {
  margin-top: 10px;
  color: var(--muted);
}

.faq details[open] .answer {
  animation: fadeInUp 220ms ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.order-flow {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.order-intro h2 {
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.order-intro .fineprint {
  margin: 0;
}

.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-width: 0;
}

.contact-card h3 {
  margin: 0 0 12px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.order-step-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 900;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(11, 18, 32, 0.92);
  cursor: pointer;
  appearance: none;
}

.order-step-num {
  width: 26px;
  height: 26px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: rgba(79, 70, 229, 0.09);
  border: 1px solid rgba(79, 70, 229, 0.16);
  color: rgba(11, 18, 32, 0.92);
}

.order-step-chip.is-active {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(79, 70, 229, 0.08);
}

.order-panel {
  display: grid;
  gap: 12px;
}

.order-pack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.order-pack-card:hover {
  transform: translateY(-2px);
}

.order-pack-card.is-selected {
  border-color: rgba(79, 70, 229, 0.28);
  background: #ffffff;
  transform: translateY(-2px);
}

.order-pack-card.is-addon {
  border-style: dashed;
}

.order-pack-card.is-featured {
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.04);
}

.order-pack-card.is-featured.is-selected {
  border-color: rgba(79, 70, 229, 0.28);
  background: #ffffff;
}

.order-pack-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.order-pack-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--card-accent);
}

.order-pack-icon .icon {
  width: 22px;
  height: 22px;
}

.order-pack-body h3 {
  margin: 0 0 8px;
}

.order-pack-body p {
  margin: 0 0 14px;
}

.order-pack-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.order-pack-btn.is-selected {
  background: rgba(79, 70, 229, 0.09);
  border-color: rgba(79, 70, 229, 0.22);
}

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

.order-pack {
  cursor: pointer;
}

.order-pack-input:focus-visible + .order-pack {
  box-shadow: var(--ring);
  border-color: rgba(79, 70, 229, 0.35);
}

.order-pack-input:checked + .order-pack {
  border-color: rgba(79, 70, 229, 0.35);
  background: #ffffff;
  transform: translateY(-2px);
}

.order-summary-box {
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(79, 70, 229, 0.18);
  background: rgba(79, 70, 229, 0.06);
}

.order-cart-items {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.order-cart-list {
  display: grid;
  gap: 10px;
}

.order-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.order-cart-left {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.order-cart-left strong {
  letter-spacing: -0.2px;
}

.order-cart-left .fineprint {
  margin: 0;
}

.order-summary-lines {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.order-summary-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
  color: rgba(11, 18, 32, 0.92);
}

.order-summary-row span {
  color: var(--muted);
  font-weight: 800;
}

.order-summary-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
  font-weight: 950;
}

.order-trust {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
}

.order-trust .checklist {
  gap: 8px;
}

.order-extra {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
  display: grid;
  gap: 10px;
}

.order-extra h4 {
  margin: 0;
  letter-spacing: -0.2px;
}

.template-grid {
  display: grid;
  gap: 10px;
}

.template-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.template-card {
  --card-accent: var(--brand);
  position: relative;
  overflow: hidden;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(79, 70, 229, 0.12);
  background: rgba(79, 70, 229, 0.03);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.template-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--card-accent) 50%, transparent 100%);
  opacity: 0.6;
}

.template-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.18);
}

.template-input:focus-visible + .template-card {
  box-shadow: var(--ring);
  border-color: rgba(79, 70, 229, 0.35);
}

.template-input:checked + .template-card {
  border-color: rgba(79, 70, 229, 0.28);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(79, 70, 229, 0.12);
}

.template-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.template-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--card-accent);
}

.template-body {
  display: grid;
  gap: 4px;
}

.template-title {
  display: block;
  font-weight: 950;
  letter-spacing: -0.3px;
}

.template-desc {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.template-preview {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.65);
}

.template-preview-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.template-preview-bar--short {
  width: 65%;
}

.template-preview-bar--hero {
  height: 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.18), rgba(99, 102, 241, 0.06));
}

.template-preview-bar--hero-bold {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.22), rgba(99, 102, 241, 0.05));
}

.template-preview-bar--hero-pro {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.22), rgba(15, 23, 42, 0.05));
}

.order-website-template {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.order-website-template-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-website-template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.order-cart-change {
  white-space: nowrap;
}

body.tably-modal-open {
  overflow: hidden;
}

.tably-modal-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.tably-modal {
  width: min(980px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 40px 90px rgba(2, 6, 23, 0.4);
  padding: 16px;
}

.tably-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.tably-modal-title {
  margin: 0;
  letter-spacing: -0.2px;
  font-size: 1.15rem;
}

.tably-modal-subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}

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

.template-picker-card {
  border-radius: var(--radius);
  border: 1px solid rgba(79, 70, 229, 0.14);
  background: rgba(79, 70, 229, 0.03);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.template-picker-card.is-selected {
  border-color: rgba(79, 70, 229, 0.28);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(79, 70, 229, 0.12);
}

.template-picker-preview {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  aspect-ratio: 16 / 10;
}

.template-picker-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.template-picker-meta {
  display: grid;
  gap: 4px;
}

.template-picker-meta strong {
  font-weight: 950;
  letter-spacing: -0.2px;
}

.template-picker-meta span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.template-picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.template-showcase-card {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
}

.template-showcase-preview {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  aspect-ratio: 16 / 10;
}

.template-showcase-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.template-showcase-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
}

.template-showcase-selected {
  color: rgba(11, 18, 32, 0.92);
  font-weight: 900;
}

.order-summary-box p {
  margin: 0;
  color: var(--muted);
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 750;
  color: rgba(11, 18, 32, 0.9);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: rgba(79, 70, 229, 0.28);
  background: #ffffff;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.ad-slot {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(79, 70, 229, 0.28);
  background: rgba(79, 70, 229, 0.06);
}

.ad-slot-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(11, 18, 32, 0.82);
}

.ad-slot-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border);
  color: rgba(11, 18, 32, 0.92);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.chip:hover {
  text-decoration: none;
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.045);
  border-color: rgba(79, 70, 229, 0.18);
}

.footer {
  padding: 28px 0 16px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 12px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-title {
  font-weight: 950;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.footer-text {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-grid > .footer-col:nth-child(2) .footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 6px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer .fineprint {
  margin: 0;
}

.footer-legal {
  display: grid;
  gap: 4px;
  max-width: 90ch;
}

.footer-brand {
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  display: block;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease;
  color: rgba(11, 18, 32, 0.92);
  max-width: min(560px, calc(100% - 40px));
  text-align: center;
}

.toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
  margin-bottom: 14px;
}

.back-link:hover {
  color: var(--text);
  text-decoration: none;
}

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

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.product-media-card {
  align-self: start;
}

@media (min-width: 981px) {
  .product-media-card {
    position: sticky;
    top: 96px;
  }
}

.product-card {
  --card-accent: var(--brand);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--card-accent) 50%, transparent 100%);
  opacity: 0.55;
}

.product-float-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  gap: 8px;
  z-index: 2;
}

.product-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
}

.product-float-badge .icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery-main {
  --product-accent: var(--brand);
  min-height: 360px;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 28% 20%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.14), transparent 52%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 247, 0.88));
  position: relative;
  overflow: hidden;
}

.product-gallery-main::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background:
    radial-gradient(circle at 30% 40%, color-mix(in srgb, var(--product-accent) 26%, transparent), transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(79, 70, 229, 0.14), transparent 60%);
  opacity: 0.75;
  transform: rotate(18deg);
  pointer-events: none;
}

.product-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: 1;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
}

.product-gallery-thumb {
  flex: 0 0 auto;
  width: 110px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  cursor: pointer;
  display: grid;
  gap: 6px;
  scroll-snap-align: start;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.product-gallery-thumb:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.product-gallery-thumb:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.product-gallery-thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-gallery-thumb-label {
  font-size: 0.74rem;
  font-weight: 900;
  color: rgba(71, 85, 105, 0.92);
  letter-spacing: -0.1px;
  line-height: 1.2;
}

.product-gallery-thumb.is-active {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.product-visual {
  --product-accent: var(--brand);
  min-height: 360px;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 28% 20%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.18), transparent 52%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 247, 0.88));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background:
    radial-gradient(circle at 30% 40%, color-mix(in srgb, var(--product-accent) 28%, transparent), transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(79, 70, 229, 0.18), transparent 60%);
  opacity: 0.8;
  transform: rotate(18deg);
}

.product-visual-icon {
  width: 154px;
  height: 154px;
  color: var(--product-accent);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(2, 6, 23, 0.18));
}

.product-flash {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 950;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: rgba(151, 83, 3, 0.95);
}

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

.product-thumb {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.product-thumb-dot {
  color: color-mix(in srgb, var(--card-accent) 70%, var(--text));
  font-weight: 950;
  line-height: 1.1;
}

.product-thumb-text {
  font-size: 0.85rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.product-title {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 1.2vw + 1.15rem, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.4px;
}

.product-desc {
  margin: 0 0 14px;
  color: var(--muted);
}

.product-who {
  margin: -4px 0 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  display: grid;
  gap: 2px;
}

.product-who-label {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, 0.85);
}

.product-who-text {
  font-size: 0.9rem;
  font-weight: 850;
  color: rgba(11, 18, 32, 0.92);
}

.product-price-row {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1.65rem;
  font-weight: 950;
  color: var(--accent);
  letter-spacing: -0.6px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.product-cart-summary {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 14px;
}

.product-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-reassurance {
  display: grid;
  gap: 10px;
}

.product-reassurance-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.product-reassurance-item .icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: rgba(79, 70, 229, 0.95);
}

.product-reassurance-item strong {
  display: block;
  font-size: 0.92rem;
}

.product-reassurance-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

.product-options {
  margin-top: 16px;
}

.product-options h3 {
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

.product-below {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.product-faq-card {
  grid-column: 1 / -1;
}

.product-faq-card .faq {
  margin-top: 12px;
}

.product-list {
  margin: 0;
  padding-left: 18px;
}

.product-list li {
  margin: 8px 0;
}

.product-steps {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 18, 32, 0.92);
}

.product-steps li {
  margin: 10px 0;
  color: rgba(11, 18, 32, 0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 980px) {
  .template-picker-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .infra {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-below {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    margin: 0 auto;
    width: min(1120px, calc(100% - 40px));
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    display: none;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: grid;
  }

  .nav a {
    padding: 12px 12px;
  }

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

  .order-pack-grid {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    grid-template-columns: 1fr;
  }

  .code-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .code-panel-copy {
    width: 100%;
    justify-content: center;
  }

  .grid--cards,
  .grid--features,
  .grid--scenarios {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
