/* Stardev — Editorial dark landing page
   Type system: Editorial serif (Fraunces alt — switching to "Instrument Serif" for editorial feel),
                Sans (Geist), Mono (JetBrains Mono)
   Color: deep ink near-black, off-white ink, single restrained accent (cyan-leaning teal)
*/

:root {
  --bg: #0a0a0c;
  --bg-elev: #111114;
  --bg-card: #131317;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f3f1ec;
  --ink-dim: rgba(243, 241, 236, 0.62);
  --ink-faint: rgba(243, 241, 236, 0.38);
  --accent: oklch(0.78 0.12 200);
  /* muted teal-cyan */
  --accent-2: oklch(0.72 0.14 280);
  /* restrained violet */
  --warn: oklch(0.78 0.16 70);
  --good: oklch(0.78 0.14 160);

  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============ BG variants (driven by tweak data-bg) ============ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

[data-bg="solid"] .bg-layer {
  background: var(--bg);
}

[data-bg="grid"] .bg-layer {
  background:
    linear-gradient(var(--bg), var(--bg)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 80px);
  background-blend-mode: normal;
}

[data-bg="grid"] .bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 80px);
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
}

[data-bg="aurora"] .bg-layer {
  background: radial-gradient(60% 50% at 20% 10%, oklch(0.4 0.13 280 / 0.35), transparent 60%),
    radial-gradient(50% 40% at 80% 20%, oklch(0.45 0.12 200 / 0.28), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, oklch(0.35 0.1 320 / 0.2), transparent 70%),
    var(--bg);
  filter: saturate(1.05);
}

[data-bg="noise"] .bg-layer {
  background: var(--bg);
}

[data-bg="noise"] .bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============ Type scale ============ */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ink-faint);
}

h1.display,
h2.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}

h1.display {
  font-size: clamp(48px, 8vw, 110px);
}

h2.display {
  font-size: clamp(40px, 6vw, 88px);
}

h3.title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  margin: 0;
}

.italic {
  font-style: italic;
}

/* When --font-display is sans (mono-accent mode), reduce weight bump */
[data-typeset="mono-accent"] h1.display,
[data-typeset="mono-accent"] h2.display,
[data-typeset="mono-accent"] h3.title {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: -0.04em;
}

[data-typeset="mono-accent"] .italic {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.85em;
  vertical-align: 0.05em;
}

[data-typeset="geist"] {
  --font-display: "Instrument Serif", serif;
  --font-sans: "Geist", system-ui, sans-serif;
}

[data-typeset="inter"] {
  --font-display: "Instrument Serif", serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

[data-typeset="mono-accent"] {
  --font-display: "Geist", system-ui, sans-serif;
  --font-sans: "Geist", system-ui, sans-serif;
}

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(10, 10, 12, 0.6);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.brand-mark {
  width: 24px;
  height: 24px;
  position: relative;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.brand-name em {
  font-style: italic;
  color: var(--ink-dim);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

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

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-cta .btn:not(.btn-ghost) {
    display: none;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ============ Hero ============ */
.hero {
  padding: clamp(24px, 10vh, 120px) 0 clamp(24px, 8vh, 100px);
  position: relative;
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 80%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(40% 60% at 30% 30%, oklch(0.4 0.14 270 / 0.55), transparent 70%),
    radial-gradient(40% 50% at 75% 40%, oklch(0.45 0.12 200 / 0.4), transparent 70%);
  filter: blur(20px);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(40px, -20px, 0) scale(1.05);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
  z-index: 2;
}

.hero h1 .word {
  display: inline-block;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-sub {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
}

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

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}

.hero-stat .lbl {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--ink-faint);
  margin-top: 8px;
}

/* Typed code chip in hero */
.code-chip {
  font-family: var(--font-mono);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-dim);
}

.code-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.code-chip .caret {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: var(--ink);
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Section header pattern */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  padding-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(32px, 5vw, 48px);
}

@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .section-head .sh-right {
    justify-self: end;
    max-width: 460px;
  }
}

.section-head .sh-right p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 12px 0 0;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ Reveal animation (disabled — content shows immediately) ============ */
.reveal,
.reveal-stagger>* {
  opacity: 1;
  transform: none;
}

/* ============ Services ============ */
.services {
  padding: clamp(24px, 12vh, 140px) 0;
}

.services-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 32px;
}

.services-tabs button {
  background: transparent;
  border: 0;
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.services-tabs button:hover {
  color: var(--ink);
}

.services-tabs button.active {
  background: var(--ink);
  color: var(--bg);
}

.services-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background: var(--bg-elev);
}

.service-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-top: 24px;
}

.service-card p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
}

.service-card .arrow {
  position: absolute;
  top: 36px;
  right: 32px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: all 0.25s ease;
}

.service-card:hover .arrow {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: rotate(-45deg);
}

/* ============ Bento ============ */
.bento {
  padding: clamp(24px, 12vh, 140px) 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
  position: relative;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(260px, auto);
  }
}

.bento-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 24px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx, -200px) var(--my, -200px),
      oklch(0.6 0.14 200 / 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.bento-card>* {
  position: relative;
  z-index: 1;
}

.b-span-3 {
  grid-column: span 3;
}

.b-span-2 {
  grid-column: span 2;
}

.b-span-4 {
  grid-column: span 4;
}

.b-span-6 {
  grid-column: span 6;
}

.b-row-2 {
  grid-row: span 2;
}

@media (max-width: 900px) {

  .b-span-3,
  .b-span-2,
  .b-span-4,
  .b-span-6 {
    grid-column: span 2;
  }

  .b-row-2 {
    grid-row: span 1;
  }
}

.bento-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge.live {
  color: var(--good);
  border-color: oklch(0.55 0.14 160 / 0.4);
}

.badge.live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.4;
  }
}

.badge.new {
  color: var(--accent);
  border-color: oklch(0.6 0.12 200 / 0.4);
}

.badge.beta {
  color: var(--warn);
  border-color: oklch(0.6 0.16 70 / 0.4);
}

.product-desc {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.bento-card .preview {
  margin-top: auto;
}

/* Live preview: starchats */
.preview-chats {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.bubble {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.bubble.user {
  align-self: flex-end;
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.bubble.bot {
  align-self: flex-start;
}

.bubble .typing span {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-dim);
  margin-right: 3px;
  animation: typing 1.2s infinite;
}

.bubble .typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.bubble .typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

/* startrack preview */
.preview-track {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.track-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.track-cell.l1 {
  background: oklch(0.4 0.1 200 / 0.5);
}

.track-cell.l2 {
  background: oklch(0.55 0.13 200 / 0.7);
}

.track-cell.l3 {
  background: oklch(0.7 0.14 200 / 0.85);
}

.track-cell.l4 {
  background: oklch(0.82 0.13 200);
}

.track-legend {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faint);
  margin-top: 8px;
}

/* mobile preview */
.preview-mobile {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 180px;
  height: 280px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #1a1a20, #0d0d10);
  padding: 16px 12px;
  transform: rotate(8deg);
  transition: transform 0.4s ease;
  box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-card:hover .preview-mobile {
  transform: rotate(4deg) translateY(-4px);
}

.preview-mobile .pm-bar {
  width: 30%;
  height: 4px;
  background: var(--ink-dim);
  border-radius: 2px;
  margin: 0 auto 14px;
}

.preview-mobile .pm-row {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 8px;
}

.preview-mobile .pm-row.short {
  width: 60%;
}

.preview-mobile .pm-card {
  height: 60px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-top: 12px;
}

/* ecommerce preview */
.preview-shop {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.shop-tile {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.shop-tile::after {
  content: "";
  position: absolute;
  inset: 30%;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.shop-tile .price {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-dim);
}

/* metric preview */
.metric {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.metric .v {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.1;
  padding-bottom: 4px;
}

.metric .u {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
}

/* ============ Stack strip ============ */
.stack {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stack-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stack-row .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stack-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}

.stack-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-dim);
  font-size: 15px;
  transition: color 0.2s ease;
}

.stack-item:hover {
  color: var(--ink);
}

.stack-item svg {
  width: 22px;
  height: 22px;
}

/* ============ Process ============ */
.process {
  padding: clamp(24px, 12vh, 140px) 0;
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-row {
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s ease;
}

.process-row:last-child {
  border-bottom: 1px solid var(--line);
}

.process-header {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 60px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  transition: padding 0.3s ease, background 0.3s ease;
}

.process-row:hover .process-header {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.01);
}

.process-row .pn {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
}

.process-row .pt {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.process-row .pd {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  max-width: 480px;
}

.process-row .pa {
  color: var(--ink-faint);
  transition: color 0.25s ease, transform 0.25s ease;
  justify-self: end;
  padding-right: 20px;
}

.process-row:hover .pa {
  color: var(--ink);
  transform: translateX(8px);
}

.process-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}

.process-row.active .process-content {
  max-height: 1200px;
  opacity: 1;
}

.process-row.active .pa {
  transform: rotate(45deg);
  color: var(--accent);
}

.process-inner {
  padding: 0 80px 48px 104px;
  max-width: 1000px;
}

.process-inner p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
}

.process-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.process-details-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.process-details-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

@media (max-width: 860px) {
  .process-header {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .process-header .pd {
    grid-column: 2;
    max-width: none;
  }

  .process-header .pa {
    display: none;
  }

  .process-inner {
    padding: 0 24px 32px 76px;
  }
}

/* ============ Cases ============ */
.cases {
  padding: clamp(24px, 12vh, 140px) 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg-card);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}

.case:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.case:hover .case-img {
  opacity: 0.9;
}

.case-img {
  height: 200px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px),
    var(--bg-elev);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.case-img .label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.case-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-faint);
}

.case h3 {
  margin: 0;
}

.case p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.case-stats {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.case-stats div .v {
  font-family: var(--font-display);
  font-size: 28px;
}

.case-stats div .l {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ Testimonials ============ */
.tests {
  padding: clamp(24px, 12vh, 140px) 0;
}

.tests-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .tests-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.test {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bg-card);
  transition: border-color 0.3s ease;
}

.test:hover {
  border-color: var(--line-strong);
}

.test .quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.4 0.12 270), oklch(0.5 0.12 200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
}

.test-author .who {
  font-size: 14px;
}

.test-author .role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============ CTA band ============ */
.cta-band {
  padding: clamp(32px, 14vh, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 50% 50%, oklch(0.4 0.13 270 / 0.35), transparent 70%);
  filter: blur(40px);
}

.cta-band h2 {
  position: relative;
  z-index: 1;
}

.cta-band p {
  position: relative;
  z-index: 1;
  color: var(--ink-dim);
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Footer ============ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 24px 0 20px;
}

.footer-brand p {
  color: var(--ink-dim);
  max-width: 380px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-col a .arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.footer-col a:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 0.85;
  margin: 60px 0 24px;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

/* ============ Mobile menu ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu .close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* ============ Scrollbar (subtle) ============ */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ============ Selection ============ */
::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ============================================================
   v2 — Type effects, previews, stack-tabs, contact form
   ============================================================ */

/* ---- Tabular & gradient numbers ---- */
.num-tabular {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01";
}

[data-num] {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 50%, var(--ink-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Per-character fade-in for headlines ('char-fade') */
.char-fade {
  position: relative;
}

/* Italic accents glow softly */
.italic {
  background: linear-gradient(180deg, var(--ink), oklch(0.78 0.12 200) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero h1 — animate words in on mount */
.hero h1.display {
  letter-spacing: -0.025em;
}

.hero-stat .num {
  position: relative;
  transition: letter-spacing 0.3s ease, transform 0.3s ease;
}

.hero-stat:hover .num {
  letter-spacing: -0.04em;
  transform: translateY(-2px);
}

/* ---- Bento previews — wrapper ---- */
.bento-card.has-preview {
  padding-bottom: 0;
}

.bento-card.has-preview .preview-wrap {
  margin: 20px -24px 0 -24px;
  flex-grow: 1;
  position: relative;
  min-height: 282px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

/* Mobile app preview */
.mb-frame {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 220px;
  height: 338px;
  border-radius: 32px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #1a1a20, #0d0d10);
  padding: 14px 12px 12px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-card:hover .mb-frame {
  transform: translateX(-50%) rotate(0deg) translateY(-6px);
}

.mb-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #000;
  border-radius: 0 0 12px 12px;
}

.mb-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 22px;
  padding: 18px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.mb-statusbar {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-dim);
  margin-top: 4px;
}

.mb-greeting {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 4px;
}

.mb-greeting em {
  color: var(--ink-dim);
}

.mb-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.mb-card-hero {
  height: 90px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.mb-card-hero::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.55 0.13 200 / 0.4), transparent 70%);
}

.mb-pill {
  width: 40px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.mb-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.mb-bar.w70 {
  width: 70%;
}

.mb-bar.w40 {
  width: 40%;
}

.mb-card-row {
  height: 28px;
}

.mb-card-row.short {
  width: 70%;
}

.mb-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-faint);
}

.mb-tabbar .on {
  color: var(--ink);
}

/* Shop preview */
.shop-frame {
  position: absolute;
  inset: 16px 16px 0 16px;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.shop-toolbar .cart-pill {
  font-size: 10px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.shop-toolbar .cart-pill b {
  color: var(--accent);
}

.shop-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.shop-prod {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bento-card:hover .shop-prod {
  border-color: var(--line-strong);
}

.shop-prod-img {
  height: 36px;
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 6px), rgba(255, 255, 255, 0.03);
  margin-bottom: 6px;
}

.shop-prod-name {
  font-size: 10px;
  color: var(--ink);
}

.shop-prod-price {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-dim);
  margin-top: 2px;
}

/* SaaS preview */
.saas-frame {
  position: absolute;
  inset: 16px 16px 0 16px;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.saas-side {
  width: 50px;
  border-right: 1px solid var(--line);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.saas-logo {
  height: 18px;
  background: var(--ink);
  border-radius: 4px;
}

.saas-nav {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

.saas-nav.on {
  background: var(--accent);
  width: 70%;
}

.saas-main {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.saas-stat {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.02);
}

.saas-stat .sv {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
}

.saas-stat .sl {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--ink-faint);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.saas-chart {
  flex-grow: 1;
  color: var(--accent);
}

.saas-chart svg {
  width: 100%;
  height: 100%;
}

/* Site preview */
.site-frame {
  position: absolute;
  inset: 16px 16px 0 16px;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.site-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.site-toolbar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.site-toolbar .dot.r {
  background: #ff5f57;
}

.site-toolbar .dot.y {
  background: #ffbd2e;
}

.site-toolbar .dot.g {
  background: #28c840;
}

.site-url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 12px;
  border-radius: 999px;
}

.site-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  padding: 16px 14px 12px;
}

.site-h1 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

.site-h1 em {
  color: var(--ink-dim);
}

.site-h1 span {
  color: var(--ink);
}

.site-cta {
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 6px), rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.site-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 14px 14px;
}

.site-col {
  height: 50px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

/* ============ Stack v2 ============ */
.stack-v2 {
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--line);
}

.stack-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

@media (max-width: 800px) {
  .stack-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stack-tabs button {
  background: var(--bg);
  border: 0;
  padding: 20px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s ease;
  color: var(--ink-dim);
  font-family: var(--font-sans);
}

.stack-tabs button:hover {
  background: var(--bg-elev);
  color: var(--ink);
}

.stack-tabs button.active {
  background: var(--ink);
  color: var(--bg);
}

.stack-tabs button.active .stack-tab-num,
.stack-tabs button.active .stack-tab-count {
  color: rgba(10, 10, 12, 0.5);
}

.stack-tab-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

.stack-tabs button>span:nth-child(2) {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stack-tab-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}

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

.stack-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 15px;
  transition: all 0.25s ease;
  cursor: default;
}

.stack-chip:hover {
  border-color: var(--ink);
  background: var(--bg-elev);
  transform: translateY(-2px);
}

.stack-chip-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
}

.stack-chip-name {
  font-family: var(--font-sans);
  color: var(--ink);
}

/* Hide old stack styles if they coexist (the old .stack section is no longer rendered) */

/* ============ Contact section ============ */
.contact {
  padding: clamp(24px, 12vh, 140px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-field>span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.cf-field textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='rgba(243,241,236,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.cf-field select option {
  background: var(--bg-elev);
  color: var(--ink);
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--accent);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--ink-faint);
}

.cf-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cf-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 12px 0;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-big {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-big:hover {
  color: var(--accent);
}

.contact-big .italic {
  font-family: var(--font-mono);
  font-style: normal;
  color: var(--accent);
  font-size: 0.9em;
  margin: 0 2px;
}

.contact-addr {
  margin: 0;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
}