/* =========================================================
   Rohrberg & Ries v2 — light, clear, friendly
   ========================================================= */

:root {
  /* Color */
  --bg:           oklch(0.985 0.005 250);
  --bg-2:         oklch(0.96 0.008 250);
  --paper:        oklch(1 0 0);
  --line:         oklch(0.85 0.01 250);
  --line-soft:    oklch(0.90 0.008 250);
  --ink:          oklch(0.20 0.02 250);
  --ink-2:        oklch(0.40 0.02 250);
  --ink-3:        oklch(0.55 0.02 250);
  --accent:       oklch(0.52 0.22 260);
  --accent-2:     oklch(0.78 0.16 240);
  --accent-soft:  oklch(0.92 0.06 250);
  --accent-ink:   #ffffff;
  --warn:         oklch(0.65 0.20 30);
  --highlight:    oklch(0.88 0.18 95);

  /* Type */
  --f-sans: "Inter", system-ui, sans-serif;
  --f-serif: "Instrument Serif", Georgia, serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --pad: clamp(20px, 4vw, 56px);
  --maxw: 1320px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); color: var(--ink); }

body {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } .cursor { display: none !important; } }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.78em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.muted { color: var(--ink-3); }
strong { font-weight: 600; }
em { font-style: italic; }

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background .2s, opacity .2s;
  mix-blend-mode: multiply;
}
.cursor.is-hover {
  width: 44px; height: 44px;
  background: var(--accent);
  mix-blend-mode: difference;
}
.cursor.is-hidden { opacity: 0; }

/* =========================================================
   BANNER + NAV
   ========================================================= */
.banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  position: relative; z-index: 50;
}
.banner .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 0 var(--highlight);
  animation: bannerPulse 2s infinite;
}
@keyframes bannerPulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.88 0.18 95 / 0.7); }
  70%  { box-shadow: 0 0 0 8px oklch(0.88 0.18 95 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.88 0.18 95 / 0); }
}
.banner a {
  margin-left: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity .2s;
}
.banner a:hover { opacity: 0.75; }
@media (max-width: 580px) { .banner span:nth-of-type(2) strong + br { display: none; } .banner { font-size: 12px; } }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--pad);
  background: oklch(0.985 0.005 250 / 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease, padding .35s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line-soft);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark { color: var(--accent); display: inline-flex; }
.amp { color: var(--accent); font-family: var(--f-serif); font-style: italic; font-weight: 400; padding: 0 1px; }
.brand-text { white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-2);
  padding: 6px 2px;
  transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
@media (max-width: 880px) { .nav__links { display: none; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .25s, background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
  cursor: none;
}
@media (hover: none) { .btn { cursor: pointer; } }
.btn--lg { padding: 14px 22px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 16px -8px oklch(0.52 0.22 260 / 0.6);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px oklch(0.52 0.22 260 / 0.7);
  background: oklch(0.48 0.22 260);
}
.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 96px) var(--pad) clamp(40px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 70% 20%, oklch(0.92 0.08 260 / 0.5), transparent 70%),
    radial-gradient(50% 40% at 0% 100%, oklch(0.94 0.06 230 / 0.45), transparent 70%),
    var(--bg);
}
.hero__canvas {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: 70vh;
}
@media (max-width: 980px) {
  .hero__content { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
}

.hero__intro { display: flex; flex-direction: column; gap: 24px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--ink-2);
  width: max-content;
  max-width: 100%;
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.4), 0 2px 6px -2px oklch(0 0 0 / 0.05);
}
.kicker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--f-sans);
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.hero__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  padding: 0 0.02em;
}
.hero__title-end {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
  font-size: 0.62em;
  vertical-align: baseline;
  margin-left: 4px;
}

.hero__sub {
  max-width: 48ch;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-2);
  margin: 0;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  margin-top: 8px;
}
.hero__trust p { margin: 0; font-size: 0.92rem; line-height: 1.4; }
.avatars { display: inline-flex; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--f-serif);
  font-style: italic;
}
.avatar--1 { background: var(--accent); }
.avatar--2 { background: oklch(0.40 0.18 270); margin-left: -10px; }

/* Offer card */
.offer {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.6),
    0 24px 48px -24px oklch(0.30 0.10 260 / 0.18),
    0 6px 18px -8px oklch(0 0 0 / 0.04);
  transform: rotate(1.5deg);
  transition: transform .4s ease;
}
.offer:hover { transform: rotate(0deg) translateY(-4px); }
@media (max-width: 980px) { .offer { transform: rotate(0); max-width: 440px; } }

.offer__badge {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
}
.offer__price {
  display: flex; flex-direction: column; gap: 4px;
  margin: 16px 0 10px;
}
.offer__amount {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.offer__per {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-2);
  line-height: 1.1;
}
.offer__line { margin: 0 0 16px; color: var(--ink-2); font-size: 0.95rem; }
.offer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.92rem;
  color: var(--ink);
}
.offer__list li { display: inline-flex; align-items: center; gap: 8px; }
.offer__list svg { color: var(--accent); flex-shrink: 0; }
.offer__cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background .25s, transform .25s;
}
.offer__cta:hover { background: oklch(0.48 0.22 260); transform: translateY(-1px); }

.offer__sticker {
  position: absolute;
  top: -16px; right: -16px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--highlight);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 12px;
  transform: rotate(-12deg);
  box-shadow: 0 8px 18px -6px oklch(0 0 0 / 0.18);
  animation: stickerFloat 4s ease-in-out infinite;
}
@keyframes stickerFloat {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-8deg) translateY(-4px); }
}

/* Hero quick facts */
.hero__quickfacts {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px -16px oklch(0.30 0.10 260 / 0.15);
}
@media (max-width: 880px) { .hero__quickfacts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .hero__quickfacts { grid-template-columns: 1fr; } }
.qf {
  padding: 20px 24px;
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 4px;
}
.qf:last-child { border-right: 0; }
@media (max-width: 880px) {
  .qf:nth-child(2) { border-right: 0; }
  .qf:nth-child(1), .qf:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 480px) {
  .qf { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .qf:last-child { border-bottom: 0; }
}
.qf__num {
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.qf__label { font-size: 0.85rem; color: var(--ink-3); line-height: 1.35; }

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 18px 0;
  user-select: none;
}
.ticker__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-x 45s linear infinite;
  width: max-content;
  font-size: clamp(18px, 2vw, 26px);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ticker__track i {
  font-style: normal;
  color: var(--accent);
  font-size: 0.7em;
  display: inline-flex; align-items: center;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =========================================================
   SECTION SHELL
   ========================================================= */
section {
  padding: clamp(72px, 10vw, 128px) var(--pad);
  position: relative;
}
.sh {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column;
  gap: 14px;
}
.sh--center { text-align: center; align-items: center; }
.sh h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 22ch;
  color: var(--ink);
}
.sh--center h2 { max-width: 24ch; }
.sh h2 em { font-family: var(--f-serif); color: var(--accent); font-weight: 400; }
.eyebrow {
  color: var(--accent);
  font-weight: 500;
}
.sh__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-2);
  max-width: 58ch;
  margin: 0;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--bg); }
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .services__grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform .35s ease, border-color .35s, box-shadow .35s;
}
.svc:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -24px oklch(0.30 0.10 260 / 0.22);
}
.svc__icon {
  color: var(--accent);
  display: inline-flex;
  margin-bottom: 4px;
}
.svc h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.svc p { color: var(--ink-2); margin: 0; font-size: 0.96rem; flex: 1; }
.svc__price {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  margin-top: 8px;
}
.svc__amt {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.svc__per { color: var(--ink-3); }
.svc__tag {
  position: absolute;
  top: -10px; left: 24px;
  background: var(--highlight);
  color: var(--ink);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid oklch(0.75 0.18 95);
}
.svc--feature {
  background: linear-gradient(180deg, var(--accent-soft), var(--paper));
  border-color: oklch(0.78 0.10 260 / 0.6);
}

.services__note {
  max-width: var(--maxw);
  margin: 28px auto 0;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-3);
  font-size: 0.9rem;
}
.services__note svg { color: var(--accent); flex-shrink: 0; }

/* =========================================================
   FOUNDERS
   ========================================================= */
.founders { background: var(--bg-2); }
.founders__row {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 760px) {
  .founders__row { grid-template-columns: 1fr; }
  .amp-big { font-size: 80px !important; }
}
.amp-big {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 1;
  color: var(--accent);
  text-align: center;
  font-weight: 400;
}

.person { text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.person__photo {
  width: 240px; height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  margin-bottom: 8px;
  position: relative;
}
.person h3 {
  margin: 4px 0 0;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.person__role {
  margin: 0;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.15rem;
}
.person__bio { color: var(--ink-2); margin: 4px 0 0; max-width: 32ch; font-size: 0.95rem; }

.placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  background:
    radial-gradient(circle at 30% 30%, oklch(0.92 0.06 260), oklch(0.88 0.04 260));
  color: var(--ink-2);
}
.placeholder__big {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 88px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.placeholder__hint { color: var(--ink-3); font-size: 10px; }

.quote {
  max-width: 820px;
  margin: clamp(50px, 6vw, 80px) auto 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.quote p {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.quote footer { margin-top: 16px; color: var(--ink-3); }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--bg); }
.pricing__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 880px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px oklch(0.30 0.10 260 / 0.22);
}
.plan--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -30px oklch(0.30 0.10 260 / 0.4);
}
.plan--featured:hover { transform: translateY(-16px); }
.plan--featured .plan__amt { color: var(--bg); }
.plan--featured .plan__per { color: oklch(0.7 0.02 250); }
.plan--featured .plan__feat li { color: oklch(0.8 0.02 250); }
.plan--featured .plan__feat li::before { background: var(--highlight); }
.plan--featured .plan__tag { background: var(--highlight); color: var(--ink); border-color: var(--highlight); }
@media (max-width: 880px) { .plan--featured, .plan--featured:hover { transform: none; } }

.plan__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap;
}
.plan__name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.plan__tag {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
}
.plan__price {
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.plan--featured .plan__price { border-bottom-color: oklch(0.35 0.02 250); }
.plan__amt {
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.plan__per { color: var(--ink-3); font-size: 0.92rem; }

.plan__feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-2);
  flex: 1;
}
.plan__feat li {
  position: relative;
  padding-left: 22px;
}
.plan__feat li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.plan--featured .btn--ghost {
  background: transparent;
  color: var(--bg);
  border-color: oklch(0.4 0.02 250);
}
.plan--featured .btn--ghost:hover {
  border-color: var(--bg);
}

/* =========================================================
   FLOW
   ========================================================= */
.flow { background: var(--bg-2); }
.flow__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--maxw);
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.flow__step {
  flex: 1 1 200px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  min-width: 200px;
  transition: transform .35s, border-color .35s;
}
.flow__step:hover { transform: translateY(-4px); border-color: var(--ink); }
.flow__num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.flow__step h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.flow__step p { margin: 0; color: var(--ink-2); font-size: 0.93rem; }
.flow__arrow {
  display: flex; align-items: center;
  color: var(--ink-3);
  flex: 0 0 auto;
  opacity: 0.5;
}
@media (max-width: 880px) {
  .flow__arrow { display: none; }
  .flow__list { flex-direction: column; }
  .flow__step { flex: 1 1 auto; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--bg); }
.contact__card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  box-shadow: 0 30px 60px -36px oklch(0.30 0.10 260 / 0.2);
}
@media (max-width: 880px) { .contact__card { grid-template-columns: 1fr; } }

.contact__left { display: flex; flex-direction: column; gap: 14px; }
.contact__left h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 18ch;
}
.contact__left p { margin: 0; color: var(--ink-2); }
.contact__channels {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.contact__channels li { display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; }
.ch__label { color: var(--ink-3); min-width: 90px; }
.contact__channels a { color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color .25s; }
.contact__channels a:hover { border-bottom-color: var(--accent); }

.contact__form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.82rem;
  color: var(--ink-2);
  font-weight: 500;
}
.field input, .field textarea {
  font: inherit;
  font-family: var(--f-sans);
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 10px;
  resize: vertical;
  outline: 0;
  transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  background: var(--paper);
}
.form-note { color: var(--ink-3); margin: 4px 0 0; text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: clamp(32px, 4vw, 48px) var(--pad) 24px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__name { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.footer__tag { color: var(--ink-3); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a {
  color: var(--ink-2);
  font-size: 0.92rem;
  transition: color .2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  max-width: var(--maxw);
  margin: 18px auto 0;
  color: var(--ink-3);
  text-align: center;
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

[data-tilt] { transform: perspective(800px); transform-style: preserve-3d; transition: transform .25s ease; will-change: transform; }

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