/* =========================================================
   ZenQA — Miami Node
   Light & airy Sand base · South Beach synthwave sunset accents
   ========================================================= */

:root {
  /* Miami palette */
  --sunset-pink: #FF5E98;
  --beach-orange: #FF8A4C;
  --coral: #FF6B5C;
  --ocean-cyan: #2DD4DE;
  --teal: #1496A8;
  --sun-gold: #FFB84C;
  --night-navy: #0D1428;
  --sand: #FBF7EF;

  /* Derived surfaces */
  --sand-deep: #F3ECDF;
  --ink: #0D1428;
  --ink-soft: #4a5266;
  --ink-faint: #8a91a1;
  --line: rgba(13, 20, 40, 0.10);
  --card: #ffffff;

  /* Signature gradients */
  --sunset: linear-gradient(125deg, var(--sunset-pink) 0%, var(--beach-orange) 45%, var(--sun-gold) 78%);
  --sunset-ocean: linear-gradient(125deg, var(--sunset-pink) 0%, var(--beach-orange) 38%, var(--sun-gold) 62%, var(--ocean-cyan) 100%);
  --ocean: linear-gradient(125deg, var(--ocean-cyan), var(--teal));

  /* Type */
  --display: "Poppins", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;

  /* Rhythm */
  --header-h: 74px;
  --maxw: 1180px;
  --radius: 22px;
  /* iOS notch / Dynamic Island. With viewport-fit=cover the page fills the
     whole screen, so we add these insets back where content must clear the
     status bar (header) or the home indicator (footer). 0 on every other
     device. */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --radius-sm: 14px;
  --shadow-soft: 0 18px 50px -24px rgba(13, 20, 40, 0.28);
  --shadow-lift: 0 30px 70px -28px rgba(255, 94, 152, 0.45);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal);
}

.grad-text {
  background: var(--sunset-ocean);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* skip link */
.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--night-navy); color: #fff;
  padding: 10px 16px; border-radius: 10px; z-index: 10000;
  transition: top 0.2s;
}
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--body); font-weight: 600; font-size: 0.95rem;
  padding: 0.85em 1.5em; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: var(--sunset);
  box-shadow: 0 12px 30px -10px rgba(255, 107, 92, 0.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(255, 107, 92, 0.75); }
.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-3px); }
.btn-light {
  color: var(--night-navy); background: var(--sand);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -12px rgba(0,0,0,0.4); }
.btn-arrow { transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  /* Pad the bar down past the notch/Dynamic Island so the nav clears it and
     the header's own (opaque) background paints the status-bar strip — no
     page content bleeding up behind the camera. 0 on non-notched screens. */
  padding-top: var(--safe-top);
  backdrop-filter: saturate(160%) blur(14px);
  /* Solid, not translucent: the user asked for the top strip not to be
     see-through. Sand matches the bright site so it reads seamless. */
  background: var(--sand);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: var(--sand); }

/* Header over the dark cinematic intro. The intro canvas sits BELOW the
   sticky header, so a transparent header would reveal the Sand body behind it.
   Instead we paint the header the exact navy of the canvas's top row (#090D1A),
   so it reads as a seamless continuation of the dark scene — no cream bar. */
.site-header.over-dark {
  background: #090d1a;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header.over-dark .brand-name { color: #fff; }
.site-header.over-dark .brand-tag { color: rgba(255, 255, 255, 0.7); }
.site-header.over-dark .nav-links a { color: rgba(255, 255, 255, 0.82); }
.site-header.over-dark .nav-links a:hover { color: #fff; }
.site-header.over-dark .nav-toggle span { background: #fff; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 38px; height: 38px; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand-name .qa { background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-tag {
  display: block; font-family: var(--body); font-weight: 600;
  font-size: 0.5rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--sunset); border-radius: 2px; transition: width 0.25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 12px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: 0.3s; }

/* =========================================================
   Hero
   ========================================================= */
/* top padding clears the sticky header so the eyebrow isn't tucked under it */
.hero { position: relative; padding: calc(var(--header-h) + var(--safe-top) + 40px) 0 90px; overflow: hidden; }
.hero-glow {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(70px); opacity: 0.5; border-radius: 50%;
}
.hero-glow.one { width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle, var(--sunset-pink), transparent 65%); }
.hero-glow.two { width: 460px; height: 460px; bottom: -200px; left: -140px;
  background: radial-gradient(circle, var(--ocean-cyan), transparent 65%); opacity: 0.35; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); margin: 18px 0 0; }
.hero h1 .grad-text { display: inline; }
.hero-sub { font-size: 1.12rem; color: var(--ink-soft); margin-top: 22px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
/* Phones: keep the two CTAs side by side (each takes half the row) instead of
   stacking. Trim the padding/size so the longer label still fits on one line. */
@media (max-width: 560px) {
  .hero-cta { flex-wrap: nowrap; gap: 10px; }
  .hero-cta .btn {
    flex: 1 1 0; min-width: 0; justify-content: center;
    padding: 0.85em 0.6em; font-size: 0.85rem; gap: 0.35em;
  }
}
.hero-note { margin-top: 18px; font-size: 0.85rem; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,92,0.15); }

/* synthwave sun visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.sun-stage {
  position: relative; width: min(420px, 80vw); aspect-ratio: 1; border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, var(--sand) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid; place-items: center; overflow: hidden;
}
.sun-stage::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(45,212,222,0.08), transparent 40%),
    linear-gradient(0deg, rgba(20,150,168,0.12), transparent 55%);
}
.synthsun {
  position: relative; width: 58%; aspect-ratio: 1; border-radius: 50%;
  background: var(--sunset);
  -webkit-mask: repeating-linear-gradient(0deg, #000 0 9px, transparent 9px 13px);
  mask: repeating-linear-gradient(0deg, #000 0 9px, transparent 9px 13px);
  /* the mask stripes appear from ~55% down to give "rising sun" feel */
  animation: sunDrift 9s ease-in-out infinite alternate;
}
.synthsun.solid {
  position: absolute; -webkit-mask: none; mask: none;
  width: 58%; height: 29%; top: 21%; border-radius: 50% 50% 0 0;
  filter: saturate(1.1);
}
@keyframes sunDrift {
  from { transform: translateY(2px); filter: hue-rotate(0deg); }
  to   { transform: translateY(-6px); filter: hue-rotate(-8deg); }
}
.sun-grid {
  position: absolute; bottom: 0; left: 0; right: 0; height: 42%;
  background-image:
    linear-gradient(to right, rgba(20,150,168,0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,150,168,0.30) 1px, transparent 1px);
  background-size: 38px 30px;
  transform: perspective(280px) rotateX(58deg); transform-origin: bottom;
  -webkit-mask: linear-gradient(to top, #000, transparent);
  mask: linear-gradient(to top, #000, transparent);
}
.sun-mark {
  position: absolute; top: 18px; left: 18px; width: 46px; height: 46px;
  background: #fff; border-radius: 13px; display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
}
.sun-mark svg { width: 30px; height: 30px; }
.sun-badge {
  position: absolute; bottom: 18px; right: 18px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 8px 14px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   Trust bar
   ========================================================= */
.trust { border-block: 1px solid var(--line); background: var(--sand-deep); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide: var(--line);
}
.trust-item { padding: 30px 18px; text-align: center; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: none; }
.trust-num { font-family: var(--display); font-weight: 800; font-size: 2rem; }
.trust-label { font-size: 0.78rem; color: var(--ink-soft); margin-top: 4px; letter-spacing: 0.04em; }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-top: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 14px; }

/* =========================================================
   Services
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px 32px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: var(--sunset); transition: width 0.4s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: transparent; }
.card:hover::before { width: 100%; }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255,94,152,0.14), rgba(45,212,222,0.14));
  color: var(--coral);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; }
.card p { margin-top: 10px; color: var(--ink-soft); font-size: 0.95rem; }
.card .tools { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 4px 10px; border-radius: 999px; color: var(--teal);
  background: rgba(20,150,168,0.08); border: 1px solid rgba(20,150,168,0.18);
}

/* =========================================================
   What we test
   ========================================================= */
.test-strip { background: var(--night-navy); color: var(--sand); }
.test-strip .eyebrow { color: var(--sun-gold); }
.test-strip .section-head h2 { color: #fff; }
.test-strip .section-head p { color: rgba(251,247,239,0.66); }
.pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pill {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.pill:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); border-color: rgba(255,184,76,0.4); }
.pill-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; background: var(--sunset); color: #fff;
}
.pill-mark svg { width: 22px; height: 22px; }
.pill b { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.pill span { display: block; font-size: 0.8rem; color: rgba(251,247,239,0.6); }

/* =========================================================
   Process timeline
   ========================================================= */
/* Two-column layout: sticky intro on the left, timeline on the right.
   (Was an inline style on .wrap with no responsive fallback, which kept the
   timeline squeezed into half the screen on phones — the narrow column made
   each step's text wrap to many lines and pushed the dots far apart.) */
.process-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start;
}
.process-head { margin-bottom: 0; position: sticky; top: 110px; }
@media (max-width: 760px) {
  /* Stack: the timeline gets the full width, so steps wrap short and the dots
     sit close together like they do on desktop. */
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-head { position: static; }
}

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 3px;
  background: var(--sunset-ocean); border-radius: 3px; opacity: 0.5;
}
.step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 18px 0; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--display); font-weight: 800;
  color: #fff; background: var(--sunset); position: relative; z-index: 1;
  box-shadow: 0 10px 24px -10px rgba(255,107,92,0.6);
}
.step:nth-child(even) .step-num { background: var(--ocean); box-shadow: 0 10px 24px -10px rgba(20,150,168,0.6); }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--ink-soft); margin-top: 6px; font-size: 0.97rem; }

/* =========================================================
   Work / case studies
   ========================================================= */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--card); padding: 32px;
  transition: transform 0.35s, box-shadow 0.35s;
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.case-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.case-flag { font-size: 0.78rem; font-weight: 600; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; }
.case h3 { font-size: 1.4rem; margin-top: 14px; }
.case p { color: var(--ink-soft); margin-top: 10px; font-size: 0.96rem; }
.case-metrics { display: flex; gap: 28px; margin-top: 22px; }
.case-metric .n { font-family: var(--display); font-weight: 800; font-size: 1.7rem; }
.case-metric .n.grad { background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-metric .l { font-size: 0.78rem; color: var(--ink-faint); }
/* =========================================================
   Final CTA (dark)
   ========================================================= */
.cta { position: relative; background: var(--night-navy); color: var(--sand); overflow: hidden; }
.cta .cta-sun {
  position: absolute; width: 360px; height: 360px; right: -40px; top: -120px;
  background: var(--sunset);
  -webkit-mask: repeating-linear-gradient(0deg, #000 0 10px, transparent 10px 16px);
  mask: repeating-linear-gradient(0deg, #000 0 10px, transparent 10px 16px);
  border-radius: 50%; opacity: 0.4; filter: blur(0.4px);
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.cta h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); color: #fff; }
.cta p { color: rgba(251,247,239,0.72); margin-top: 14px; font-size: 1.05rem; }
.cta .eyebrow { color: var(--sun-gold); }

/* form */
.form { display: grid; gap: 14px; background: rgba(255,255,255,0.05); padding: 26px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(251,247,239,0.7); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font-family: var(--body); font-size: 0.95rem; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 12px 14px; transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(251,247,239,0.4); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sun-gold); background: rgba(255,255,255,0.1); }
.form .btn { justify-content: center; width: 100%; }
.form-note { font-size: 0.76rem; color: rgba(251,247,239,0.5); text-align: center; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--sand-deep); padding: 64px 0 calc(32px + var(--safe-bottom)); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { font-family: var(--body); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.92rem; color: var(--ink-soft); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--ink-faint); flex-wrap: wrap;
}
.footer-bottom .label { letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--teal); }

/* =========================================================
   Stub / subpage hero
   ========================================================= */
.page-hero { padding: calc(var(--header-h) + var(--safe-top) + 36px) 0 48px; position: relative; overflow: hidden; }
.page-hero .hero-glow.one { width: 420px; height: 420px; top: -180px; right: -100px; }
.page-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-top: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 16px; max-width: 560px; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--coral); }
.service-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; padding: 36px 0; border-top: 1px solid var(--line); }
.service-detail:first-of-type { border-top: none; }
.service-detail h3 { font-size: 1.5rem; }
.service-detail .eyebrow { margin-bottom: 8px; display: block; }
.service-detail p { color: var(--ink-soft); margin-top: 12px; }
.service-detail ul { margin-top: 16px; list-style: none; display: grid; gap: 10px; }
.service-detail li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink-soft); }
.service-detail li::before { content: "✓"; color: var(--coral); font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info .info-block { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-block h4 { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.contact-info .info-block p { margin-top: 6px; font-size: 1.05rem; }
.contact-info .info-block a { color: var(--teal); font-weight: 600; }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.contact-card .field label { color: var(--ink-soft); }
.contact-card .field input, .contact-card .field textarea { color: var(--ink); background: var(--sand); border-color: var(--line); }
.contact-card .field input::placeholder, .contact-card .field textarea::placeholder { color: var(--ink-faint); }
.contact-card .field input:focus, .contact-card .field textarea:focus { border-color: var(--coral); background: #fff; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

/* hero load-in (runs on load, not scroll) */
.hero-anim { opacity: 0; transform: translateY(22px); animation: heroIn 0.9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-anim[data-d="1"] { animation-delay: 0.1s; }
.hero-anim[data-d="2"] { animation-delay: 0.22s; }
.hero-anim[data-d="3"] { animation-delay: 0.34s; }
.hero-anim[data-d="4"] { animation-delay: 0.46s; }
.hero-anim[data-d="5"] { animation-delay: 0.58s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; min-height: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pills { grid-template-columns: repeat(2, 1fr); }
  .work-grid, .cta-inner, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  /* Mobile drawer follows the header theme. Default = light header → Sand
     panel with dark text; .over-dark (the cinematic intro / dark hero) →
     navy panel with light text. top clears the nav + the notch inset so the
     panel drops from the bottom of the bar, not from under the camera. */
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: calc(74px + var(--safe-top)); left: 0; right: 0; padding: 8px 24px 18px;
    background: var(--sand); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px -22px rgba(13, 20, 40, 0.35);
  }
  .nav.open .nav-links a {
    color: var(--ink);
    font-size: 1.02rem;
    padding: 14px 2px;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a:last-child { border-bottom: none; }
  .nav.open .nav-links a:hover { color: var(--coral); }
  .nav.open .nav-links a::after { display: none; }

  /* Dark header → dark drawer with light links. */
  .site-header.over-dark .nav.open .nav-links {
    background: var(--night-navy); border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px -22px rgba(0, 0, 0, 0.6);
  }
  .site-header.over-dark .nav.open .nav-links a {
    color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.07);
  }
  .site-header.over-dark .nav.open .nav-links a:hover { color: var(--sun-gold); }
}
@media (max-width: 620px) {
  .cards, .pills, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: none; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: none; }
  .case-metrics { gap: 20px; }
  .form .row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-anim { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Cinematic intro (chaos → clarity → Miami dawn)
   ========================================================= */
.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh; /* match .intro__sticky — on iOS 100vh (large) > 100svh (small),
                     so a vh section around an svh canvas leaves a toolbar-height
                     dark strip at the bottom. Keep both on svh. */
  /* The header is position:fixed (out of flow), so the intro naturally starts
     at the very top and fills the viewport behind it — no negative margin, so
     the pin math stays clean (the negative-margin hack caused a white strip /
     jump on Safari). The header is painted the same navy, so it reads seamless. */
  background: radial-gradient(120% 90% at 50% 0%, #0c1322 0%, #0a0e1a 45%, #05070d 100%);
}
.intro__sticky {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.intro__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.intro__overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 6vw; pointer-events: none; z-index: 2;
}
.intro-stage {
  grid-area: 1 / 1; margin: 0; max-width: 19ch; text-align: center;
  font-family: var(--display); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.06; font-size: clamp(2rem, 6vw, 4.6rem);
  opacity: 0; transform: translateY(18px) scale(0.99);
  will-change: opacity, transform; text-wrap: balance;
}
.intro-stage--1 { color: #ffe9ec; text-shadow: 0 0 38px rgba(255, 60, 80, 0.35); }
.intro-stage--2 { color: #fff2f0; text-shadow: 0 0 46px rgba(255, 90, 70, 0.45); }
.intro-stage--3 { color: #eafff8; text-shadow: 0 0 42px rgba(47, 224, 192, 0.45); }
.intro-stage--4 { color: #eafff9; text-shadow: 0 0 50px rgba(47, 224, 192, 0.5); }
/* final beat lands on the bright dawn — dark text with a warm glow */
.intro-stage--5 { color: var(--night-navy); text-shadow: 0 2px 40px rgba(255, 138, 76, 0.45); }
.intro-stage--5 .grad-text { background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }

.intro__hint {
  position: absolute; left: 50%; bottom: clamp(18px, 4vh, 40px);
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(234, 242, 255, 0.6); pointer-events: none; transition: opacity 0.5s ease;
}
.intro__hint-arrow { font-size: 1rem; animation: introBob 1.8s ease-in-out infinite; }
@keyframes introBob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* sentinel that flips the header from dark to light at the dawn handoff */
.bright-top { position: relative; height: 1px; width: 100%; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .intro, .intro__sticky { height: 100vh; height: 100svh; }
  .intro__hint, .intro__hint-arrow { display: none; animation: none; }
  .intro-stage--5 { opacity: 1; transform: none; }
}

/* =========================================================
   Problem section ("You know the feeling.")
   ========================================================= */
.problem { background: var(--sand); }
.problem .section-head { max-width: 720px; }
.problem-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}
.problem-item {
  position: relative;
  padding: 6px 0 6px 26px;
  border-left: 2px solid var(--line);
  transition: border-color 0.35s ease;
}
.problem-item::before {
  content: ""; position: absolute; left: -2px; top: 0; width: 2px; height: 0;
  background: var(--sunset-ocean); transition: height 0.6s cubic-bezier(.2,.8,.2,1);
}
.problem-item.in::before { height: 100%; }
.problem-num {
  display: inline-block;
  font-family: var(--display); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.24em;
  color: var(--coral); text-transform: uppercase;
  margin-bottom: 10px;
}
.problem-item p { color: var(--ink); font-size: 1.03rem; line-height: 1.6; max-width: 36ch; }
.problem-close {
  margin-top: 56px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink); max-width: 640px; line-height: 1.4;
}

/* =========================================================
   Method ("The Release Confidence System")
   ========================================================= */
.method { background: var(--card); border-block: 1px solid var(--line); }
.method-list {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.method-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  padding: 38px 40px;
  align-items: start;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
}
.method-row:last-child { border-bottom: none; }
.method-row:hover { background: var(--sand); }
.method-row::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--sunset-ocean); transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s ease;
}
.method-row:hover::after { transform: scaleY(1); }
.method-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.8rem, 4.5vw, 3.6rem); line-height: 0.9;
  background: var(--sunset-ocean);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.03em;
}
.method-body h3 { font-size: 1.25rem; }
.method-body p { color: var(--ink-soft); margin-top: 10px; max-width: 60ch; font-size: 0.98rem; }

/* =========================================================
   AI section ("All tests passed" should mean ...)
   ========================================================= */
.ai-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(60% 70% at 15% 15%, rgba(255, 94, 152, 0.22), transparent 60%),
    radial-gradient(50% 60% at 88% 85%, rgba(45, 212, 222, 0.18), transparent 65%),
    var(--night-navy);
  color: var(--sand); overflow: hidden;
}
.ai-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07; mix-blend-mode: overlay;
}
.ai-section .wrap { position: relative; z-index: 1; }
.ai-section .eyebrow { color: var(--sun-gold); }
.ai-headline {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); color: #fff;
  margin-top: 18px; line-height: 1.1; max-width: 22ch; letter-spacing: -0.02em;
  text-wrap: balance;
}
.ai-headline em { font-style: normal; background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ai-body { margin-top: 40px; display: grid; gap: 22px; max-width: 64ch; }
.ai-body p { color: rgba(251, 247, 239, 0.85); font-size: 1.06rem; line-height: 1.7; }
.ai-pull {
  margin-top: 42px; padding: 18px 0 18px 24px;
  border-left: 3px solid var(--sun-gold);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #fff; max-width: 56ch; line-height: 1.4;
}

/* =========================================================
   Risk reversal
   ========================================================= */
.risk { background: var(--sand-deep); padding: 80px 0; }
.risk .section-head { max-width: 720px; margin-inline: auto; text-align: center; }
.risk-promises {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 980px; margin-inline: auto;
}
.risk-promise {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 18px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.risk-promise:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: rgba(255,107,92,0.35); }
.risk-promise .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--sunset); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 0.85rem;
}
.risk-promise b { font-family: var(--display); font-weight: 700; font-size: 0.98rem; }
.risk-promise span { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.5; }

/* =========================================================
   Form state (success / error)
   ========================================================= */
.form-status { font-size: 0.88rem; padding: 12px 14px; border-radius: 10px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(45, 212, 222, 0.12); color: #aef0f5; border: 1px solid rgba(45, 212, 222, 0.3); }
.form-status.error { background: rgba(255, 107, 92, 0.14); color: #ffd6cf; border: 1px solid rgba(255, 107, 92, 0.35); }
.contact-card .form-status.success { color: var(--teal); background: rgba(20,150,168,0.08); border-color: rgba(20,150,168,0.25); }
.contact-card .form-status.error { color: var(--coral); background: rgba(255, 107, 92, 0.08); border-color: rgba(255, 107, 92, 0.25); }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* =========================================================
   Responsive for new sections
   ========================================================= */
@media (max-width: 940px) {
  .problem-grid { grid-template-columns: 1fr; gap: 30px; }
  .method-row { grid-template-columns: 86px 1fr; padding: 28px 24px; gap: 22px; }
  .method-num { font-size: 2.4rem; }
  .ai-section { padding: 90px 0; }
  .risk-promises { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .risk-promises { grid-template-columns: 1fr; }
  .method-row { grid-template-columns: 1fr; gap: 8px; }
}

/* =========================================================
   Pill-as-link (coverage grid — AI-built apps tile)
   ========================================================= */
.pill-link {
  position: relative; cursor: pointer; color: inherit; text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 94, 152, 0.18), rgba(45, 212, 222, 0.12));
  border-color: rgba(255, 138, 76, 0.45);
}
.pill-link::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-sm);
  pointer-events: none; box-shadow: 0 0 0 0 rgba(255, 138, 76, 0.45);
  transition: box-shadow 0.4s ease;
}
.pill-link:hover { background: linear-gradient(135deg, rgba(255, 94, 152, 0.28), rgba(45, 212, 222, 0.18)); }
.pill-link:hover::after { box-shadow: 0 0 0 4px rgba(255, 138, 76, 0.18); }
.pill-mark-ai { background: var(--sunset-ocean) !important; }
.pill-arrow {
  display: inline-block; font-size: 0.7em; color: var(--sun-gold);
  margin-left: 6px; transform: translate(0, -1px);
  transition: transform 0.25s ease;
}
.pill-link:hover .pill-arrow { transform: translate(3px, -4px); }

/* =========================================================
   Case-metric row — collapse to a wrap so three stats fit
   ========================================================= */
.case-metrics { flex-wrap: wrap; row-gap: 16px; }

/* =========================================================
   AI-Built Apps landing page
   ========================================================= */
.ai-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + var(--safe-top) + 80px) 0 90px;
  color: var(--sand);
  background:
    radial-gradient(60% 70% at 20% 25%, rgba(255, 94, 152, 0.22), transparent 60%),
    radial-gradient(50% 60% at 85% 80%, rgba(45, 212, 222, 0.18), transparent 65%),
    radial-gradient(120% 90% at 50% 0%, #0c1322 0%, #0a0e1a 55%, #06080f 100%);
}
.ai-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.08; mix-blend-mode: overlay;
}
.ai-hero-glow {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(80px); opacity: 0.35; border-radius: 50%;
}
.ai-hero-glow.one { width: 560px; height: 560px; top: -180px; right: -140px;
  background: radial-gradient(circle, var(--sunset-pink), transparent 65%); }
.ai-hero-glow.two { width: 440px; height: 440px; bottom: -160px; left: -120px;
  background: radial-gradient(circle, var(--ocean-cyan), transparent 65%); opacity: 0.28; }
.ai-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.prompt-eyebrow {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 500; font-size: 0.82rem; letter-spacing: 0.04em;
  color: rgba(255, 184, 76, 0.95);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255, 184, 76, 0.06);
  border: 1px solid rgba(255, 184, 76, 0.18);
}
.prompt-caret { color: var(--sunset-pink); font-weight: 700; }
.ai-hero h1 {
  margin-top: 22px;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.05; letter-spacing: -0.02em; color: #fff;
  text-wrap: balance;
}
.ai-hero-sub {
  margin-top: 22px; font-size: 1.12rem; max-width: 640px;
  color: rgba(251, 247, 239, 0.82); line-height: 1.7;
}
.ai-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.ai-hero-fine {
  margin-top: 18px; font-size: 0.85rem;
  color: rgba(251, 247, 239, 0.55);
  display: flex; align-items: center; gap: 8px;
}
.ai-hero-fine .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,92,0.18); }
.ai-tool-row {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.86rem; letter-spacing: 0.04em;
  color: rgba(251, 247, 239, 0.62);
}
.ai-tool-row i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 184, 76, 0.45); flex: none; }
.ai-tool-row span { transition: color 0.3s ease; }
.ai-tool-row span:hover { color: var(--sun-gold); }

/* AI-apps problem list */
.ai-problem { background: var(--sand); }
.ai-problem .section-head { max-width: 760px; }
.ai-problem-list {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 36px;
  list-style: none; padding: 0;
}
.ai-problem-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  color: var(--ink); font-size: 0.98rem; line-height: 1.55;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ai-problem-list li:hover { transform: translateY(-2px); border-color: rgba(255, 107, 92, 0.35); }
.li-mark {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  background: var(--sunset); color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 0.95rem;
}
.ai-problem-close {
  margin-top: 44px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink); max-width: 660px; line-height: 1.4;
}

/* AI-apps "what we do" grid */
.ai-do { background: var(--card); border-block: 1px solid var(--line); }
.ai-do-grid {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ai-do-card {
  position: relative; padding: 30px 26px 28px;
  background: var(--sand); border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s, box-shadow 0.35s;
}
.ai-do-card::before {
  content: ""; position: absolute; left: 26px; right: 26px; top: 0; height: 3px;
  background: var(--sunset-ocean); border-radius: 0 0 3px 3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.ai-do-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.ai-do-card:hover::before { transform: scaleX(1); }
.ai-do-num {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 500; font-size: 0.78rem;
  color: var(--teal); letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.ai-do-card h3 { font-size: 1.18rem; }
.ai-do-card p { margin-top: 10px; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }

/* AI-apps "who this is for" grid */
.ai-who { background: var(--sand-deep); }
.ai-who-grid {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ai-who-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.ai-who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(255, 138, 76, 0.35); }
.ai-who-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,94,152,0.15), rgba(45,212,222,0.15));
  color: var(--coral);
}
.ai-who-icon svg { width: 22px; height: 22px; }
.ai-who-card h3 { font-size: 1.12rem; line-height: 1.25; }
.ai-who-card p { margin-top: 8px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }

@media (max-width: 940px) {
  .ai-hero { padding: calc(var(--header-h) + 50px) 0 70px; }
  .ai-problem-list { grid-template-columns: 1fr; gap: 12px; }
  .ai-do-grid, .ai-who-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Cursor hint that the intro is tap-skippable */
.intro__sticky { cursor: pointer; }
.intro__hint-mobile { display: none; }
@media (max-width: 767px) {
  .intro__hint-desktop { display: none; }
  .intro__hint-mobile { display: inline; }
}
