:root {
  --bg: #101614;
  --bg-soft: #171e1b;
  --surface: #1c2421;
  --surface-2: #242e2a;
  --text: #e8efeb;
  --muted: #9aada4;
  --accent: #2fbf9a;
  --accent-deep: #1a9a7a;
  --accent-glow: rgba(47, 191, 154, 0.28);
  --accent-sky: #4a9fc4;
  --accent-mint: #5ec4a6;
  --line: rgba(232, 239, 235, 0.1);
  --sand: #8a9e95;
  --danger: #e06060;
  --warm: #c4a574;
  --radius: 14px;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  --page-max: 1480px;
  --page-pad: clamp(12px, 2vw, 22px);
  --header-bg: rgba(12, 18, 16, 0.88);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; width: 0; height: 0; }

.site-kraft,
.site-kraft * {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-kraft::-webkit-scrollbar,
.site-kraft *::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 8% -12%, rgba(47, 191, 154, 0.14), transparent 55%),
    radial-gradient(780px 460px at 100% 0%, rgba(74, 159, 196, 0.1), transparent 52%),
    radial-gradient(700px 480px at 50% 100%, rgba(196, 165, 116, 0.06), transparent 55%),
    linear-gradient(180deg, #0c1210 0%, var(--bg) 40%, #0e1512 100%);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: drift 18s ease-in-out infinite;
  will-change: transform;
}

.orb-a {
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  left: -8%;
  top: -12%;
  background: radial-gradient(circle, rgba(47, 191, 154, 0.5), transparent 70%);
}

.orb-b {
  width: min(38vw, 400px);
  height: min(38vw, 400px);
  right: -6%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(74, 159, 196, 0.35), transparent 70%);
  animation-delay: -6s;
}

.orb-c {
  width: min(32vw, 340px);
  height: min(32vw, 340px);
  left: 42%;
  top: 48%;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.22), transparent 70%);
  animation-delay: -11s;
  animation-duration: 22s;
}

.mesh { display: none; }

.topbar,
main,
.site-footer,
.modal { position: relative; z-index: 1; }

main:not(.guide-layout) {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
  box-sizing: border-box;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 56px);
  padding-top: max(14px, env(safe-area-inset-top));
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px) saturate(1.2);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  z-index: 20;
  animation: barIn 0.55s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: block;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-text em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: min(240px, 55vw);
  object-fit: contain;
  display: block;
}

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

.top-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.top-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  color: var(--text);
}

.top-nav a:hover::after,
.top-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.topbar .btn-primary {
  background: var(--accent);
  color: #0a1210;
  box-shadow: 0 8px 20px var(--accent-glow);
}

.topbar .btn-primary:hover {
  background: #45d0ac;
  color: #0a1210;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #0a1210;
  box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-primary:hover {
  background: #45d0ac;
  box-shadow: 0 14px 34px rgba(47, 191, 154, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(232, 239, 235, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(47, 191, 154, 0.45);
  background: rgba(47, 191, 154, 0.08);
  color: var(--text);
  box-shadow: none;
}

.btn-sm { padding: 9px 14px; font-size: 0.84rem; }

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  padding-block: clamp(36px, 6vw, 64px);
  padding-inline: max(var(--page-pad), calc((100vw - min(100vw, var(--page-max))) / 2 + var(--page-pad)));
  overflow: hidden;
  background: #0e1412;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(196, 165, 116, 0.08), transparent 60%),
    radial-gradient(ellipse 55% 50% at 15% 70%, rgba(47, 191, 154, 0.1), transparent 55%),
    linear-gradient(160deg, #101816 0%, #0c1210 50%, #121816 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform, opacity;
}

.hero-glow-a {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  left: -8%;
  top: -20%;
  background: radial-gradient(circle, rgba(47, 191, 154, 0.55), transparent 70%);
  animation: heroDrift 14s ease-in-out infinite;
}

.hero-glow-b {
  width: min(42vw, 400px);
  height: min(42vw, 400px);
  right: 5%;
  bottom: -15%;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.35), transparent 70%);
  animation: heroDrift 18s ease-in-out infinite reverse;
  animation-delay: -4s;
}

.hero-glow-c {
  width: min(36vw, 340px);
  height: min(36vw, 340px);
  right: 28%;
  top: 10%;
  background: radial-gradient(circle, rgba(74, 159, 196, 0.28), transparent 70%);
  animation: heroPulse 10s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(232, 239, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 239, 235, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  animation: heroGrid 28s linear infinite;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-media {
  order: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(47, 191, 154, 0.22),
    0 28px 60px rgba(0, 0, 0, 0.55);
  border: none;
  opacity: 0;
  animation: fadeStage 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
  background: #121816;
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(16, 22, 20, 0.35), transparent 40%),
    linear-gradient(180deg, transparent 45%, rgba(12, 18, 16, 0.55) 100%);
  mix-blend-mode: multiply;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(12, 18, 16, 0.55);
  background: linear-gradient(120deg, rgba(47, 191, 154, 0.08), transparent 40%, rgba(196, 165, 116, 0.06));
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.78) saturate(0.78) contrast(1.08);
}

.hero-media:hover img {
  transform: scale(1.02);
  filter: brightness(0.84) saturate(0.85) contrast(1.06);
}

@keyframes heroDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.08); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.12); }
}

@keyframes heroGrid {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

.hero-copy {
  order: 1;
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 28rem;
  background: none;
}

.hero-eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  animation: rise 0.7s ease 0.12s forwards;
}

.brand-mark {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--text);
  background: linear-gradient(120deg, #f2f7f4 10%, var(--accent) 55%, var(--warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: rise 0.7s ease 0.08s forwards;
}

.hero-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
  max-width: 28ch;
  opacity: 0;
  animation: rise 0.7s ease 0.16s forwards;
}

.lede {
  margin: 12px 0 0;
  max-width: 34ch;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--muted);
  opacity: 0;
  animation: rise 0.7s ease 0.24s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  opacity: 0;
  animation: rise 0.7s ease 0.32s forwards;
}

.section {
  padding: clamp(56px, 8vh, 88px) clamp(20px, 3vw, 36px);
}

.section[id] { scroll-margin-top: 80px; }

.section-alt {
  background: linear-gradient(180deg, rgba(28, 36, 33, 0.9) 0%, rgba(20, 28, 25, 0.95) 100%);
  border: none;
  border-radius: 0;
  margin: 0;
  border-block: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: unset;
}

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(32px, 5vh, 52px);
}

.section-head h2,
.onboard-band h2,
.about-copy h3,
.about-teaser h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.about-copy h3 {
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.section-head p,
.onboard-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  line-height: 1.6;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(11, 154, 124, 0.16);
  padding-top: clamp(28px, 4vh, 40px);
}

.steps li {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.steps li:hover {
  transform: translateY(-3px);
  background: var(--surface-2);
  border-color: rgba(47, 191, 154, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.steps li:nth-child(2):hover {
  background: var(--surface-2);
  border-color: rgba(74, 159, 196, 0.35);
}

.steps .icon-wrap {
  margin-bottom: 16px;
}

.step-num {
  display: block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.steps h3,
.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.steps p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(12, 138, 112, 0.16);
}

.feature-grid article {
  padding: 28px 24px 28px 0;
  border: none;
  border-bottom: 1px solid rgba(12, 138, 112, 0.12);
  background: none;
}

.feature-grid .icon-wrap {
  margin-bottom: 16px;
}

.feature-grid article:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.feature-grid article:nth-child(even) {
  padding-left: 32px;
}

.feature-grid article:hover h3 { color: var(--accent-deep); }

.page-hero {
  padding: clamp(48px, 9vh, 80px) 0 clamp(20px, 3vh, 32px);
  max-width: 44rem;
}

.page-hero h1,
.page-hero .brand-mark {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.page-lede {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  max-width: 42ch;
  line-height: 1.6;
}

.about-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0;
  border: none;
  background: none;
  max-width: 56rem;
}

.about-teaser p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.about-copy,
.about-side {
  padding: 0;
  border: none;
  background: none;
}

.about-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.about-tag {
  margin: 0 !important;
  color: var(--accent-deep) !important;
  font-size: 0.88rem !important;
  font-weight: 600;
}

.about-copy > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: none;
}

.about-points {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(47, 191, 154, 0.12);
  border: 1px solid rgba(47, 191, 154, 0.28);
  color: var(--accent);
  margin-bottom: 0;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.steps li:hover .icon-wrap,
.feature-grid article:hover .icon-wrap {
  transform: scale(1.06);
  background: rgba(47, 191, 154, 0.2);
  box-shadow: 0 8px 20px rgba(47, 191, 154, 0.15);
}

.icon-wrap svg {
  width: 19px;
  height: 19px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wrap.sm {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.icon-wrap.sm svg { width: 16px; height: 16px; }

.icon-wrap.lg {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.icon-wrap.lg svg { width: 24px; height: 24px; }

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

.about-side-title {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
}

.product-item.highlight strong { color: var(--accent-deep); }

.product-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.product-item span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

.about-contact {
  margin: 22px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.about-contact a {
  color: var(--text);
  text-decoration: none;
}

.about-contact a:hover { color: var(--accent-deep); }

.onboard-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px);
  border: 1px solid rgba(47, 191, 154, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, #1a2824 0%, #1e2a32 55%, #1a2420 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onboard-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(11, 154, 124, 0.16);
}

.onboard-text {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 36rem;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding: 36px var(--page-pad) 48px;
  box-sizing: border-box;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
  background: #0c1210;
}

.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer a:hover { color: var(--accent); }
.footer-sep { opacity: 0.45; }

.download-hero .brand-mark { margin-bottom: 12px; }

.download-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.download-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.download-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-steps {
  max-width: 36rem;
  padding: 0 0 clamp(56px, 10vh, 88px);
}

.download-steps h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 400;
}

.download-steps ol {
  margin: 0 0 22px;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.download-steps li { margin-bottom: 8px; }

.download-note {
  margin: 0;
  color: var(--sand);
  font-size: 0.88rem;
}

.modal[hidden] { display: none !important; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 38, 31, 0.35);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(100%, 540px);
  max-height: min(94vh, 820px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px 22px;
  box-shadow: 0 28px 80px rgba(18, 38, 31, 0.18);
  animation: modalIn 0.28s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover { color: var(--text); }

.modal-card h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
}

.modal-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}

.field { margin-bottom: 12px; }

.field label,
.field-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 6px;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  padding: 12px 13px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: #f7fbf9;
  color: var(--text);
  font: inherit;
}

.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: #fff;
}

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

.slot-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #f7fbf9;
  color: var(--text);
  border-radius: 11px;
  padding: 11px 8px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.slot-btn:hover:not(:disabled) { border-color: var(--accent); }

.slot-btn.is-selected {
  background: rgba(15, 159, 130, 0.12);
  border-color: var(--accent);
  color: var(--accent-deep);
}

.slot-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slot-hint {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-error {
  color: var(--danger);
  font-size: 0.88rem;
  margin: 0 0 10px;
}

.form-ok {
  background: rgba(15, 159, 130, 0.08);
  border: 1px solid rgba(15, 159, 130, 0.22);
  border-radius: 12px;
  padding: 14px;
  margin: 0 0 12px;
}

.form-ok strong {
  display: block;
  color: var(--accent-deep);
  margin-bottom: 4px;
}

.form-ok p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

@keyframes fadeStage {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

@keyframes sheen {
  from { transform: translateX(-40%) rotate(12deg); }
  to { transform: translateX(90%) rotate(12deg); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, 3%) scale(1.03); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .topbar .btn-sm { display: none; }

  .top-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    z-index: 30;
  }

  .top-nav.is-open {
    display: flex;
    animation: navDrop 0.28s ease;
  }

  .top-nav a {
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text);
  }

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

  .top-nav a:hover,
  .top-nav a:active {
    background: rgba(47, 191, 154, 0.12);
    color: var(--accent);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-block: 20px 24px;
    padding-inline: var(--page-pad);
    border-radius: 0;
  }

  .hero-media {
    order: 1;
    max-width: none;
    margin: 0;
    border-radius: 10px;
  }

  .hero-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hero-copy {
    order: 2;
    max-width: none;
    padding: 0;
  }

  .brand-mark { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .hero-title { max-width: none; }
  .lede { max-width: none; font-size: 1.05rem; }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta .btn { width: 100%; }

  .section {
    padding: 44px 16px;
  }

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

  .steps,
  .feature-grid,
  .form-grid,
  .about-panel { grid-template-columns: 1fr; }

  .feature-grid article,
  .feature-grid article:nth-child(odd),
  .feature-grid article:nth-child(even) {
    padding: 22px 0;
    border-right: none;
  }

  .steps { gap: 28px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }

  .onboard-band,
  .about-teaser {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .onboard-band .btn,
  .onboard-actions .btn,
  .about-teaser .btn { width: 100%; }

  .onboard-actions { width: 100%; flex-direction: column; }
  .about-actions { flex-direction: column; }
  .about-actions .btn { width: 100%; }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px var(--page-pad) 36px;
    padding-bottom: max(36px, env(safe-area-inset-bottom));
  }

  .footer-links { gap: 12px; }

  .modal {
    padding: 0;
    align-items: end;
    place-items: end center;
  }

  .modal-card {
    width: 100%;
    max-width: none;
    max-height: min(92vh, 920px);
    border-radius: 18px 18px 0 0;
    padding: 22px 16px calc(18px + env(safe-area-inset-bottom));
  }

  .form-grid { gap: 0; }
  .download-cta .btn { width: 100%; }
  .download-cta-row { width: 100%; flex-direction: column; align-items: stretch; }
  .download-steps { padding: 0 0 56px; }
}

@media (max-width: 480px) {
  .stage-soft { font-size: 1.28rem; }
  .stage-msg { font-size: 0.9rem; }
  .slot-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .top-nav { gap: 4px; }
}

.guide-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
  min-height: calc(100vh - 70px);
}

.guide-side {
  position: sticky;
  top: 70px;
  align-self: start;
  height: calc(100vh - 70px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 28px 18px 32px;
  border-radius: 0;
  background: linear-gradient(180deg, #141c19 0%, #101614 100%);
  border: none;
  border-right: 1px solid var(--line);
  box-shadow: inset -1px 0 0 rgba(47, 191, 154, 0.06);
  backdrop-filter: blur(10px);
}

.guide-side-title {
  margin: 0 0 14px;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.guide-side a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.guide-side a:hover {
  background: rgba(47, 191, 154, 0.08);
  color: var(--text);
}

.guide-side a.is-active {
  background: rgba(47, 191, 154, 0.16);
  color: var(--accent);
  font-weight: 600;
  box-shadow: inset 2px 0 0 var(--accent);
}

.guide-main {
  min-width: 0;
  width: 100%;
  max-width: none;
  padding: clamp(28px, 5vh, 48px) clamp(28px, 6vw, 72px) clamp(56px, 8vh, 88px);
}

.guide-hero {
  margin-bottom: clamp(28px, 4vh, 40px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.guide-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.guide-main > section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.guide-main > section:last-child { border-bottom: none; }

.guide-main h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.guide-main h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 650;
}

.guide-main p,
.guide-main li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.guide-main strong { color: var(--text); }

.guide-main ul,
.guide-steps {
  margin: 0 0 14px;
  padding-left: 1.2rem;
}

.guide-steps li { margin-bottom: 10px; }

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

.guide-card {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.guide-card p { margin: 0; font-size: 0.9rem; }

.guide-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(47, 191, 154, 0.1);
  border: 1px solid rgba(47, 191, 154, 0.22);
  font-size: 0.92rem;
}

.guide-where {
  margin: -4px 0 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
}

.guide-shot {
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.guide-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  filter: brightness(0.92) saturate(0.9);
}

.guide-shot figcaption {
  margin: 0;
  padding: 10px 14px 12px;
  font-size: 0.86rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.guide-main code {
  font-size: 0.86em;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(47, 191, 154, 0.12);
  color: var(--accent);
}

.guide-table-wrap {
  overflow-x: auto;
  margin: 14px 0 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.guide-table th,
.guide-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.guide-table th {
  background: #f1f5f2;
  color: var(--text);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-table tr:last-child td { border-bottom: none; }
.guide-table td { color: var(--muted); }
.guide-table td strong { color: var(--text); }

.guide-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

button.linkish {
  border: none;
  background: none;
  padding: 0;
  color: var(--accent-deep);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
}

.page-lede {
  font-family: var(--font-body);
  font-weight: 400;
}

.detail-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

.detail-item {
  padding: 22px 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.detail-item:nth-child(even) {
  background: var(--surface-2);
  border-color: rgba(74, 159, 196, 0.2);
}

.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(47, 191, 154, 0.35);
}

.detail-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.detail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .guide-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .guide-side {
    position: relative;
    top: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .guide-side-title { width: 100%; margin-bottom: 4px; }

  .guide-side a {
    padding: 8px 12px;
    background: var(--surface);
    font-size: 0.82rem;
  }

  .guide-main {
    max-width: none;
    padding: 24px 16px 56px;
  }

  .guide-cards,
  .detail-band { grid-template-columns: 1fr; }
}

.login-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(24px, 5vh, 48px) var(--page-pad);
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1.05fr);
  width: min(100%, 880px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  animation: fadeStage 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-aside {
  padding: clamp(28px, 4vw, 40px);
  background:
    radial-gradient(420px 280px at 10% 0%, rgba(47, 191, 154, 0.18), transparent 60%),
    linear-gradient(160deg, #1a2824 0%, #17201e 50%, #1a2228 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-aside h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

.login-aside .page-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 28ch;
}

.login-aside .section-kicker {
  margin-bottom: 10px;
}

.login-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.login-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.login-card {
  margin: 0;
  background: var(--bg-soft);
  border: none;
  border-radius: 0;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-card h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 1.95rem);
  font-weight: 400;
  color: var(--text);
}

.login-card-sub {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.login-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 6px;
}

.login-card input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  margin-bottom: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.login-card input:focus {
  outline: none;
  border-color: rgba(47, 191, 154, 0.5);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--surface-2);
}

.login-submit {
  width: 100%;
  margin-top: 4px;
}

.login-foot {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.login-foot a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.login-foot a:hover { color: var(--accent-deep); }

.login-layout {
  display: contents;
}

.login-intro {
  display: contents;
}

.login-intro .brand-mark {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  animation: none;
  opacity: 1;
  -webkit-text-fill-color: unset;
  background: none;
  color: var(--text);
}

.feature-cards {
  gap: 16px;
  border-top: none;
}

.feature-cards article {
  padding: 24px !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-cards article:nth-child(even) {
  background: var(--surface-2);
  border-color: rgba(74, 159, 196, 0.2) !important;
}

.feature-cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(47, 191, 154, 0.4) !important;
}

.feature-cards article:nth-child(odd),
.feature-cards article:nth-child(even) {
  padding-left: 24px !important;
  padding-right: 24px !important;
  border-right: none !important;
}

.steps li {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.steps {
  border-top: none;
  padding-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  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-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@keyframes barIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 900px) {
  .login-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .login-shell {
    grid-template-columns: 1fr;
    width: min(100%, 440px);
  }

  .login-aside {
    padding: 24px 22px 18px;
  }

  .login-aside .page-lede {
    max-width: none;
  }

  .login-aside h1 {
    font-size: clamp(2.1rem, 9vw, 2.6rem);
  }

  .login-points {
    margin-top: 18px;
  }

  .login-card {
    padding: 22px 20px 26px;
    order: 1;
  }

  .login-intro { order: 0; }

  .steps,
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 20px;
  }

  .brand-mark { font-size: clamp(3.2rem, 6vw, 4.8rem); }
}

/* —— BarberKraft-inspired landing (Vistra content) —— */
.site-kraft {
  --kraft-navy: #0f172a;
  --kraft-navy-2: #1e293b;
  --kraft-accent: #f59e0b;
  --kraft-accent-deep: #d97706;
  --kraft-accent-hover: #fbbf24;
  --kraft-light: #ffffff;
  --kraft-card: #ffffff;
  --kraft-ink: #0f172a;
  --kraft-mute: #64748b;
  --bg: var(--kraft-light);
  --bg-soft: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: var(--kraft-ink);
  --muted: var(--kraft-mute);
  --accent: var(--kraft-accent);
  --accent-deep: var(--kraft-accent-deep);
  --accent-glow: rgba(245, 158, 11, 0.28);
  --line: rgba(15, 23, 42, 0.1);
  --header-bg: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  color-scheme: light;
  background: var(--kraft-light);
  color: var(--kraft-ink);
}

.site-kraft .ambient { display: none; }

.site-kraft .topbar {
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.site-kraft .brand-text { color: var(--kraft-ink); }
.site-kraft .brand-text em { color: var(--kraft-accent); font-style: normal; }
.site-kraft .top-nav a { color: #475569; }
.site-kraft .top-nav a:hover,
.site-kraft .top-nav a[aria-current="page"] { color: var(--kraft-ink); }
.site-kraft .top-nav a::after { background: var(--kraft-accent); }
.site-kraft .topbar .btn-primary {
  background: var(--kraft-accent);
  color: #0f172a;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.35);
}
.site-kraft .nav-toggle { border-color: var(--line); background: #f8fafc; }
.site-kraft .nav-toggle span { background: var(--kraft-ink); }

.site-kraft .btn-primary {
  background: var(--kraft-accent);
  color: #0f172a;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.32);
}
.site-kraft .btn-primary:hover { background: var(--kraft-accent-hover); color: #0f172a; }
.site-kraft .btn-ghost {
  border-radius: 999px;
  background: transparent;
  color: inherit;
  border: 1px solid rgba(18, 32, 27, 0.18);
}
.site-kraft .kraft-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.site-kraft .kraft-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

.site-kraft .kraft-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  min-height: auto;
  padding-block: clamp(48px, 8vh, 88px);
  background: var(--kraft-navy);
  border-bottom: 0;
}

.site-kraft .hero-bg {
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(245, 158, 11, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(56, 189, 248, 0.08), transparent 55%),
    linear-gradient(160deg, #0f172a 0%, #111827 55%, #0b1220 100%);
}

.site-kraft .hero-copy { max-width: 34rem; color: #fff; }
.site-kraft .hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 600;
}
.site-kraft .hero-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: heroPulse 2.4s ease-in-out infinite;
}
.site-kraft .kraft-hero .hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 22ch;
  color: #fff;
  opacity: 1;
  animation: rise 0.7s ease 0.08s both;
}
.site-kraft .kraft-hero .lede {
  color: rgba(232, 239, 235, 0.72);
  max-width: 42ch;
  font-size: 1.05rem;
  opacity: 1;
  animation: rise 0.7s ease 0.16s both;
}
.site-kraft .kraft-hero .hero-cta { opacity: 1; animation: rise 0.7s ease 0.24s both; }

.site-kraft .hero-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--kraft-ink);
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  animation: fadeStage 0.85s ease 0.12s both;
}
.site-kraft .hero-panel-head h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.site-kraft .hero-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.site-kraft .hero-steps span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--kraft-mute);
  padding: 8px 4px;
  border-radius: 999px;
  background: #eef3f1;
}
.site-kraft .hero-steps span.on {
  background: rgba(47, 191, 154, 0.16);
  color: var(--kraft-accent-deep);
}
.site-kraft .hero-panel-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.site-kraft .hero-panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 12px 12px;
  border-radius: 12px;
  background: #f4f8f6;
  border: 1px solid rgba(18, 32, 27, 0.06);
}
.site-kraft .hero-panel-list strong { font-size: 0.92rem; }
.site-kraft .hero-panel-list span { font-size: 0.78rem; color: var(--kraft-mute); text-align: right; }
.site-kraft .btn-block { width: 100%; }
.site-kraft .hero-panel-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--kraft-mute);
}
.site-kraft .hero-panel-note a,
.site-kraft .linkish {
  color: var(--kraft-accent-deep);
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.site-kraft .hero-panel-note a:hover,
.site-kraft .linkish:hover { text-decoration: underline; }

.site-kraft .stat-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
.site-kraft .stat-strip-inner {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 36px var(--page-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.site-kraft .stat-strip-inner div { text-align: center; }
.site-kraft .stat-strip-inner strong {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--kraft-accent);
  letter-spacing: -0.02em;
}
.site-kraft .stat-strip-inner span {
  font-size: 0.9rem;
  color: #334155;
  font-weight: 600;
}

.site-kraft .section {
  background: #fff;
  color: var(--kraft-ink);
}
.site-kraft .section-alt {
  background: #f8fafc;
  border-block: 1px solid var(--line);
}
.site-kraft .section-kicker {
  color: var(--kraft-accent-deep);
  background: none;
  -webkit-text-fill-color: unset;
}
.site-kraft .section-head h2,
.site-kraft .onboard-band h2,
.site-kraft .about-teaser h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kraft-ink);
}
.site-kraft .section-head p,
.site-kraft .onboard-band p { color: var(--kraft-mute); }

.site-kraft .steps li,
.site-kraft .feature-cards article,
.site-kraft .detail-item {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.06);
}
.site-kraft .steps li:hover,
.site-kraft .feature-cards article:hover,
.site-kraft .detail-item:hover {
  border-color: rgba(245, 158, 11, 0.45) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.site-kraft .step-num { color: var(--kraft-accent); }
.site-kraft .icon-wrap {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--kraft-accent-deep);
}

.site-kraft .kraft-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.site-kraft .kraft-shot {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(11, 18, 32, 0.14);
  background: #101816;
}
.site-kraft .kraft-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
}

.site-kraft .onboard-band {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #111827 100%);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #fff;
  border-radius: 22px;
}
.site-kraft .onboard-band h2 { color: #fff; }
.site-kraft .onboard-band p { color: rgba(232,239,235,0.72); }
.site-kraft .onboard-band .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.site-kraft .site-footer {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: 0;
  background: var(--kraft-navy);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-kraft .footer-inner {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: clamp(40px, 5vw, 56px) var(--page-pad) 28px;
}
.site-kraft .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-kraft .footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.site-kraft .footer-col h3 {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.site-kraft .footer-col a,
.site-kraft .footer-linkish {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.site-kraft .footer-col a:hover,
.site-kraft .footer-linkish:hover,
.site-kraft .footer-by a:hover {
  color: var(--kraft-accent);
}
.site-kraft .footer-brand-col {
  gap: 12px;
}
.site-kraft .footer-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.site-kraft .footer-tagline {
  margin: 0;
  max-width: 28ch;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}
.site-kraft .footer-by {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-kraft .footer-by a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: none;
}
.site-kraft .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}
.site-kraft .footer-bottom-note {
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 900px) {
  .site-kraft .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-kraft .footer-brand-col {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .site-kraft .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-kraft .kraft-hero {
    grid-template-columns: 1fr;
    padding-block: 32px 28px;
  }
  .site-kraft .kraft-hero .hero-title { max-width: none; }
  .site-kraft .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .site-kraft .kraft-split { grid-template-columns: 1fr; }
  .site-kraft .top-nav {
    background: #fff;
    border-color: var(--line);
  }
  .site-kraft .top-nav a { color: #334155; }
}

.site-kraft .kraft-split h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 10px;
  color: var(--kraft-ink);
}
.site-kraft .kraft-split > div > p:not(.section-kicker) {
  color: var(--kraft-mute);
  margin: 0;
  max-width: 42ch;
}
.site-kraft .detail-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.site-kraft .detail-item h3 { color: var(--kraft-ink); margin: 0 0 6px; }
.site-kraft .detail-item p { color: var(--kraft-mute); margin: 0; }
.site-kraft .modal-card {
  background: #fff;
  color: var(--kraft-ink);
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(11, 18, 32, 0.2);
}
.site-kraft .modal-sub,
.site-kraft .slot-hint { color: var(--kraft-mute); }
.site-kraft .modal-card input,
.site-kraft .modal-card select,
.site-kraft .modal-card textarea {
  background: #f4f8f6;
  border: 1px solid var(--line);
  color: var(--kraft-ink);
}
.site-kraft .modal-close { color: var(--kraft-mute); }

@media (max-width: 700px) {
  .site-kraft .detail-band { grid-template-columns: 1fr; }
  .site-kraft .hero-steps { grid-template-columns: 1fr; }
}

.site-kraft .kraft-hero .hero-media {
  opacity: 1;
  animation: fadeStage 0.85s ease 0.12s both;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.28),
    0 28px 60px rgba(0, 0, 0, 0.45);
  max-width: none;
  margin: 0;
}
.site-kraft .kraft-hero .hero-media img {
  filter: none;
}
.site-kraft .kraft-hero .hero-media::before,
.site-kraft .kraft-hero .hero-media::after {
  display: none;
}

.site-kraft .hero-kicker {
  margin: 0 0 14px;
  color: var(--kraft-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* —— Kraft: inner pages (download, about, guide, login) —— */
.site-kraft .kraft-page-hero,
.site-kraft .page-hero {
  padding: clamp(40px, 6vw, 64px) 0 28px;
  border-bottom: 1px solid var(--line);
}
.site-kraft .page-hero h1,
.site-kraft .page-hero .brand-mark {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kraft-ink);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 12px;
}
.site-kraft .page-lede {
  color: var(--kraft-mute);
  max-width: 52ch;
  font-size: 1.05rem;
  margin: 0;
}
.site-kraft .download-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 22rem);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px) 0 36px;
  border-bottom: 1px solid var(--line);
  max-width: none;
}
.site-kraft .download-hero-copy h1 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kraft-ink);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: 14ch;
}
.site-kraft .download-hero-copy .page-lede {
  max-width: 46ch;
}
.site-kraft .download-hero-intro {
  padding: clamp(36px, 5vw, 64px) 0 8px;
  border-bottom: 0;
}
.site-kraft .download-hero-intro h1 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kraft-ink);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: none;
}
.site-kraft .download-update-banner {
  margin: 20px 0 8px;
  padding: 20px 22px;
  max-width: 52rem;
}
.site-kraft .download-update-banner h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--kraft-ink);
}
.site-kraft .download-update-banner .download-includes {
  margin: 0 0 12px;
}
.site-kraft .download-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
  padding: 12px 0 36px;
  border-bottom: 1px solid var(--line);
}
.site-kraft .download-product-card {
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.site-kraft .download-product-card h2 {
  margin: 4px 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--kraft-ink);
}
.site-kraft .download-product-card > p {
  margin: 0;
  color: var(--kraft-mute);
  line-height: 1.5;
}
.site-kraft .download-product-card .download-includes {
  margin-top: 16px;
}
.site-kraft .download-product-card .download-cta {
  margin-top: auto;
  padding-top: 18px;
}
.site-kraft .download-product-card .download-app-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 12px;
}
.site-kraft .download-hero-intro .page-lede {
  max-width: 62ch;
}
.site-kraft .download-stack-install {
  grid-template-columns: 1fr 1fr;
}
.site-kraft .download-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.site-kraft .download-includes li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--kraft-ink);
  font-size: 0.8rem;
  font-weight: 600;
}
.site-kraft .download-req {
  margin: 16px 0 0;
  color: var(--kraft-mute);
  font-size: 0.88rem;
}
.site-kraft .download-panel {
  padding: 26px 26px 22px;
}
.site-kraft .download-panel .download-app-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 12px;
}
.site-kraft .download-panel .section-kicker {
  margin-bottom: 4px;
}
.site-kraft .download-panel .download-meta {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kraft-ink);
}
.site-kraft .download-cta { margin-top: 18px; width: 100%; }
.site-kraft .download-cta-row {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}
.site-kraft .download-cta-row .btn {
  width: 100%;
  justify-content: center;
}
.site-kraft .download-meta {
  margin: 12px 0 0;
  color: var(--kraft-mute);
  font-size: 0.9rem;
}
.site-kraft .download-lower {
  padding: 28px max(var(--page-pad), calc((100vw - min(100vw, var(--page-max))) / 2 + var(--page-pad))) clamp(40px, 6vw, 64px);
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}
.site-kraft .download-stack {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: start;
}
.site-kraft .kraft-card,
.site-kraft .download-steps,
.site-kraft .download-release {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 28px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  max-width: none;
  margin: 0;
}
.site-kraft .download-steps h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--kraft-ink);
}
.site-kraft .download-start-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.site-kraft .download-start-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
}
.site-kraft .download-start-list li:last-child { margin-bottom: 0; }
.site-kraft .download-start-list span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--kraft-accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-kraft .download-start-list p {
  margin: 0;
  color: var(--kraft-ink);
  line-height: 1.45;
  padding-top: 3px;
}
.site-kraft .download-steps ol:not(.download-start-list) {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: var(--kraft-ink);
}
.site-kraft .download-steps li { margin-bottom: 8px; }
.site-kraft .download-note {
  margin: 8px 0 0;
  color: var(--kraft-mute);
  font-size: 0.9rem;
}
.site-kraft .download-note a { color: var(--kraft-accent-deep); font-weight: 600; }

.site-kraft .download-release-head {
  margin-bottom: 16px;
}
.site-kraft .download-release-head .section-kicker {
  margin-bottom: 8px;
}
.site-kraft .download-release-head h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--kraft-ink);
}
.site-kraft .download-release-head .download-note {
  margin: 0;
}
.site-kraft .download-changelog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.site-kraft .download-change-block {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.site-kraft .download-change-block h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kraft-accent-deep);
}
.site-kraft .download-change-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--kraft-ink);
  line-height: 1.55;
}
.site-kraft .download-change-block li {
  margin-bottom: 8px;
}
.site-kraft .download-change-block li:last-child {
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .site-kraft .download-hero-split,
  .site-kraft .download-stack,
  .site-kraft .download-products,
  .site-kraft .download-stack-install {
    grid-template-columns: 1fr;
  }
  .site-kraft .download-hero-copy h1 { max-width: none; }
  .site-kraft .download-changelog {
    grid-template-columns: 1fr;
  }
}

.site-kraft .about-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  gap: 20px;
}
.site-kraft .about-copy,
.site-kraft .about-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.site-kraft .about-copy p,
.site-kraft .about-tag { color: var(--kraft-mute); }
.site-kraft .about-copy h3,
.site-kraft .about-side-title { color: var(--kraft-ink); }
.site-kraft .product-item {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.site-kraft .product-item.highlight {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.08);
}
.site-kraft .product-item strong { color: var(--kraft-ink); }
.site-kraft .product-item span { color: var(--kraft-mute); }
.site-kraft .about-contact a { color: var(--kraft-accent-deep); }

.site-kraft .guide-layout {
  color: var(--kraft-ink);
}
.site-kraft .guide-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.site-kraft .guide-side-title { color: var(--kraft-mute); }
.site-kraft .guide-side a {
  color: #334155;
}
.site-kraft .guide-side a:hover,
.site-kraft .guide-side a.is-active {
  color: var(--kraft-ink);
  background: rgba(245, 158, 11, 0.12);
}
.site-kraft .guide-hero h1,
.site-kraft .guide-main h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kraft-ink);
}
.site-kraft .guide-main p,
.site-kraft .guide-where,
.site-kraft .guide-shot figcaption {
  color: var(--kraft-mute);
}
.site-kraft .guide-shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.site-kraft .guide-steps li,
.site-kraft .guide-main li { color: var(--kraft-ink); }
.site-kraft .guide-main code {
  background: #f1f5f9;
  color: var(--kraft-accent-deep);
  border-radius: 6px;
  padding: 0.1em 0.4em;
}
.site-kraft .guide-main table {
  border: 1px solid var(--line);
  background: #fff;
}
.site-kraft .guide-main th,
.site-kraft .guide-main td {
  border-color: var(--line);
  color: var(--kraft-ink);
}

.site-kraft .login-page { padding-block: 28px 48px; }
.site-kraft .login-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  gap: 24px;
}
.site-kraft .login-aside {
  background: var(--kraft-navy);
  color: #fff;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
}
.site-kraft .login-aside .section-kicker { color: var(--kraft-accent); }
.site-kraft .login-aside h1 { color: #fff; font-weight: 800; letter-spacing: -0.03em; }
.site-kraft .login-aside .page-lede { color: rgba(255,255,255,0.72); }
.site-kraft .login-points li { color: rgba(255,255,255,0.88); }
.site-kraft .login-aside .icon-wrap {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--kraft-accent);
}
.site-kraft .login-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  color: var(--kraft-ink);
}
.site-kraft .login-card h2 { color: var(--kraft-ink); }
.site-kraft .login-card-sub,
.site-kraft .login-foot a { color: var(--kraft-mute); }
.site-kraft .login-card label { color: #334155; }
.site-kraft .login-card input {
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--kraft-ink);
}
.site-kraft .login-card input:focus {
  border-color: var(--kraft-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}
.site-kraft .btn-ghost {
  border-radius: 10px;
}

.site-kraft .brand-icon {
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}
.site-kraft .download-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  display: block;
  margin: 0 0 12px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.site-kraft .login-aside-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  display: block;
  margin: 0 0 18px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.site-kraft .about-brand-icon,
.site-kraft .product-icon,
.site-kraft .onboard-app-icon {
  display: block;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
}
.site-kraft .about-brand-icon { width: 48px; height: 48px; }
.site-kraft .product-icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}
.site-kraft .product-item .icon-wrap { display: none; }
.site-kraft .onboard-app-icon {
  width: 56px;
  height: 56px;
}
.site-kraft .product-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.site-kraft .product-item .icon-wrap.sm {
  flex-shrink: 0;
}
.site-kraft .about-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-kraft .feature-app-icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: block;
  margin-bottom: 12px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.site-kraft .section-how {
  background: #f8fafc;
  border-block: 1px solid var(--line);
}
.site-kraft .section-head-center {
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 56px);
  text-align: center;
}
.site-kraft .section-head-center p {
  margin-inline: auto;
}
.site-kraft .kraft-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  border-top: 0;
  position: relative;
}
.site-kraft .kraft-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.45), transparent);
  z-index: 0;
  pointer-events: none;
}
.site-kraft .kraft-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "badge icon"
    "title title"
    "text text";
  align-items: center;
  column-gap: 12px;
  row-gap: 0;
  min-height: 100%;
  padding: 28px 24px 30px;
  border-radius: 18px;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-kraft .kraft-steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}
.site-kraft .kraft-steps .icon-wrap,
.site-kraft .kraft-steps .step-num { display: none; }
.site-kraft .step-badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: var(--kraft-navy);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.site-kraft .step-icon {
  grid-area: icon;
  justify-self: end;
  width: 52px;
  height: 52px;
  margin: 0;
  color: var(--kraft-accent-deep);
  background: none;
  border: 0;
  box-shadow: none;
}
.site-kraft .step-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke-width: 1.6;
}
.site-kraft .kraft-steps h3 {
  grid-area: title;
  margin: 18px 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--kraft-ink);
  line-height: 1.25;
}
.site-kraft .kraft-steps p {
  grid-area: text;
  margin: 0;
  color: var(--kraft-mute);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .site-kraft .kraft-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .site-kraft .kraft-steps::before { display: none; }
  .site-kraft .kraft-steps li { padding: 22px 18px; }
}
