/* Mostrador Studio — small multi-page site. Light theme only: the brand is Valencian tile blue on white. */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque-opsz.woff2") format("woff2-variations"), url("fonts/bricolage-grotesque-opsz.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-wght.woff2") format("woff2-variations"), url("fonts/instrument-sans-wght.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #FFFFFF;
  --tint: #EEF3FC;
  --ink: #0B1B3F;
  --ink-2: #3A4766;
  --line: #D6DEEE;
  --blue: #1D4ED8;
  --blue-d: #1740B0;
  --blue-l: #3E6BEA;
  --orange: #F26B1D;
  --orange-ink: #B4470C;   /* orange dark enough for small text on white */
  --wa: #0F7B3F;
  --wa-d: #0B6333;
  --receipt: #FFFEFA;
  --display: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --gutter: clamp(16px, 5vw, 48px);
  --max: 1160px;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 17px/1.6 var(--body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--display); margin: 0; text-wrap: balance; }
h2 { font-weight: 800; font-size: clamp(32px, 4.6vw, 54px); line-height: 1.02; letter-spacing: -0.02em; }
h3 { font-weight: 700; font-size: 21px; line-height: 1.2; letter-spacing: -0.01em; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.nowrap { white-space: nowrap; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.lead { color: var(--ink-2); font-size: clamp(17px, 1.6vw, 19px); max-width: 34em; margin: 0; }

.skip { position: absolute; left: -9999px; top: 12px; z-index: 100; background: var(--ink); color: #fff; padding: 12px 16px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.skip:focus { left: 12px; }

/* Header */
.top { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.top-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 34px; height: 34px; flex: none; }
.logo-word { font: 800 23px/1 var(--display); letter-spacing: -0.03em; }
.logo-word span { font: 500 13px/1 var(--body); letter-spacing: 0; color: var(--ink-2); }
.nav { display: flex; align-items: center; gap: 26px; font-size: 15px; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; }
.nav-links a { position: relative; display: block; padding-block: 6px; text-decoration: none; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; border-radius: 1px; background: var(--orange); }
.menu-btn { display: none; }
@media (max-width: 860px) {
  .nav { gap: 10px; }
  .menu-btn { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); cursor: pointer; }
  .menu-btn span, .menu-btn span::before, .menu-btn span::after { display: block; width: 18px; height: 2px; border-radius: 1px; background: currentColor; transition: transform .2s ease, background-color .2s ease; }
  .menu-btn span { position: relative; }
  .menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; }
  .menu-btn span::before { top: -6px; }
  .menu-btn span::after { top: 6px; }
  .top.open .menu-btn span { background: transparent; }
  .top.open .menu-btn span::before { transform: translateY(6px) rotate(45deg); }
  .top.open .menu-btn span::after { transform: translateY(-6px) rotate(-45deg); }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; padding: 4px var(--gutter) 12px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 24px 30px -24px rgba(11,27,63,.35); }
  .top.open .nav-links { display: flex; }
  .nav-links a { display: flex; align-items: center; min-height: 54px; font: 600 18px/1.2 var(--body); color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a[aria-current="page"] { color: var(--blue); }
  .nav-links a[aria-current="page"]::after { display: none; }
}
@media (max-width: 440px) {
  .top .btn-sm { width: 44px; padding: 0; }
  .top .btn-sm .lbl { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}
@media (max-width: 380px) { .logo-word span { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 12px; font: 600 16px/1 var(--body); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: background-color .2s ease, border-color .2s ease, transform .2s ease; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 44px; padding: 0 14px; font-size: 15px; gap: 8px; }
.btn-sm svg { width: 18px; height: 18px; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-d); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-d); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--ink-2); }
.btn-light { background: #fff; color: var(--blue-d); }
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero { padding-block: clamp(40px, 7vw, 96px) clamp(56px, 8vw, 104px); overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.kicker { font: 600 15px/1.3 var(--body); color: var(--blue); margin: 0 0 18px; display: flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 18px; height: 4px; border-radius: 2px; background: var(--orange); }
.hero h1 { font-weight: 800; font-size: clamp(40px, 7.2vw, 86px); line-height: .98; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .lead { margin: 24px 0 30px; }
.promises { list-style: none; margin: 32px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 28px; color: var(--ink-2); font-size: 15px; }
.promises strong { font: 700 21px/1 var(--display); color: var(--ink); margin-right: 4px; letter-spacing: -0.01em; }

/* Phone mockup (an invented example business, labelled as such) */
.hero-visual { position: relative; width: 100%; max-width: 380px; margin-inline: auto; padding-bottom: 36px; }
.phone { position: relative; width: min(300px, 82%); margin-left: auto; aspect-ratio: 9 / 18.5; border-radius: 40px; background: var(--ink); padding: 10px; box-shadow: 0 40px 70px -30px rgba(11,27,63,.55), 0 0 0 1px rgba(11,27,63,.1); animation: rise .6s cubic-bezier(.2,.7,.2,1) both; }
@media (max-width: 900px) { .phone { margin-inline: auto; } }
.phone-tag { position: absolute; top: -12px; right: 22px; z-index: 2; background: var(--orange); color: var(--ink); font: 700 12.5px/1 var(--body); padding: 7px 11px; border-radius: 999px; }
.screen { height: 100%; border-radius: 31px; overflow: hidden; background: #15181D; color: #ECEFF3; display: flex; flex-direction: column; }
.sb { display: flex; justify-content: space-between; align-items: center; padding: 11px 20px 6px; font: 600 11px/1 var(--body); }
.sb-icons { display: flex; gap: 3px; align-items: flex-end; }
.sb-icons i { width: 3px; background: #ECEFF3; border-radius: 1px; }
.sb-icons i:nth-child(1) { height: 5px; } .sb-icons i:nth-child(2) { height: 7px; } .sb-icons i:nth-child(3) { height: 9px; }
.mini-top { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 16px 11px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mini-top b { font: 800 17px/1 var(--display); letter-spacing: -0.02em; }
.mini-top span { font-size: 11px; color: #9AA3AE; }
.mini-hero { padding: 18px 16px 20px; background: linear-gradient(160deg, #222831 0%, #15181D 75%); position: relative; }
.mini-hero > * { position: relative; z-index: 1; }
.mini-hero::after { content: ""; position: absolute; z-index: 0; right: -30px; top: 8px; width: 90px; height: 14px; background: #FFC400; transform: rotate(-28deg); opacity: .9; }
.mini-k { margin: 0; font: 600 11px/1.3 var(--body); color: #FFC400; }
.mini-h { margin: 8px 0 16px; font: 800 25px/1.02 var(--display); letter-spacing: -0.02em; color: #fff; max-width: 9em; }
.mini-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--wa); color: #fff; font: 700 12px/1 var(--body); padding: 10px 12px; border-radius: 9px; }
.mini-btn svg { width: 13px; height: 13px; }
.mini-list { list-style: none; margin: 0; padding: 14px 16px 6px; display: grid; gap: 9px; font-size: 12px; color: #C9D0D7; }
.mini-list li { display: flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #5B6470; flex: none; }
.dot.ok { background: #2BC46E; }
.mini-form { margin: 12px 16px 16px; padding: 12px 12px 13px; border-radius: 14px; background: #FFC400; color: #15181D; display: grid; gap: 6px; }
.mf-t { margin: 0 0 2px; font: 800 14px/1.1 var(--display); letter-spacing: -0.01em; }
.mf-in { display: block; background: rgba(255,255,255,.62); border: 1px solid rgba(21,24,29,.18); border-radius: 6px; padding: 6px 8px; font-size: 11px; line-height: 1.2; }
.mf-btn { margin-top: 2px; background: #15181D; color: #FFC400; font: 700 11px/1.1 var(--body); padding: 9px 8px; border-radius: 7px; text-align: center; }

.bubble { position: absolute; left: 0; bottom: 0; width: min(262px, 80%); background: #fff; border-radius: 18px 18px 18px 6px; padding: 13px 15px 12px; box-shadow: 0 24px 44px -18px rgba(11,27,63,.4), 0 0 0 1px var(--line); animation: pop .45s cubic-bezier(.2,.7,.2,1) .45s both; }
@media (min-width: 901px) { .bubble { left: -36px; } }
.bubble p { margin: 0; }
.bubble-h { display: flex; align-items: center; gap: 6px; font: 600 12px/1 var(--body); color: var(--wa); }
.bubble-h svg { width: 14px; height: 14px; }
.bubble-t { margin: 8px 0 10px !important; font-size: 14px; line-height: 1.42; color: var(--ink); }
.bubble-f { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink-2); }
.bubble-f span { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, #8FA3C9, #4D618A); }
.bubble-f span:nth-child(2) { background: linear-gradient(135deg, #C9A38F, #8A5E4D); }
.bubble-f span:nth-child(3) { background: linear-gradient(135deg, #9CC3B0, #4D8A6E); margin-right: 4px; }

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }

/* Sections */
.block { padding-block: clamp(64px, 9vw, 112px); }
.tint { background: var(--tint); }
.head { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 56px; align-items: end; margin-bottom: clamp(32px, 5vw, 52px); }
@media (max-width: 800px) { .head { grid-template-columns: 1fr; } }

/* Features: one ruled grid, not a pile of cards */
.features { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.features li { background: var(--paper); padding: 28px 26px 32px; }
.features svg { width: 30px; height: 30px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 18px; }
.features h3 { margin-bottom: 8px; }
.features p { margin: 0; color: var(--ink-2); font-size: 16px; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } .features li { padding: 24px 20px 26px; } }

/* Steps: numbered because it is a real sequence; the number sits on a Valencian-style tile */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px 28px; }
.tile-n { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 12px; color: #fff; font: 800 27px/1 var(--display);
  background:
    radial-gradient(circle at 0 0, var(--blue-l) 0 11px, transparent 11.5px),
    radial-gradient(circle at 100% 0, var(--blue-l) 0 11px, transparent 11.5px),
    radial-gradient(circle at 0 100%, var(--blue-l) 0 11px, transparent 11.5px),
    radial-gradient(circle at 100% 100%, var(--blue-l) 0 11px, transparent 11.5px),
    var(--blue); }
.when { margin: 18px 0 0; font: 600 13.5px/1.2 var(--body); color: var(--orange-ink); }
.when + h3 { margin-top: 6px !important; }
.steps h3 { margin: 20px 0 8px; }
.steps p { margin: 0; color: var(--ink-2); font-size: 16px; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.aside { margin: 28px 0 0; font-weight: 600; display: flex; gap: 12px; align-items: baseline; }
.aside::before { content: ""; width: 10px; height: 10px; background: var(--orange); border-radius: 2px; flex: none; transform: translateY(-1px); }

/* Price */
.price-grid { display: grid; grid-template-columns: 1fr minmax(300px, 420px); gap: clamp(40px, 7vw, 96px); align-items: center; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }
.price-grid .lead { margin-top: 18px; }
.notes { margin: 30px 0 0; display: grid; gap: 20px; }
.notes dt { font-weight: 600; font-size: 17px; }
.notes dd { margin: 4px 0 0; color: var(--ink-2); font-size: 16px; max-width: 36em; }
.ticket-wrap { filter: drop-shadow(0 22px 26px rgba(11,27,63,.22)); transform: rotate(-1.4deg); width: 100%; max-width: 400px; margin-inline: auto; }
.ticket { --r: 7px; margin: 0; background: var(--receipt); color: #1B1B1B; font: 400 13.5px/1.5 var(--mono); padding: 34px 26px 36px;
  -webkit-mask: radial-gradient(var(--r) at 50% 0, #0000 calc(100% - .5px), #000) 50% 0 / calc(2 * var(--r)) 51% repeat-x, radial-gradient(var(--r) at 50% 100%, #0000 calc(100% - .5px), #000) 50% 100% / calc(2 * var(--r)) 51% repeat-x;
          mask: radial-gradient(var(--r) at 50% 0, #0000 calc(100% - .5px), #000) 50% 0 / calc(2 * var(--r)) 51% repeat-x, radial-gradient(var(--r) at 50% 100%, #0000 calc(100% - .5px), #000) 50% 100% / calc(2 * var(--r)) 51% repeat-x; }
.t-brand { margin: 0; text-align: center; font: 800 23px/1 var(--display); letter-spacing: -0.02em; color: var(--ink); }
.t-sub { margin: 6px 0 16px; padding-bottom: 14px; text-align: center; font-size: 12px; color: #555; border-bottom: 1px dashed #B9B9B9; }
.ticket table { width: 100%; border-collapse: collapse; }
.ticket th { text-align: left; font-weight: 400; padding: 5px 0; }
.ticket td { text-align: right; padding: 5px 0 5px 12px; white-space: nowrap; vertical-align: top; }
.t-disc td, .t-disc th { color: var(--orange-ink); }
.ticket tfoot th, .ticket tfoot td { border-top: 1px dashed #B9B9B9; padding-top: 14px; font-weight: 700; }
.ticket tfoot th { font-size: 15px; }
.ticket tfoot td { font: 800 26px/1 var(--display); color: var(--ink); letter-spacing: -0.02em; }
.t-foot { margin: 18px 0 0; padding-top: 14px; border-top: 1px dashed #B9B9B9; text-align: center; font-size: 12px; color: #555; }

/* Two-column text + list layout */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px clamp(40px, 7vw, 96px); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split .lead { margin-top: 18px; }
.split .lead + .lead { margin-top: 14px; }
.rules { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.rules li { padding: 18px 0 18px 26px; border-bottom: 1px solid var(--line); color: var(--ink-2); position: relative; }
.rules li::before { content: ""; position: absolute; left: 2px; top: 27px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.rules strong { color: var(--ink); font-weight: 600; }

/* FAQ: one row per topic, the topic title sticks while you read its answers */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px clamp(40px, 7vw, 96px); align-items: start; }
.faq-grid + .faq-grid { margin-top: clamp(48px, 6vw, 80px); }
.faq-grid h2 { font-size: clamp(26px, 3vw, 36px); }
.faq-grid .faq-intro { margin: 12px 0 0; color: var(--ink-2); font-size: 16px; max-width: 24em; }
@media (min-width: 861px) { .faq-side { position: sticky; top: 100px; } }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; min-height: 44px; font: 600 18px/1.35 var(--body); display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 800 26px/1 var(--display); color: var(--blue); transition: transform .25s ease; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--ink-2); max-width: 60ch; }

/* CTA */
.cta { background: var(--blue); color: #fff; padding-block: clamp(52px, 7vw, 84px); }
.cta :focus-visible { outline-color: #fff; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { font-size: clamp(30px, 4vw, 46px); max-width: 16em; }
.cta p { margin: 12px 0 0; color: rgba(255,255,255,.88); }

/* Inner pages: title band with a faded Valencian tile pattern on the right */
.page-head { position: relative; overflow: hidden; background: var(--tint); border-bottom: 1px solid var(--line); padding-block: clamp(36px, 6vw, 76px) clamp(44px, 6.5vw, 88px); }
.page-head::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: min(48%, 600px); pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(242,107,29,.45) 0 3px, transparent 3.5px),
    radial-gradient(circle at 0 0, rgba(29,78,216,.09) 0 17px, transparent 17.5px),
    radial-gradient(circle at 100% 0, rgba(29,78,216,.09) 0 17px, transparent 17.5px),
    radial-gradient(circle at 0 100%, rgba(29,78,216,.09) 0 17px, transparent 17.5px),
    radial-gradient(circle at 100% 100%, rgba(29,78,216,.09) 0 17px, transparent 17.5px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to left, #000 5%, transparent 80%);
          mask-image: linear-gradient(to left, #000 5%, transparent 80%); }
@media (max-width: 760px) { .page-head::after { width: 100%; opacity: .45; } }
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { font-weight: 800; font-size: clamp(40px, 6.4vw, 76px); line-height: .98; letter-spacing: -0.03em; max-width: 12em; }
.page-head .lead { margin-top: 20px; }
.crumbs { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--ink-2); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #9AA6BF; }
.crumbs a { color: var(--blue); font-weight: 600; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* Home: cards that lead to the inner pages */
.explore { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.link-card { display: flex; flex-direction: column; height: 100%; padding: 24px 22px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.link-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 20px 34px -24px rgba(11,27,63,.5); }
.lc-stat { font: 800 clamp(30px, 3vw, 38px)/1 var(--display); letter-spacing: -0.03em; color: var(--blue); }
.lc-stat small { font: 600 14px/1 var(--body); letter-spacing: 0; color: var(--ink-2); margin-left: 4px; }
.link-card h3 { margin: 22px 0 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.link-card p { margin: 0 0 22px; color: var(--ink-2); font-size: 16px; }
.lc-go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--blue); }
.lc-go svg { width: 18px; height: 18px; transition: transform .2s ease; }
.link-card:hover .lc-go svg { transform: translateX(4px); }
@media (max-width: 1020px) { .explore { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .explore { grid-template-columns: 1fr; } }

/* Lists with a tick (included) or a cross (not included) */
.checklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.checklist li { position: relative; padding: 16px 0 16px 40px; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 17px; width: 25px; height: 25px; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.5 12.5l4 4L18.5 7.5'/%3E%3C/svg%3E") center / 15px no-repeat; }
.checklist.no li::before { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4766' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center / 13px no-repeat; box-shadow: inset 0 0 0 1.5px var(--line); }
.checklist strong { color: var(--ink); font-weight: 600; }
.lead + .checklist { margin-top: 28px; }
.checklist a, .faq a { color: var(--blue); font-weight: 600; }

/* Three cards in a row */
.cards3 { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards3 > li { padding: 26px 24px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.cards3 h3 { margin-bottom: 8px; }
.cards3 p { margin: 0; color: var(--ink-2); font-size: 16px; }
.cards3 p + p { margin-top: 10px; }
.ic { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px; border-radius: 12px; background: var(--tint); }
.tint .ic { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.ic svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 900px) { .cards3 { grid-template-columns: 1fr; } }

/* About: the studio's card */
.id-card { position: relative; overflow: hidden; margin: 0; padding: 28px 26px 18px; border-radius: 20px; background: var(--ink); color: #fff; box-shadow: 0 34px 60px -34px rgba(11,27,63,.7); }
.id-card::after { content: ""; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; pointer-events: none;
  background:
    radial-gradient(circle at 0 0, rgba(62,107,234,.2) 0 17px, transparent 17.5px),
    radial-gradient(circle at 100% 0, rgba(62,107,234,.2) 0 17px, transparent 17.5px),
    radial-gradient(circle at 0 100%, rgba(62,107,234,.2) 0 17px, transparent 17.5px),
    radial-gradient(circle at 100% 100%, rgba(62,107,234,.2) 0 17px, transparent 17.5px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 100% 0, #000 20%, transparent 70%);
          mask-image: radial-gradient(circle at 100% 0, #000 20%, transparent 70%); }
.id-top { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.14); }
.id-top svg { width: 54px; height: 54px; flex: none; }
.id-name { margin: 0; font: 800 23px/1.1 var(--display); letter-spacing: -0.02em; }
.id-role { margin: 4px 0 0; font-size: 14px; color: rgba(255,255,255,.7); }
.id-card dl { position: relative; z-index: 1; margin: 0; }
.id-card dl div { display: grid; grid-template-columns: 140px 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; }
.id-card dl div:last-child { border-bottom: 0; }
.id-card dt { color: rgba(255,255,255,.62); }
.id-card dd { margin: 0; }
@media (max-width: 420px) { .id-card dl div { grid-template-columns: 1fr; gap: 2px; } }

/* Footer */
.foot { border-top: 1px solid var(--line); color: var(--ink-2); font-size: 15px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--ink); text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; padding-block: 52px 40px; }
.foot-brand p { margin: 16px 0 0; max-width: 28em; }
.foot-h { margin: 0 0 14px; font: 700 14px/1 var(--body); color: var(--ink); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; position: relative; padding-block: 24px calc(24px + env(safe-area-inset-bottom, 0px)); font-size: 14px; }
.foot-row::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: var(--line); }

/* Legal page */
.legal { padding-block: clamp(20px, 3vw, 36px) clamp(56px, 8vw, 96px); }
.legal h2 { font-size: clamp(24px, 3vw, 30px); margin: 44px 0 12px; }
.legal p, .legal li { color: var(--ink-2); max-width: 68ch; }
.legal dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; margin: 16px 0 0; }
.legal dt { font-weight: 600; }
.legal dd { margin: 0; color: var(--ink-2); }
@media (max-width: 520px) { .legal dl { grid-template-columns: 1fr; gap: 2px; } .legal dd { margin-bottom: 10px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone, .bubble { animation: none; }
  .btn, .btn:hover, .link-card, .link-card:hover, .lc-go svg { transition: none; transform: none; }
}
