/* /contact — the light page.
   Design language: Google Antigravity's "professional simplicity" (white air,
   sentence-case display type at regular weight, full-radius pills, soft
   rounded surface cards, filled inputs) rebuilt on this site's own palette:
   ink #040504, the site white #edf5f3 family for surfaces, mint #21f1a8 kept
   scarce — the typing caret, focus rings, selected states and hovers.

   Every class is ctx-* namespaced and scoped under .taxi-w.contact; nothing
   here may style the shared nav/footer. Tokens live on the page root, never
   on :root — the shared sheet owns that. This is the site's only light page,
   so its sections carry data-nav-theme-target="dark" (the engine flips the
   fixed nav to its dark-content variant, same as the homepage's cream
   sections).

   Remember 1rem is not 16px: html{font-size} is a fluid function of viewport
   width (css-main.html), so every rem below is a proportional design unit.

   Motion contract, same as /projects: hidden start states are gated on
   .ctxjs (set pre-paint by the inline one-liner in content.html). No class ->
   no JS -> everything renders in its settled end state. */

.taxi-w.contact {
  --ctx-bg: #fafcfb;            /* page — near-white with the brand's green cast */
  --ctx-surface: #eef4f1;       /* cards + inputs — tint of --color--white #edf5f3 */
  --ctx-surface-2: #e3ece7;     /* icon tiles, pressed states */
  --ctx-ink: #040504;           /* = --color--dark-green */
  --ctx-ink-soft: #10120f;      /* ink on mint */
  --ctx-grey: #535450;          /* = --color--dark-green-tint-2, secondary text */
  --ctx-line: rgba(4, 5, 4, .08);
  --ctx-mint: #21f1a8;          /* = --color--lime */
  /* ONE SITE GREEN: this was #4cc299, the second green. It now points at the
     same mint the nav button wears; the name survives for the softer uses. */
  --ctx-mint-off: var(--ctx-mint);
  --ctx-ease: cubic-bezier(.215, .61, .355, 1);

  /* what the shared footer band paints itself with — see css-main.html */
  --page-bg: var(--ctx-bg);

  background-color: var(--ctx-bg);
  color: var(--ctx-ink);
  display: block;
}

/* ---------------------------------------------------------------- shared */

.ctx-s {
  position: relative;
  padding-inline: var(--padding--container);
  padding-block: 5.5rem;
}
.ctx-wrap {
  width: 100%;
  max-width: 82rem;
  margin-inline: auto;
}
.ctx-narrow { max-width: 39rem; text-align: center; }
.ctx-center { text-align: center; }
.taxi-w.contact [hidden] { display: none !important; }

/* the shared sheet uppercases every heading and forces li markers — undo both */
.taxi-w.contact h1,
.taxi-w.contact h2,
.taxi-w.contact h3 { text-transform: none; }
.taxi-w.contact ol,
.taxi-w.contact ul { list-style: none; margin: 0; padding: 0; }
.taxi-w.contact li { list-style: none; list-style-type: none; }
.taxi-w.contact li::marker { content: none; }

/* visually-hidden helper (labels, live regions) */
.ctx-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Invisible until focused, then a real, visible control — .pjx-skip contract. */
.ctx-skip {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  opacity: 0;
  pointer-events: none;
  z-index: 40;
  padding: .75rem 1.25rem;
  background-color: var(--ctx-ink);
  color: #edf5f3;
  font-size: .875rem;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .2s var(--ctx-ease), opacity .2s var(--ctx-ease);
}
.ctx-skip:focus,
.ctx-skip:focus-visible {
  transform: translate(-50%, 1rem);
  opacity: 1;
  pointer-events: auto;
}

/* Entrance reveal — the /projects contract, tuned gentler for the light page. */
.ctxjs .ctx-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
}
.ctxjs .ctx-reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ctx-ease), transform .8s var(--ctx-ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* Sprite icons draw in currentColor (stroke AND fill) — `color` is the knob. */
.ctx-ico { width: 1.75rem; height: 1.75rem; flex: none; color: currentColor; }
.ctx-ico.is-sm { width: 1.125rem; height: 1.125rem; }
.ctx-ico.is-xs { width: .875rem; height: .875rem; }

/* type */
.ctx-h1 {
  font-size: 4.5rem;
  line-height: 1.02;
  letter-spacing: -.02em;
  font-weight: 400;
  max-width: 17ch;
  margin-inline: auto;
}
.ctx-h2 {
  font-size: 2.75rem;
  line-height: 1.05;
  letter-spacing: -.017em;
  font-weight: 400;
}
.ctx-lede,
.ctx-sub {
  font-size: 1.09375rem;
  line-height: 1.45;
  color: var(--ctx-grey);
}
.ctx-note {
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--ctx-grey);
}
.ctx-note a { color: var(--ctx-ink); text-underline-offset: .2em; }

/* pills — the Antigravity button pair on our palette */
.ctx-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5625rem;
  height: 3rem;
  padding-inline: 1.5rem;
  border: 1px solid rgba(4, 5, 4, .07);
  border-radius: 999px;
  background-color: rgba(4, 5, 4, .035);
  color: var(--ctx-ink);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .3s var(--ctx-ease), border-color .3s var(--ctx-ease), color .3s var(--ctx-ease);
}
.ctx-pill:hover { background-color: var(--ctx-surface-2); }
.ctx-pill.is-dark {
  background-color: var(--ctx-ink);
  border-color: var(--ctx-ink);
  color: #edf5f3;
}
/* the one loud brand moment: the dark pill goes mint under the cursor */
.ctx-pill.is-dark:hover {
  background-color: var(--ctx-mint);
  border-color: var(--ctx-mint);
  color: var(--ctx-ink-soft);
}

/* ---------------------------------------------------------------- hero */

.ctx-hero {
  overflow: hidden;
  padding-top: 11rem;
  padding-bottom: 7rem;
  text-align: center;
}
.ctx-hero-inner { position: relative; z-index: 1; }
.ctx-hero .ctx-lede {
  margin-top: 1.5rem;
  max-width: 34rem;
  margin-inline: auto;
}
.ctx-hero-actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.ctx-hero-actions .ctx-ico.is-sm { width: 1.375rem; height: 1.375rem; }
/* the typing caret — the site's one playful accent, in mint */
.ctx-caret {
  display: inline-block;
  width: .09em;
  height: .82em;
  margin-left: .12em;
  background-color: var(--ctx-mint);
  border-radius: .045em;
  vertical-align: -.06em;
  animation: ctx-blink 1.1s step-end infinite;
}
@keyframes ctx-blink { 50% { opacity: 0; } }

/* ---------------------------------------------------------------- channels
   The widget desk: every channel is a faithful miniature of its own app —
   a WhatsApp chat, a compose window, an incoming call, a LinkedIn card, an
   Instagram profile, a post on X, a three-step scheduler, a Dribbble profile
   header — laid out as a bento of mixed spans. Flat surfaces, no shadows
   (hairline borders carry the depth), real platform accents, our type. */

.ctx-widgets {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.ctxw {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(4, 5, 4, .09);
  border-radius: 1.75rem;
  padding: 1.25rem;
  transition: transform .35s var(--ctx-ease), border-color .35s var(--ctx-ease);
}
.ctxw:hover {
  transform: translateY(-.3rem);
  border-color: rgba(4, 5, 4, .18);
}
/* bento spans — FIVE channels, two rows, and the arithmetic is the design.
   The grid is twelve columns, so a row closes only if its spans total twelve:
   three at 4 (Email, WhatsApp, LinkedIn) and two at 6 (Instagram, Dribbble).
   The previous set was inherited from an eight-card desk; when Call, X and the
   scheduler were removed, 5+4+4+4+5 left a four-column hole and pushed the last
   card onto a row of its own. Change a card and this sum is what to re-check.
   Direct channels lead — you can write to them today — with the profiles under. */
.ctxw.is-mail { grid-column: span 4; }
.ctxw.is-wa   { grid-column: span 4; }
.ctxw.is-inw  { grid-column: span 4; }
.ctxw.is-ig   { grid-column: span 6; }
.ctxw.is-dr   { grid-column: span 6; }

/* the whole widget is one action where it makes sense */
.ctxw-cover { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.ctxw-cover:focus-visible { outline: 2px solid var(--ctx-mint); outline-offset: 2px; }
.ctxw-mini,
.ctxw .ctx-pill,
.ctxw-copy-pill,
.ctxw-round-a,
.ctxw-drbtn,
.ctxw-inbtn { position: relative; z-index: 2; }

/* shared widget atoms */
.ctxw-row { display: flex; align-items: center; gap: .75rem; }
.ctxw-id { flex: 1; min-width: 0; }
.ctxw-ava {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.ctxw-ava.is-md { width: 3.5rem; height: 3.5rem; }
.ctxw-ava.is-lg { width: 4.75rem; height: 4.75rem; }
.ctxw-name { font-size: 1rem; font-weight: 500; line-height: 1.25; }
.ctxw-name.is-light { color: #edf5f3; }
.ctxw-status {
  font-size: .8125rem;
  line-height: 1.35;
  color: var(--ctx-grey);
  display: flex;
  align-items: center;
  gap: .3125rem;
}
.ctxw-status.is-dim { color: rgba(237, 245, 243, .6); justify-content: center; }
.ctxw-dot { width: .4375rem; height: .4375rem; border-radius: 50%; background-color: #1daa55; }
.ctxw-brand { color: var(--ctx-grey); }
.ctxw-follow {
  align-self: flex-start;
  padding: .4375rem .875rem;
  border-radius: 999px;
  background-color: #0095f6;
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color .3s var(--ctx-ease), color .3s var(--ctx-ease);
}
.ctxw-follow.is-dark { background-color: var(--ctx-ink); color: #edf5f3; margin-left: auto; }
.ctxw:hover .ctxw-follow.is-dark { background-color: var(--ctx-mint); color: var(--ctx-ink-soft); }
.ctxw-tag {
  padding: .375rem .75rem;
  border-radius: 999px;
  background-color: rgba(33, 241, 168, .18);
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ctx-ink);
  flex: none;
}
.ctx-pill.is-small { height: 2.5rem; padding-inline: 1.125rem; font-size: .9375rem; gap: .4375rem; }
.ctxw-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

/* the round header actions (WhatsApp badge + copy, Dribbble like) */
.ctxw-hd-actions { display: flex; gap: .5rem; }
.ctxw-round-a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 1px solid rgba(4, 5, 4, .09);
  background-color: #fff;
  color: var(--ctx-ink);
  cursor: pointer;
  text-decoration: none;
  transition: background-color .3s var(--ctx-ease), border-color .3s var(--ctx-ease), color .3s var(--ctx-ease), transform .3s var(--ctx-ease);
}
.ctxw-round-a:hover { background-color: var(--ctx-surface-2); transform: scale(1.06); }
/* the WhatsApp badge is a twin of the copy circle beside it — same hairline
   ring, no fill; only the glyph carries the brand green */
.ctxw-round-a.is-wa-badge { color: #1daa55; cursor: default; }
.ctxw-round-a.is-wa-badge:hover { transform: none; background-color: #fff; }
.ctxw:hover .ctxw-round-a.is-wa-badge {
  border-color: rgba(29, 170, 85, .45);
  background-color: rgba(29, 170, 85, .08);
}
.ctxw-round-a.is-copied { background-color: var(--ctx-mint); border-color: var(--ctx-mint); color: var(--ctx-ink-soft); }
.ctxw-round-a.is-like { color: #ea4c89; }
.ctxw-round-a.is-like:hover { background-color: rgba(234, 76, 137, .12); border-color: #ea4c89; color: #ea4c89; }

/* — WhatsApp: the chat — */
.ctxw-chat {
  background-color: #e9f4ec;
  border-radius: 1.125rem;
  padding: .875rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.ctxw-bubble {
  align-self: flex-start;
  max-width: 88%;
  background-color: #fff;
  border-radius: .875rem;
  border-top-left-radius: .25rem;
  padding: .625rem .75rem;
  font-size: .9375rem;
  line-height: 1.4;
}
.ctxw-time {
  display: inline-block;
  margin-left: .5rem;
  font-size: .6875rem;
  color: var(--ctx-grey);
  vertical-align: bottom;
}
.ctxw-bubble.is-typing { display: inline-flex; gap: .3125rem; padding: .75rem .875rem; }
.ctxw-bubble.is-typing i {
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background-color: var(--ctx-grey);
  animation: ctxw-type 1.2s infinite;
}
.ctxw-bubble.is-typing i:nth-child(2) { animation-delay: .15s; }
.ctxw-bubble.is-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes ctxw-type {
  0%, 60%, 100% { transform: none; opacity: .35; }
  30% { transform: translateY(-.1875rem); opacity: 1; }
}
.ctxw-input {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-top: .875rem;
}
.ctxw-input-hint {
  flex: 1;
  height: 2.5rem;
  display: flex;
  align-items: center;
  padding-inline: 1rem;
  border-radius: 999px;
  background-color: var(--ctx-surface);
  color: var(--ctx-grey);
  font-size: .875rem;
}
.ctxw-send {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #1daa55;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background-color .3s var(--ctx-ease), transform .3s var(--ctx-ease);
}
.ctxw:hover .ctxw-send { background-color: #178f47; transform: scale(1.06); }

/* — Email: the compose window — */
.ctxw.is-mail { padding-top: .875rem; }
.ctxw-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(4, 5, 4, .06);
  margin-bottom: .25rem;
}
.ctxw-traffic { display: flex; gap: .375rem; }
.ctxw-traffic i { width: .625rem; height: .625rem; border-radius: 50%; }
.ctxw-traffic i:nth-child(1) { background-color: #ff5f57; }
.ctxw-traffic i:nth-child(2) { background-color: #febc2e; }
.ctxw-traffic i:nth-child(3) { background-color: #28c840; }
.ctxw-bar-t { font-size: .8125rem; font-weight: 500; color: var(--ctx-grey); }
.ctxw-mail-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-block: .625rem;
  border-bottom: 1px solid rgba(4, 5, 4, .06);
  font-size: .9375rem;
}
.ctxw-mail-k { color: var(--ctx-grey); flex: none; }
.ctxw-mail-v { font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ctxw-mini {
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(4, 5, 4, .09);
  background-color: #fff;
  color: var(--ctx-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  cursor: pointer;
  transition: background-color .3s var(--ctx-ease), border-color .3s var(--ctx-ease), transform .3s var(--ctx-ease);
}
.ctxw-mini:hover { background-color: var(--ctx-surface-2); transform: scale(1.06); }
.ctxw-mini.is-copied { background-color: var(--ctx-mint); border-color: var(--ctx-mint); color: var(--ctx-ink-soft); }
.ctxw-mail-body { padding-block: .875rem 1.25rem; font-size: .9375rem; color: var(--ctx-ink); }
.ctxw-line {
  display: block;
  height: .5rem;
  border-radius: 999px;
  background-color: var(--ctx-surface-2);
  margin-top: .625rem;
  width: 82%;
}
.ctxw-line.is-short { width: 55%; }
.ctxw-attach { color: var(--ctx-grey); }

/* /* — Call: incoming {
  background-color: #101312;
  border-color: rgba(255, 255, 255, .08);
  align-items: center;
  text-align: center;
  gap: .25rem;
}
.ctxw-copy-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .875rem;
  padding: .5625rem .9375rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background-color: rgba(255, 255, 255, .08);
  color: #edf5f3;
  font-family: inherit;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color .3s var(--ctx-ease), border-color .3s var(--ctx-ease), color .3s var(--ctx-ease);
}
.ctxw-copy-pill:hover { border-color: var(--ctx-mint); color: var(--ctx-mint); }
.ctxw-copy-pill.is-copied {
  background-color: var(--ctx-mint);
  border-color: var(--ctx-mint);
  color: var(--ctx-ink-soft);
}

/* — LinkedIn: the compact connection card — */
.ctxw.is-inw { padding: 0; overflow: hidden; }
.ctxw-in-cover {
  height: 3rem;
  background-image: linear-gradient(120deg, #0a66c2, #0e4f8e 60%, #0a3763);
  flex: none;
}
.ctxw-in-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.25rem 1.25rem;
  flex: 1;
}
.ctxw-in-ava {
  border: 3px solid #fff;
  margin-top: -1.75rem;
  margin-bottom: .625rem;
}
.ctxw-skills {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  margin-top: .875rem;
}
.ctxw-skills span {
  padding: .4375rem .75rem;
  border-radius: 999px;
  background-color: var(--ctx-surface);
  border: 1px solid rgba(4, 5, 4, .05);
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ctx-ink);
}
.ctxw-in-btns {
  display: flex;
  gap: .5rem;
  margin-top: auto;
  padding-top: 1.125rem;
}
.ctxw-inbtn {
  display: inline-flex;
  align-items: center;
  height: 2.375rem;
  padding-inline: 1.125rem;
  border-radius: 999px;
  border: 1px solid #0a66c2;
  color: #0a66c2;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s var(--ctx-ease), color .3s var(--ctx-ease);
}
.ctxw-inbtn:hover { background-color: rgba(10, 102, 194, .08); }
.ctxw-inbtn.is-solid { background-color: #0a66c2; color: #fff; }
.ctxw-inbtn.is-solid:hover { background-color: #085096; }

/* — Instagram: the profile, faithfully, in daylight — */
.ctxw-ig-bar {
  display: grid;
  grid-template-columns: 1.5rem 1fr 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
}
.ctxw-ig-bar p { text-align: center; font-size: .9375rem; font-weight: 500; }
.ctxw-ig-back { color: var(--ctx-grey); transform: rotate(225deg); }
.ctxw-ig-dots { color: var(--ctx-grey); text-align: right; letter-spacing: .1em; font-weight: 700; }
.ctxw-ig-ring {
  padding: .1875rem;
  border-radius: 50%;
  background-image: conic-gradient(#f9ce34, #ee2a7b, #6228d7, #f9ce34);
  flex: none;
  display: flex;
}
.ctxw-ig-ring .ctxw-ava { border: 2px solid #fff; }
.ctxw-ig-nums {
  flex: 1;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: .5rem;
}
.ctxw-ig-nums span { display: flex; flex-direction: column; font-size: .8125rem; color: var(--ctx-grey); line-height: 1.3; }
.ctxw-ig-nums b { font-size: 1.0625rem; font-weight: 600; color: var(--ctx-ink); }
.ctxw-ig-bio { margin-top: .875rem; }
.ctxw-ig-bio p { font-size: .875rem; line-height: 1.55; }
.ctxw-ig-bio .ctxw-name { margin-bottom: .125rem; }
.ctxw-ig-link { color: #5865f2; font-weight: 500; }
.ctxw-ig-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  /* auto, not a fixed step: this card sits beside the Dribbble card, which is
     the taller of the two, and the row stretches both to match. With a fixed
     margin the surplus all pooled BELOW the button — 300px of nothing at
     1440. Pushing the button to the foot spends that space above it, where it
     reads as the app's own breathing room. The 1rem is the floor. */
  margin-top: auto;
  padding-top: 1rem;
  border-radius: 999px;   /* the page's one button shape */
  background-color: #5865f2;
  color: #fff;
  font-size: .9375rem;
  font-weight: 500;
  transition: background-color .3s var(--ctx-ease);
}
.ctxw:hover .ctxw-ig-follow { background-color: #4450e6; }

/* — X: the post — */
.ctxw-tweet {
  font-size: 1.0625rem;
  line-height: 1.45;
  margin-block: .875rem .25rem;
  flex: 1;
}
.ctxw-tweet-link { color: #4a99e9; }
.ctxw-x-actions {
  display: flex;
  align-items: center;
  gap: 1.375rem;
  margin-top: .75rem;
  color: var(--ctx-grey);
}

/* /* — Booking: the scheduling console —
   Four steps inside the widest card: a real month calendar with a scrolling
   slot column (a day can hold 28 slots),
then format { gap: 0; padding-bottom: 1.125rem; }

/* /* The swapping middle. A fixed height,
not a floor: it keeps the card the
   same size on all four steps { flex: none; height: 25rem; display: flex; gap: 1.5rem; }
/* /* The four step questions are h2: they are the only headings inside the booking
   flow,
and an h3 straight after the page h1 was a level skip. The Webflow base
   sheet line-heights headings by TAG (h2 36px { line-height: 30px; }

/* /* step 3 — the services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: .5rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* /* the end state — the request {
  flex: 1;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 1.5rem;
}

/* — Dribbble: the profile header — */
.ctxw.is-dr { padding: 1.5rem; }
.ctxw-dr-avawrap { position: relative; align-self: flex-start; margin-bottom: 1rem; }
.ctxw-dr-dot {
  position: absolute;
  right: .125rem;
  bottom: .125rem;
  width: .8125rem;
  height: .8125rem;
  border-radius: 50%;
  background-color: #2bd575;
  border: 2px solid #fff;
}
.ctxw-row.is-dr-name { gap: .625rem; }
.ctxw-row.is-dr-name .ctxw-name { flex: none; font-size: 1.125rem; }
.ctxw-dr-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .4375rem .8125rem;
  border-radius: 999px;
  background-color: var(--ctx-ink);
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
}
.ctxw-dr-badge .ctx-ico { color: #ea4c89; }
.ctxw-dr-line {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -.015em;
  font-weight: 500;
  margin-block: .875rem 1.25rem;
  max-width: 24ch;
}
/* three shots, so the card carries its own weight beside the console */
.ctxw-dr-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .625rem;
  flex: 1;
  min-height: 8rem;
  margin-bottom: 1.25rem;
}
.ctxw-dr-shots span { display: block; overflow: hidden; border-radius: 1rem; background-color: var(--ctx-surface); }
.ctxw-dr-shots img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ctx-ease);
}
.ctxw.is-dr:hover .ctxw-dr-shots img { transform: scale(1.04); }
.ctxw-dr-btns {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
}
.ctxw-drbtn {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding-inline: 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(4, 5, 4, .09);
  background-color: rgba(4, 5, 4, .035);
  color: var(--ctx-ink);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s var(--ctx-ease), border-color .3s var(--ctx-ease), color .3s var(--ctx-ease);
}
.ctxw-drbtn:hover { background-color: var(--ctx-surface-2); }
/* #ea4c89 is Dribbble's own brand pink and is left exactly as they publish it.
   White on it measured 3.56:1, so the FOREGROUND moves instead: dark ink reads
   5.28:1 on the same pink. The hover shade has to invert with it — darkening to
   #d63d7a drops dark ink to 4.31:1, so hover now lifts the pink instead, which
   is the same gesture in the other direction. */
.ctxw-drbtn.is-solid { background-color: #ea4c89; border-color: #ea4c89; color: #10120f; }
.ctxw-drbtn.is-solid:hover { background-color: #ee619b; border-color: #ee619b; }

/* ---------------------------------------------------------------- form */

.ctx-form .ctx-sub { margin-top: .75rem; }
.ctx-form-el { margin-top: 2.5rem; }
.ctx-field + .ctx-field,
.ctx-fields .ctx-field { margin-bottom: 1rem; }
.ctx-in {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  background-color: var(--ctx-surface);
  border: 1px solid rgba(4, 5, 4, .06);
  border-radius: .75rem;
  color: var(--ctx-ink);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.35;
  padding: 1.1875rem 1.5rem;
  transition: border-color .25s var(--ctx-ease), background-color .25s var(--ctx-ease);
}
.ctx-in::placeholder { color: var(--ctx-grey); opacity: 1; }
.ctx-in:hover { border-color: rgba(4, 5, 4, .14); }
.ctx-in:focus,
.ctx-in:focus-visible {
  /* A border-colour change alone is not a visible indicator (measured: the
     harness counts it as none). Real ring + the border promotion together. */
  outline: 2px solid var(--ctx-mint);
  outline-offset: 2px;
  border-color: var(--ctx-mint-off);
  background-color: #fff;
}
.ctx-in.is-area { resize: vertical; min-height: 10rem; }
.ctx-field.is-bad .ctx-in { border-color: rgba(4, 5, 4, .35); }
.ctx-err {
  font-size: .8125rem;
  color: var(--ctx-grey);
  margin-top: .375rem;
  min-height: 1rem;
  padding-left: .25rem;
}
.ctx-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.ctx-form-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.ctx-err { text-align: left; }
.ctx-submit[disabled] { opacity: .55; cursor: wait; }
.ctx-status {
  font-size: .9375rem;
  color: var(--ctx-grey);
  min-height: 1.25rem;
}
.ctx-status a { color: var(--ctx-ink); text-underline-offset: .2em; }

/* the form is the last section before the footer */
.ctx-form { padding-bottom: 8rem; }

/* success — a quiet card in place of the fields */
.ctx-done {
  background-color: var(--ctx-surface);
  border-radius: 2.25rem;
  padding: 3rem 2rem;
  text-align: center;
}
.ctx-done-ico {
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--ctx-mint);
  color: var(--ctx-ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ctx-done-t {
  margin-top: 1.25rem;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.ctx-done-sub {
  margin-top: .5rem;
  font-size: 1rem;
  color: var(--ctx-grey);
}
.ctx-form-el.is-sent .ctx-fields { display: none; }
.ctx-form-el .ctx-note { margin-top: 1.5rem; }

/* ---------------------------------------------------------------- responsive */

@media (max-width: 991px) {
  .ctx-s { padding-block: 4.5rem; }
  .ctx-hero { padding-top: 9.5rem; padding-bottom: 5.5rem; }
  .ctx-h1 { font-size: 3.75rem; }
  .ctx-h2 { font-size: 2.375rem; }
  /* three across is too tight below 992: two per row, and the fifth — the
     Dribbble card, the widest thing on the desk — takes the full twelve
     rather than sitting half-empty beside nothing. */
  .ctxw.is-mail, .ctxw.is-wa,
  .ctxw.is-inw, .ctxw.is-ig { grid-column: span 6; }
  .ctxw.is-dr { grid-column: span 12; }
  /* full width makes the three shots three times as tall as they are on
     desktop — the card ends up taller than the four above it put together.
     The shots are object-fit: cover, so a cap crops rather than distorts. */
  .ctxw-dr-shots { max-height: 17rem; }
}

@media (max-width: 767px) {
  /* one card per row from here down: below ~768 a half-width card is around
     260px, and every one of these is a miniature of an app whose own layout
     stops resolving at that size. Stacking is what keeps them legible.
     Written class-by-class on purpose: the 991 rule above is (0,2,0), so a
     bare `.ctxw` at (0,1,0) loses to it at every width both queries match —
     which is how these cards were still landing two-across on a phone. */
  .ctxw.is-mail, .ctxw.is-wa, .ctxw.is-inw,
  .ctxw.is-ig, .ctxw.is-dr { grid-column: span 12; }
  /* the mobile nav pills sit lower — same clearance the other pages use */
  .ctx-hero { padding-top: 8.5rem; }
  .ctx-h1 { font-size: 3.25rem; }
  /* /* the console stacks: calendar over slots { height: auto; }
}

@media (max-width: 479px) {
  .ctx-s { padding-block: 3.5rem; }
  /* restated: the .ctx-s rule above re-sets padding-block at equal specificity */
  .ctx-hero { padding-top: 8rem; padding-bottom: 4.5rem; }
  .ctx-h1 { font-size: 2.875rem; }
  .ctx-h2 { font-size: 2rem; }
  .ctx-widgets { gap: 1rem; }
  .ctx-hero-actions .ctx-pill { width: 100%; }
  /* /* the rail keeps its stations { flex-wrap: wrap; }
}

/* ---------------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  .ctxjs .ctx-reveal,
  .ctxjs .ctx-reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ctx-caret { animation: none; }
  .ctxw:hover { transform: none; }
  .ctxw-bubble.is-typing i { animation: none; }
  .ctx-pill,
  .ctxw,
  .ctxw-mini,
  .ctxw-inbtn,
  .ctxw-round-a,
  .ctxw-copy-pill,
  .ctx-in { transition: none; }
  .ctxw-round-a:hover,
  .ctxw-mini:hover,
  .ctxw.is-dr:hover .ctxw-dr-shots img,
  .ctxw:hover .ctxw-send { transform: none; }
}


/* ═══ RTL — html[dir="rtl"] only ═══════════════════════════════════════════
   Inert for EN/DE: only the /ar/ tree carries the attribute.

   The mock-up cards quote real contact details, and RTL reordered them into
   nonsense: the phone `+49 155 67042737` rendered `6704273715549+` — a
   number a reader could actually copy down wrong — and `@alaaabbod` put its
   @ on the wrong end. These are atomic tokens in single text nodes, so
   `unicode-bidi: plaintext` reads their direction off their own content and
   leaves any Arabic in the same class alone. The cards' LAYOUT mirrors
   correctly on its own (measured: 0 unmirrored blocks) — nothing to do. */
html[dir="rtl"] :is(.ctxw-status, .ctxw-dr-badge, .ctxw-ig-link) { unicode-bidi: plaintext; }
