/* =========================================================================
   ClawPro.id — landing + shared styles
   Aesthetic: bright, professional SaaS. Light canvas, multi-colour accents,
   elevated (raised) cards with soft shadows. Fraunces display + Manrope body.
   ========================================================================= */

:root {
  /* Surfaces & ink (light theme) */
  --bg: #eef2fb;
  --bg-2: #e6ecf7;
  --ink: #f2f5fc;          /* subtle inset fills (inputs, chips) */
  --ink-2: #eaf0fa;
  --surface: #ffffff;       /* raised card face */
  --surface-2: #f7faff;
  --cream: #141a26;         /* primary text (dark on light) */
  --line: #e3e9f4;
  --line-2: #d3dcec;

  /* Text */
  --muted: #5a6577;
  --muted-2: #8a93a5;

  /* Colour system (kombinasi warna-warni) */
  --claw: #f0603f;          /* lobster coral — primary accent */
  --claw-deep: #d8482a;
  --amber: #f5a51b;
  --mint: #12b886;
  --blue: #3b82f6;
  --violet: #7c5cff;
  --pink: #ec4899;
  --cyan: #06b6d4;

  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1180px;

  /* Elevation — raised cards */
  --shadow-sm: 0 2px 6px -2px rgba(28, 45, 84, 0.12), 0 4px 14px -6px rgba(28, 45, 84, 0.10);
  --shadow: 0 10px 30px -12px rgba(28, 45, 84, 0.22), 0 4px 10px -6px rgba(28, 45, 84, 0.12);
  --shadow-lg: 0 28px 60px -24px rgba(28, 45, 84, 0.32), 0 10px 24px -12px rgba(28, 45, 84, 0.18);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmospheric layered background — soft colourful light wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 84% -8%, rgba(240, 96, 63, 0.14), transparent 60%),
    radial-gradient(760px 520px at 6% 4%, rgba(124, 92, 255, 0.12), transparent 58%),
    radial-gradient(700px 560px at 50% 108%, rgba(59, 130, 246, 0.10), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(28, 45, 84, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 45, 84, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 78%);
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.accent { color: var(--claw); }
.serif { font-family: "Fraunces", serif; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: linear-gradient(150deg, var(--claw), var(--claw-deep));
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s;
  background: var(--bg-btn); color: #fff; white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(240, 96, 63, 0.7);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(240, 96, 63, 0.7); }
.btn:active { transform: translateY(0); }
.btn.ghost { background: var(--surface); color: var(--cream); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn.ghost:hover { background: #fff; border-color: var(--claw); color: var(--claw); box-shadow: var(--shadow); }
.btn.block { width: 100%; justify-content: center; }
.btn.google { background: #fff; color: #1f1f1f; border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn.google:hover { box-shadow: var(--shadow); border-color: var(--blue); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--cream); }
.brand .logo { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px;
  background: linear-gradient(150deg, var(--claw), var(--claw-deep)); box-shadow: 0 6px 14px -6px rgba(240,96,63,.7), inset 0 1px 0 rgba(255,255,255,.35); color: #fff; }
.brand .logo svg { width: 21px; height: 21px; }
.brand .tag { font-size: 11px; font-weight: 700; color: var(--claw); background: rgba(240,96,63,.1); border: 1px solid rgba(240,96,63,.25); padding: 2px 7px; border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; margin-left: 8px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14.5px; transition: color 0.15s; }
.nav-links a:hover { color: var(--claw); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--claw);
  background: #fff; border: 1px solid rgba(240, 96, 63, 0.3);
  padding: 7px 13px; border-radius: 999px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--claw); box-shadow: 0 0 0 4px rgba(240,96,63,.18); }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--claw); }
.hero .lead { color: var(--muted); font-size: 18.5px; margin: 22px 0 32px; max-width: 30em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta .stat b { font-family: "Fraunces", serif; font-size: 26px; display: block; color: var(--cream); }
.hero-meta .stat span { color: var(--muted-2); font-size: 13px; }

/* Control-plane card (dark terminal — deliberate contrast on light canvas) */
.console {
  background: linear-gradient(180deg, #1c2230, #141a26);
  border: 1px solid #273042; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.console::after { content:""; position:absolute; inset:0; border-radius: inherit; pointer-events:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.console .bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid #232c3d; }
.console .bar i { width: 11px; height: 11px; border-radius: 50%; background: #2c3448; display: inline-block; }
.console .bar i:nth-child(1){ background:#ff5f57 } .console .bar i:nth-child(2){ background:#febc2e } .console .bar i:nth-child(3){ background:#28c840 }
.console .bar span { margin-left: 8px; color: #7b869a; font-size: 12.5px; }
.console .body { padding: 20px 20px 22px; font-family: "JetBrains Mono", monospace; font-size: 13px; line-height: 1.75; }
.console .body .p { color: var(--mint); }
.console .body .c { color: #eef2fc; }
.console .body .m { color: #9aa4b6; }
.console .body .k { color: var(--amber); }
.console .chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 20px 22px; }
.console .chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600;
  color: #eef2fc; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); padding: 6px 11px; border-radius: 999px; }
.console .chip svg { width: 14px; height: 14px; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head .kicker { color: var(--violet); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12.5px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 14px; color: var(--cream); }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 16px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); margin: 0 auto; }

/* ---------- Channels marquee ---------- */
.channels { padding: 40px 0; }
.channels .label { text-align: center; color: var(--muted-2); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.marquee-item svg { width: 26px; height: 26px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Features (bento) ---------- */
.features { padding: 84px 0; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(240, 96, 63, 0.1); border: 1px solid rgba(240, 96, 63, 0.22); margin-bottom: 18px; }
.card .ic svg { width: 24px; height: 24px; stroke: var(--claw); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 21px; margin-bottom: 9px; color: var(--cream); }
.card p { color: var(--muted); font-size: 15px; }
.card.wide { grid-column: span 2; }
.card.feature-hl { background:
  radial-gradient(460px 240px at 90% 0%, rgba(240,96,63,.10), transparent 60%),
  var(--surface); }
.card.feature-hl .glyph { position: absolute; right: -20px; bottom: -20px; opacity: 0.10; }
.card.feature-hl .glyph svg { width: 180px; height: 180px; stroke: var(--claw); fill: none; stroke-width: 1; }

/* Colourful icon chips per card position */
.bento .card:nth-child(2) .ic { background: rgba(124,92,255,.12); border-color: rgba(124,92,255,.24); }
.bento .card:nth-child(2) .ic svg { stroke: var(--violet); }
.bento .card:nth-child(3) .ic { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.24); }
.bento .card:nth-child(3) .ic svg { stroke: var(--blue); }
.bento .card:nth-child(4) .ic { background: rgba(18,184,134,.12); border-color: rgba(18,184,134,.24); }
.bento .card:nth-child(4) .ic svg { stroke: var(--mint); }
.bento .card:nth-child(5) .ic { background: rgba(245,165,27,.14); border-color: rgba(245,165,27,.28); }
.bento .card:nth-child(5) .ic svg { stroke: var(--amber); }

/* ---------- Pricing ---------- */
.pricing { padding: 84px 0; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.plan.featured {
  border-color: rgba(240, 96, 63, 0.45);
  background:
    radial-gradient(520px 280px at 50% -12%, rgba(240, 96, 63, 0.10), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow-lg);
}
.plan .flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(150deg, var(--claw), var(--claw-deep)); color: #fff; font-weight: 800; font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px; box-shadow: 0 8px 18px -8px rgba(240,96,63,.7); }
.plan .tier { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cream); }
.plan .tier .badge { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
.plan .tier .badge svg { width: 17px; height: 17px; }
.plan.pro .tier .badge { background: rgba(59,130,246,.14); } .plan.pro .tier .badge svg { stroke: var(--blue); fill:none; stroke-width:1.9; }
.plan.gold .tier .badge { background: rgba(245,165,27,.16); } .plan.gold .tier .badge svg { stroke: var(--amber); fill:none; stroke-width:1.9; }
.plan.bisnis .tier .badge { background: rgba(124,92,255,.15); } .plan.bisnis .tier .badge svg { stroke: var(--violet); fill:none; stroke-width:1.9; }
.plan .desc { color: var(--muted); font-size: 14px; margin: 12px 0 20px; min-height: 40px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price .amt { font-family: "Fraunces", serif; font-size: 40px; font-weight: 700; color: var(--cream); }
.plan .price .per { color: var(--muted-2); font-size: 14px; }
.plan .price-note { color: var(--muted-2); font-size: 13px; margin-bottom: 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--cream); }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.plan.pro li svg { stroke: var(--blue); } .plan.gold li svg { stroke: var(--amber); } .plan.bisnis li svg { stroke: var(--violet); }
.plan li.off { color: var(--muted-2); } .plan li.off svg { stroke: var(--muted-2); }
.plan .btn { margin-top: auto; }

/* ---------- Integration ---------- */
.integrate { padding: 84px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step .n { font-family: "Fraunces", serif; font-size: 15px; color: var(--claw); font-weight: 700; }
.step h4 { font-size: 18px; margin: 10px 0 8px; font-family: "Fraunces", serif; color: var(--cream); }
.step p { color: var(--muted); font-size: 14.5px; }
.integrate .cli { margin-top: 34px; background: linear-gradient(180deg, #1c2230, #141a26); border: 1px solid #273042; border-radius: 14px;
  padding: 18px 22px; font-family: "JetBrains Mono", monospace; font-size: 14px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: #eef2fc; box-shadow: var(--shadow-lg); }
.integrate .cli .p { color: var(--mint); } .integrate .cli .copy { margin-left: auto; color: #9aa4b6; cursor: pointer; font-size: 12px; border: 1px solid rgba(255,255,255,.14); padding: 5px 10px; border-radius: 8px; }
.integrate .cli .copy:hover { color: #fff; border-color: var(--claw); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 48px 0 40px; margin-top: 40px; }
.foot { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: center; }
.foot p { color: var(--muted-2); font-size: 14px; }
.foot .links { display: flex; gap: 22px; }
.foot .links a { color: var(--muted); font-size: 14px; } .foot .links a:hover { color: var(--claw); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(20, 26, 38, 0.45); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fade 0.2s ease; }
@keyframes fade { from { opacity: 0; } }
.modal {
  width: min(460px, 100%); background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 32px; position: relative; animation: pop 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pop { from { transform: translateY(14px) scale(0.98); opacity: 0; } }
.modal .close { position: absolute; top: 18px; right: 18px; background: var(--ink); border: 1px solid var(--line-2);
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; cursor: pointer; color: var(--muted); }
.modal .close:hover { color: var(--claw); border-color: var(--claw); }
.modal .close svg { width: 17px; height: 17px; }
.modal h3 { font-size: 26px; color: var(--cream); }
.modal .sub { color: var(--muted); font-size: 14.5px; margin: 8px 0 22px; }
.auth-tabs { display: flex; gap: 6px; padding: 5px; margin-bottom: 20px; background: var(--ink);
  border: 1px solid var(--line-2); border-radius: 12px; }
.auth-tab { flex: 1; padding: 9px 12px; border: 0; border-radius: 9px; background: transparent; cursor: pointer;
  color: var(--muted); font-family: inherit; font-size: 14px; font-weight: 600; transition: background 0.15s, color 0.15s; }
.auth-tab:hover { color: var(--cream); }
.auth-tab.active { background: var(--claw); color: #fff; }
.modal .plan-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 18px; border: 1px solid var(--line-2); background: var(--ink); }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field .input-wrap { position: relative; display: flex; align-items: center; }
.field .input-wrap svg { position: absolute; left: 13px; width: 17px; height: 17px; stroke: var(--muted-2); fill: none; stroke-width: 2; pointer-events: none; }
.field input {
  width: 100%; padding: 12px 14px 12px 40px; background: var(--ink); border: 1px solid var(--line-2);
  border-radius: 11px; color: var(--cream); font-family: inherit; font-size: 15px; transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus { outline: none; background: #fff; border-color: var(--claw); box-shadow: 0 0 0 3px rgba(240, 96, 63, 0.14); }
.field input.err { border-color: #f0603f; box-shadow: 0 0 0 3px rgba(240, 96, 63, 0.16); }
.field .msg { font-size: 12.5px; color: var(--claw); margin-top: 6px; min-height: 1px; }
.divider-or { display: flex; align-items: center; gap: 14px; margin: 20px 0 18px; color: var(--muted-2); font-size: 13px; }
.divider-or::before, .divider-or::after { content: ""; height: 1px; background: var(--line-2); flex: 1; }
.form-note { color: var(--muted-2); font-size: 12px; text-align: center; margin-top: 16px; line-height: 1.5; }

/* ---------- Toast ---------- */
.toast-host { position: fixed; top: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--surface); border: 1px solid var(--line-2); border-left: 3px solid var(--claw);
  border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow-lg); max-width: 340px;
  display: flex; gap: 11px; align-items: flex-start; animation: slidein 0.28s cubic-bezier(0.2, 0.8, 0.2, 1); }
.toast.ok { border-left-color: var(--mint); } .toast.err { border-left-color: var(--claw); }
.toast svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.toast .t-title { font-weight: 700; font-size: 14px; color: var(--cream); } .toast .t-body { color: var(--muted); font-size: 13px; margin-top: 2px; word-break: break-word; }
.toast .t-body a { color: var(--claw); text-decoration: underline; }
@keyframes slidein { from { transform: translateX(24px); opacity: 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .card.wide { grid-column: span 2; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan.featured { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; } .card.wide { grid-column: span 1; }
  .hero { padding: 54px 0 40px; }
  .modal { padding: 24px; }
}

/* =========================================================================
   ✦ ClawPro.id — Premium upgrade layer (v2)
   Richer gradient system, glass surfaces, luminous accents, colourful cards,
   and the new password field UI. Appended so the cascade elevates the base.
   ========================================================================= */
:root {
  --grad-brand: linear-gradient(135deg, #ff7a4d 0%, #f0603f 42%, #e0417f 100%);
  --grad-iris: linear-gradient(135deg, #7c5cff 0%, #3b82f6 50%, #06b6d4 100%);
  --grad-sun: linear-gradient(135deg, #f5a51b 0%, #f0603f 100%);
  --grad-mesh-1: rgba(240, 96, 63, 0.16);
  --grad-mesh-2: rgba(124, 92, 255, 0.16);
  --grad-mesh-3: rgba(6, 182, 212, 0.13);
  --grad-mesh-4: rgba(236, 72, 153, 0.12);
  --glass: rgba(255, 255, 255, 0.66);
  --ring: 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  --shadow-glow: 0 30px 80px -30px rgba(124, 92, 255, 0.35), 0 12px 30px -14px rgba(240, 96, 63, 0.28);

  /* Platinum / silver identity accents (brand wordmark + logo bezel) */
  --silver-1: #f7f9fc;
  --silver-2: #d7dde8;
  --silver-3: #aab3c4;
  --silver-4: #7e879a;
  --grad-silver: linear-gradient(155deg, #ffffff 0%, #dfe5ee 34%, #b3bccd 66%, #8992a6 100%);
  --grad-silver-soft: linear-gradient(155deg, #ffffff 0%, #e8edf5 50%, #cdd5e2 100%);
  /* Wordmark gradient — flows strictly left → right across "ClawPro.id". */
  --grad-wordmark: linear-gradient(90deg, #f0603f 0%, #e0417f 46%, #7c5cff 100%);
}

/* ---- Living gradient mesh background ---- */
body::before {
  background:
    radial-gradient(880px 620px at 82% -8%, var(--grad-mesh-1), transparent 60%),
    radial-gradient(760px 540px at 4% 2%, var(--grad-mesh-2), transparent 58%),
    radial-gradient(720px 600px at 92% 78%, var(--grad-mesh-4), transparent 60%),
    radial-gradient(720px 560px at 40% 112%, var(--grad-mesh-3), transparent 60%),
    var(--bg);
  animation: meshFloat 22s ease-in-out infinite alternate;
}
@keyframes meshFloat {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(0, -1.4%, 0) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

/* ---- Brand wordmark — logo-free, gradient "ClawPro.id" ---- */
.brand { gap: 10px; }
/* The whole wordmark reads as one clipped left→right gradient word. */
.brand .wordmark {
  background: var(--grad-wordmark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 800; letter-spacing: -0.02em; font-size: 1.06em;
  padding-right: 1px; /* stop the clip cropping the final glyph */
}
/* Refined silver tag pill (Admin / Member portal labels). */
.brand .tag {
  color: var(--silver-4);
  background: var(--grad-silver-soft);
  border: 1px solid var(--silver-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 2px 6px -3px rgba(38,50,78,.35);
}

/* ---- Glass nav ---- */
.nav { background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66)); border-bottom: 1px solid rgba(227,233,244,.9); }

/* ---- Gradient display headings ---- */
.hero h1 em { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; }
.section-head h2 .accent, .grad-text {
  background: var(--grad-iris); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.eyebrow { background: linear-gradient(180deg, #fff, #fff6f3); box-shadow: 0 6px 18px -10px rgba(240,96,63,.5), var(--ring); }

/* ---- Premium buttons: sheen sweep ---- */
.btn { position: relative; overflow: hidden; --bg-btn: var(--grad-brand); box-shadow: 0 12px 28px -12px rgba(240, 96, 63, .75), inset 0 1px 0 rgba(255,255,255,.28); }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn:hover::after { left: 130%; }
.btn.ghost, .btn.google { --bg-btn: none; box-shadow: var(--shadow-sm), var(--ring); }
.btn.ghost:hover { border-color: transparent; box-shadow: 0 14px 30px -14px rgba(240,96,63,.5), var(--ring); }

/* ---- Colourful, luminous cards ---- */
.card, .plan, .step, .console, .modal, .toast, .login-card, .panel, .stat-card {
  backdrop-filter: blur(2px);
}
.card { background: linear-gradient(180deg, #fff, var(--surface-2)); }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .8;
}
.card:hover { box-shadow: var(--shadow-glow); transform: translateY(-6px); }
.bento .card:nth-child(1):hover { box-shadow: 0 30px 70px -28px rgba(240,96,63,.4); }
.bento .card:nth-child(2):hover { box-shadow: 0 30px 70px -28px rgba(124,92,255,.42); }
.bento .card:nth-child(3):hover { box-shadow: 0 30px 70px -28px rgba(59,130,246,.42); }
.bento .card:nth-child(4):hover { box-shadow: 0 30px 70px -28px rgba(18,184,134,.42); }
.bento .card:nth-child(5):hover { box-shadow: 0 30px 70px -28px rgba(245,165,27,.42); }
.card .ic { box-shadow: inset 0 1px 0 rgba(255,255,255,.6); }

/* ---- Pricing: featured plan gets a gradient ring + float ---- */
.plan.gold.featured { box-shadow: var(--shadow-glow); }
.plan.gold.featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px; z-index: 0;
  background: var(--grad-sun);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan.gold.featured > * { position: relative; z-index: 1; }
.plan .flag { background: var(--grad-sun); box-shadow: 0 10px 22px -8px rgba(245,165,27,.75); }
.plan.pro:hover { box-shadow: 0 28px 64px -26px rgba(59,130,246,.4); }
.plan.bisnis:hover { box-shadow: 0 28px 64px -26px rgba(124,92,255,.4); }
.plan .price .amt { background: linear-gradient(135deg, #1b2536, #46527a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- Section kicker chips get colour ---- */
.section-head .kicker { display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(124,92,255,.1); border: 1px solid rgba(124,92,255,.24); }

/* ---- Divider glow ---- */
.divider { height: 2px; background: linear-gradient(90deg, transparent, rgba(124,92,255,.35), rgba(240,96,63,.35), transparent); }

/* =========================================================================
   Password field — toggle + strength meter
   ========================================================================= */
.field .input-wrap:has(.toggle-pw) input { padding-right: 46px; }
.toggle-pw {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border: none; background: transparent; cursor: pointer;
  display: grid; place-items: center; color: var(--muted-2); border-radius: 8px; padding: 0;
  transition: color .15s, background .15s;
}
.toggle-pw:hover { color: var(--claw); background: rgba(240,96,63,.08); }
.field .input-wrap .toggle-pw svg { position: static; left: auto; width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }

.strength { display: flex; align-items: center; gap: 10px; margin-top: 9px; min-height: 12px; }
.strength .bars { display: flex; gap: 5px; flex: 1; }
.strength .bars i { flex: 1; height: 5px; border-radius: 999px; background: var(--line-2); transition: background .25s ease; }
.strength .lbl { font-size: 12px; font-weight: 700; color: var(--muted-2); min-width: 62px; text-align: right; }

/* Modal is taller now (2 extra fields) — keep it centred yet scrollable. */
.modal-backdrop { overflow-y: auto; }
.modal-backdrop.open { align-items: flex-start; justify-content: center; }
.modal { margin: auto; }

/* =========================================================================
   ✦ ClawPro.id — Modern layer (v3)
   Mobile nav drawer, FAQ accordion, multi-column footer, cross-device polish.
   ========================================================================= */

/* ---- Mobile nav toggle (hidden on desktop) ---- */
.nav-toggle {
  display: none; width: 42px; height: 42px; margin-left: auto; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--cream);
  cursor: pointer; place-items: center; box-shadow: var(--shadow-sm);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---- Mobile nav drawer ---- */
.mobile-nav {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 55;
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
  padding: 14px 20px 22px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-14px); opacity: 0; transition: transform .24s ease, opacity .24s ease;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a[data-mnav] {
  font-weight: 700; font-size: 16px; color: var(--cream); padding: 13px 12px;
  border-radius: 11px; transition: background .15s, color .15s;
}
.mobile-nav a[data-mnav]:hover { background: var(--ink); color: var(--claw); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); }

/* ---- FAQ accordion ---- */
.faq { padding: 84px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: linear-gradient(180deg, #fff, var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--line-2); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 18px 0; font-family: "Fraunces", serif; font-size: 17.5px; font-weight: 600; color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { position: relative; width: 18px; height: 18px; flex: none; }
.faq-item .chev::before, .faq-item .chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 2.3px; border-radius: 2px;
  background: var(--claw); transform: translate(-50%, -50%); transition: transform .25s ease;
}
.faq-item .chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .chev::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item p { color: var(--muted); font-size: 14.8px; padding: 0 0 20px; max-width: 46em; }

/* ---- Multi-column footer ---- */
.foot { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; align-items: start; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 30em; margin-top: 2px; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--muted);
  box-shadow: var(--shadow-sm); transition: color .15s, border-color .15s, transform .15s;
}
.foot-social a svg { width: 18px; height: 18px; }
.foot-social a:hover { color: var(--claw); border-color: var(--claw); transform: translateY(-2px); }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot-col h5 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; margin: 0 0 14px; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: color .15s; }
.foot-col a:hover { color: var(--claw); }
.foot-base {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line);
}
.foot-base p { color: var(--muted-2); font-size: 13px; }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { color: var(--muted-2); font-size: 13px; } .foot-legal a:hover { color: var(--claw); }

/* ---- Cross-device polish ---- */
@media (max-width: 980px) {
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .foot { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero .lead { font-size: 16.5px; }
  .hero-meta { gap: 18px; }
  .hero-meta .stat b { font-size: 22px; }
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 18px; }
  .faq-item summary { font-size: 16px; }
  .section-head { margin-bottom: 34px; }
  .features, .pricing, .integrate, .faq { padding: 56px 0; }
}
@media (max-width: 380px) {
  .foot-cols { grid-template-columns: 1fr; }
  .brand .tag { display: none; }
}

/* ---------- Docs explainer modal ---------- */
.modal.docs-modal { width: min(640px, 100%); }
.docs-list { display: grid; gap: 14px; margin: 4px 0 4px; }
.docs-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: 14px;
  background: var(--surface-2); border: 1px solid var(--line); transition: border-color .15s, transform .15s, box-shadow .15s; }
.docs-item:hover { border-color: var(--line-2); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.docs-item .di-ic { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  color: #fff; background: var(--grad-wordmark); box-shadow: 0 8px 18px -10px rgba(124,92,255,.7); }
.docs-item .di-ic svg { width: 20px; height: 20px; }
.docs-item b { color: var(--cream); font-size: 15px; display: block; }
.docs-item p { color: var(--muted); font-size: 13.5px; margin: 3px 0 0; line-height: 1.55; }
.modal.docs-modal .cli { margin-top: 6px; background: linear-gradient(180deg, #1c2230, #141a26); border: 1px solid #273042;
  border-radius: 14px; padding: 15px 18px; font-family: "JetBrains Mono", monospace; font-size: 13.5px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: #eef2fc; }
.modal.docs-modal .cli .p { color: var(--mint); }
@media (max-width: 560px) { .modal.docs-modal { width: 100%; } }

/* =========================================================================
   ✦ ClawPro.id — Footer & brand polish (v4)
   Colourful, professional footer base: gradient wordmark, platinum-silver
   side text, a touch larger. Plus a luminous top rule on the footer.
   ========================================================================= */

/* Luminous gradient rule across the top of the footer. */
footer { position: relative; }
footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124,92,255,.5), rgba(240,96,63,.6), rgba(245,165,27,.5), transparent);
  opacity: .8;
}

/* The footer base line reads bigger and more deliberate. */
.foot-base { margin-top: 40px; padding-top: 26px; }
.foot-copy {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  /* Side text in platinum silver. */
  color: var(--silver-4);
}
/* The wordmark inside the copyright flows the brand gradient left→right. */
.foot-word {
  font-weight: 800; letter-spacing: -0.01em; font-size: 1.06em;
  background: var(--grad-wordmark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* "· powered by OpenClaw" — brushed-silver gradient sheen. */
.foot-sub {
  font-weight: 700;
  background: var(--grad-silver);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Legal links: silver by default, warm coral on hover, slightly larger. */
.foot-legal { gap: 24px; }
.foot-legal a {
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  color: var(--silver-4); transition: color .15s, transform .15s;
}
.foot-legal a:hover { color: var(--claw); transform: translateY(-1px); }

/* Brand wordmark in the top nav a hair larger for presence. */
.nav .brand .wordmark { font-size: 1.12em; }

@media (max-width: 560px) {
  .foot-copy { font-size: 14px; }
  .foot-base { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* =========================================================================
   ✦ ClawPro.id — Elegant upgrade layer (v5)
   Seamless channel marquee · "What's inside the Docs" section with tap-to-lift
   colour cards · oversized footer wordmark · cross-section polish.
   ========================================================================= */

/* ---- Seamless marquee (no gap on the right edge) ----
   Equal per-item margin (instead of flex `gap`) keeps every copy exactly the
   same width, so translateX(-50%) lands one loop point precisely on the next
   — the row of logos never breaks. */
.marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { gap: 0; }
.marquee-item {
  margin-right: 52px; padding: 9px 0; opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}
.marquee-item:hover { opacity: 1; transform: translateY(-2px); }
.marquee-item svg { filter: drop-shadow(0 4px 10px rgba(28,45,84,.14)); }

/* ---- "What's inside the Docs" section ---- */
.docs { padding: 84px 0; }
.docs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.doc-card {
  --dc: var(--claw); --dcs: 240, 96, 63;
  text-align: left; font-family: inherit; cursor: pointer; color: var(--cream);
  display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(180deg, #fff, var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px 22px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .24s cubic-bezier(.2,.8,.2,1), box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
/* Accent rail that ignites when the card is lifted. */
.doc-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--dc); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease; opacity: .9;
}
.doc-card:hover { transform: translateY(-4px); border-color: rgba(var(--dcs), .4); box-shadow: var(--shadow); }
.doc-card:focus-visible { outline: none; border-color: var(--dc); box-shadow: 0 0 0 3px rgba(var(--dcs), .2); }

.doc-card .dc-ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  color: var(--dc); background: rgba(var(--dcs), .1); border: 1px solid rgba(var(--dcs), .24);
  margin-bottom: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  transition: background .24s ease, color .24s ease, box-shadow .24s ease, border-color .24s ease, transform .24s ease;
}
.doc-card .dc-ic svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.doc-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--cream); transition: color .24s ease; }
.doc-card p { color: var(--muted); font-size: 14.5px; }
.doc-card .dc-body { flex: 1; }
.doc-card .dc-go {
  align-self: flex-end; margin-top: 16px; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; color: var(--dc);
  background: rgba(var(--dcs), .08); border: 1px solid rgba(var(--dcs), .2);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .24s ease, transform .24s ease, background .24s ease, color .24s ease;
}
.doc-card .dc-go svg { width: 17px; height: 17px; }
.doc-card:hover .dc-go { opacity: 1; transform: translateX(0); }

/* Per-card colour identity (matches the bento / pricing palette). */
.doc-card:nth-child(1) { --dc:#f0603f; --dcs:240,96,63; }
.doc-card:nth-child(2) { --dc:#7c5cff; --dcs:124,92,255; }
.doc-card:nth-child(3) { --dc:#3b82f6; --dcs:59,130,246; }
.doc-card:nth-child(4) { --dc:#12b886; --dcs:18,184,134; }
.doc-card:nth-child(5) { --dc:#f5a51b; --dcs:245,165,27; }
.doc-card:nth-child(6) { --dc:#06b6d4; --dcs:6,182,212; }

/* Tapped → the card lifts (timbul) and fills with its own colour. */
.doc-card.active {
  transform: translateY(-8px);
  border-color: rgba(var(--dcs), .55);
  background:
    radial-gradient(420px 200px at 12% -10%, rgba(var(--dcs), .18), transparent 60%),
    linear-gradient(180deg, rgba(var(--dcs), .10), rgba(var(--dcs), .03));
  box-shadow: 0 34px 66px -26px rgba(var(--dcs), .6), 0 12px 26px -14px rgba(var(--dcs), .45);
}
.doc-card.active::before { transform: scaleX(1); }
.doc-card.active .dc-ic {
  color: #fff; border-color: transparent;
  background: linear-gradient(150deg, rgba(var(--dcs), 1), rgba(var(--dcs), .78));
  box-shadow: 0 14px 26px -8px rgba(var(--dcs), .7), inset 0 1px 0 rgba(255,255,255,.45);
  transform: scale(1.05);
}
.doc-card.active h3 { color: var(--dc); }
.doc-card.active .dc-go { opacity: 1; transform: translateX(0); background: var(--dc); color: #fff; border-color: transparent; }

@media (max-width: 900px) { .docs-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .docs-cards { grid-template-columns: 1fr; } .docs { padding: 56px 0; } }

/* ---- Oversized, elegant footer wordmark ---- */
.foot-hero { text-align: center; padding: 10px clamp(16px, 4vw, 48px) 30px; }
.foot-hero-word {
  display: block; font-family: "Fraunces", Georgia, serif; font-weight: 700;
  font-size: clamp(52px, 15.5vw, 208px); line-height: .92; letter-spacing: -0.04em;
  background: linear-gradient(105deg, #c6cfe0 0%, #8b93a8 26%, #f0603f 54%, #e0417f 74%, #7c5cff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding: 0 6px 6px;
  filter: drop-shadow(0 20px 44px rgba(124, 92, 255, .18));
}
.foot-hero-sub {
  display: block; max-width: 44em; margin: 18px auto 0;
  color: var(--muted); font-size: clamp(14px, 1.6vw, 16px); font-weight: 500; line-height: 1.6;
}
@media (max-width: 560px) {
  .foot-hero { padding: 6px 12px 20px; }
  .foot-hero-word { letter-spacing: -0.03em; }
  .foot-hero-sub { font-size: 13.5px; margin-top: 12px; }
}

/* ---- Cross-section elegance polish ---- */
.section-head .kicker { box-shadow: 0 4px 14px -8px rgba(124, 92, 255, .5); }
.section-head h2 { letter-spacing: -0.025em; }
.card, .plan, .step, .doc-card { will-change: transform; }
.step { transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, border-color .22s ease; }
.step:hover { border-color: var(--line-2); }
/* Consistent, gentle focus ring for keyboard users across interactive elements. */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid rgba(124, 92, 255, .5); outline-offset: 3px; border-radius: 6px;
}

