:root {
  --bg: #eef0f3;
  --bg-2: #e3e6eb;
  --paper: #ffffff;
  --ink: #14171c;
  --ink-2: #262a31;
  --mute: #5c626c;
  --mute-2: #8c919c;
  --hair: rgba(20, 23, 28, 0.08);
  --hair-2: rgba(20, 23, 28, 0.16);
  --silver: #c9cfd8;
  --silver-2: #e3e7ec;
  --silver-3: #f4f6f9;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-bg-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-stroke: rgba(20, 23, 28, 0.07);
  --glass-shadow: 0 24px 70px -32px rgba(20, 25, 40, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.95) 0%, transparent 55%),
    linear-gradient(180deg, #f6f8fb 0%, #e6e9ee 50%, #dde1e7 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

::selection { background: var(--ink); color: #fff; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.orb--a {
  width: 620px; height: 620px;
  top: -180px; left: -140px;
  background: radial-gradient(circle, rgba(220, 228, 240, 0.85), rgba(220, 228, 240, 0) 70%);
}
.orb--b {
  width: 760px; height: 760px;
  top: 38%; right: -260px;
  background: radial-gradient(circle, rgba(200, 210, 225, 0.75), rgba(200, 210, 225, 0) 70%);
}
.orb--c {
  width: 520px; height: 520px;
  bottom: -180px; left: 28%;
  background: radial-gradient(circle, rgba(180, 195, 215, 0.55), rgba(180, 195, 215, 0) 70%);
}

main, .bar, .ledger { position: relative; z-index: 1; }

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--glass-stroke);
  box-shadow: var(--glass-shadow);
  border-radius: 18px;
  position: relative;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 38%);
  opacity: 0.7;
  mix-blend-mode: overlay;
}

.bar {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px var(--gutter) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border-radius: 999px;
}
.bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.bar__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #14171c 0%, #4b5260 100%);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(20, 30, 50, 0.25);
}
.bar__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 60%);
}
.bar__name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.005em;
}
.bar__nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.bar__nav a {
  position: relative;
  transition: color 0.25s var(--ease);
}
.bar__nav a:hover { color: var(--ink); }
.bar__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.bar__nav a:hover::after { transform: scaleX(1); }
.bar__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  display: inline-block;
}
.bar__cta:hover { background: #000; }
@media (max-width: 720px) {
  .bar__nav { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: #000; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--hair-2);
  color: var(--ink);
  backdrop-filter: blur(14px);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--ink);
}

.rule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-2);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 64px;
}

/* HERO */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(60px, 8vw, 100px);
  text-align: center;
}

.hero__h {
  margin: 0;
  font-weight: 700;
  font-size: clamp(48px, 8.4vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  background: linear-gradient(180deg, #181c23 0%, #2a313b 60%, #5b626e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__h-row { display: block; overflow: hidden; }
.hero__h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #4b5260 0%, #8a909a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lede {
  margin: 28px auto 0;
  max-width: 52ch;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--mute);
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: clamp(56px, 7vw, 88px) auto 0;
  padding: 22px 28px;
  max-width: 720px;
  border-radius: 22px;
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 8px 12px;
  border-right: 1px solid var(--hair);
}
.hero__stats > div:last-child { border-right: 0; }
.hero__stat-num {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero__stat-lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-2);
  text-align: center;
}
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); padding: 18px 8px; }
  .hero__stats > div { padding: 8px 4px; }
}

/* WORK */
.work {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .work__grid { grid-template-columns: 1fr; gap: 22px; } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 26px;
  border-radius: 26px;
  min-height: 540px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 90px -32px rgba(20, 25, 40, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-2);
  z-index: 2;
  position: relative;
}
.card__cue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover .card__cue { color: var(--ink); transform: translateX(2px); }

.card__pane {
  position: relative;
  flex: 1;
  margin: 18px -4px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 1;
  background: linear-gradient(135deg, #eef0f3 0%, #c9cfd8 100%);
  min-height: 380px;
}
.card__pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.card:hover .card__pane img { transform: scale(1.04); }
.card__pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 30%, rgba(20, 25, 40, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 4px;
  z-index: 2;
}
.card__name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.card__tags {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 3;
  pointer-events: none;
}
.card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--hair);
  color: var(--ink-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card__role {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
}

/* PRICING */
.pricing {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.pricing__intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.pricing__title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pricing__title em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #4b5260 0%, #8a909a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.62em;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.pricing__note {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.01em;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1100px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 24px 24px;
  border-radius: 22px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-stroke);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  height: 100%;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px -32px rgba(20, 25, 40, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.plan__name {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.plan__pitch {
  margin: -8px 0 0;
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.55;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 6px;
  flex-wrap: wrap;
}
.plan__price-amount {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.plan__price-suffix {
  font-size: 11px;
  color: var(--mute-2);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}
.plan__price-talk {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(32px, 3.2vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.plan__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.plan__list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background:
    linear-gradient(currentColor, currentColor) center / 10px 1.4px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.4px 10px no-repeat;
  color: var(--mute);
  opacity: 0.85;
}

.plan__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hair-2);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  width: 100%;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.plan__cta:hover {
  background: #fff;
  border-color: var(--ink);
}

.plan__cta--solid {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.plan__cta--solid:hover {
  background: #000;
  border-color: transparent;
  color: #fff;
}

/* FAQ */
.faq {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.faq__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.faq__intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__intro p {
  margin: 0;
  color: var(--mute);
  font-size: 15.5px;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .faq__intro { grid-template-columns: 1fr; }
}

.faq__list {
  padding: 0 28px;
  border-radius: 22px;
}
.ask {
  border-bottom: 1px solid var(--hair);
}
.ask:last-child { border-bottom: 0; }
.ask summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  transition: color 0.3s var(--ease);
}
.ask summary::-webkit-details-marker { display: none; }
.ask summary:hover { color: var(--ink); }
.ask__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--mute-2);
  font-size: 14px;
  transition: color 0.3s var(--ease);
}
.ask:hover .ask__num,
.ask[open] .ask__num { color: var(--ink); }
.ask__q {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 28px);
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--ink);
}
.ask__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--ink);
}
.ask__icon::before, .ask__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}
.ask__icon::before { width: 18px; height: 1.4px; }
.ask__icon::after { width: 1.4px; height: 18px; }
.ask[open] .ask__icon::after { transform: rotate(90deg); }
.ask__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}
.ask__body p {
  margin: 0;
  padding: 0 0 28px 56px;
  color: var(--mute);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 64ch;
}
@media (max-width: 600px) {
  .ask summary { gap: 14px; grid-template-columns: 28px 1fr auto; }
  .ask__body p { padding-left: 0; }
}

/* CONTACT */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
}
.contact__panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 72px);
  text-align: center;
  overflow: hidden;
}
.contact__panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.contact__eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact__h {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.contact__h em {
  font-style: italic;
  background: linear-gradient(180deg, #4b5260 0%, #8a909a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact__mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.3s var(--ease);
}
.contact__mail svg { transition: transform 0.3s var(--ease); }
.contact__mail:hover { background: #000; }
.contact__mail:hover svg { transform: translate(2px, -2px); }

.contact__row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.contact__loc { color: var(--mute); }

/* LEDGER (footer) */
.ledger {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--gutter) 36px;
}
.ledger__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.ledger__name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.ledger__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ledger__row a {
  transition: color 0.3s var(--ease);
}
.ledger__row a:hover { color: var(--ink); }
.ledger__x {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ledger__x svg { color: var(--ink-2); transition: color 0.3s var(--ease); }
.ledger__x:hover svg { color: var(--ink); }
.ledger__top { color: var(--ink-2); }