/* ==========================================================================
   TrueLogic Cloud — stylesheet
   --------------------------------------------------------------------------
   To re-theme the whole site, edit the :root block below. Nothing else
   hard-codes a colour, radius or font. Change a token, every page follows.
   ========================================================================== */

:root {
  /* --- Brand gradient: cyan -> indigo -> magenta ------------------------- */
  --flux-1: #22E0FF;
  --flux-2: #6D5BFF;
  --flux-3: #FF4FA3;
  --flux: linear-gradient(100deg, var(--flux-1) 0%, var(--flux-2) 48%, var(--flux-3) 100%);

  /* --- Surfaces ---------------------------------------------------------- */
  --ink:      #070B1E;   /* deepest background */
  --ink-2:    #0D1330;   /* raised panel on dark */
  --ink-3:    #151C42;   /* hover / border on dark */
  --paper:    #FFFFFF;   /* light section background */
  --paper-2:  #F4F6FD;   /* light section, tinted */

  /* --- Text -------------------------------------------------------------- */
  --text-on-dark:   #EEF1FF;
  --muted-on-dark:  #939CC4;
  --text-on-light:  #0B1030;
  --muted-on-light: #545C82;

  /* --- Signal (build status green — used only for pass/verified states) -- */
  --pass: #3DFFA8;

  /* --- Type -------------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter Tight", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* --- Shape & rhythm ---------------------------------------------------- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --gutter: clamp(20px, 5vw, 48px);
  --maxw: 1200px;
  --section-y: clamp(72px, 9vw, 132px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.95rem, 4.1vw, 3.05rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.018em; }
h4 { font-size: 1.06rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 1.1em; padding-left: 1.1em; }
li { margin-bottom: .45em; }

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

:focus-visible {
  outline: 2px solid var(--flux-1);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--flux-2); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */

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

.section { padding-block: var(--section-y); position: relative; }
.section--light { background: var(--paper); color: var(--text-on-light); }
.section--tint  { background: var(--paper-2); color: var(--text-on-light); }
.section--ink2  { background: var(--ink-2); }

.section--light .lede, .section--tint .lede { color: var(--muted-on-light); }
.lede { color: var(--muted-on-dark); font-size: clamp(1.02rem, 1.5vw, 1.16rem); max-width: 62ch; }

.section-head { margin-bottom: clamp(38px, 5vw, 60px); max-width: 780px; }

.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.center { text-align: center; margin-inline: auto; }

/* ==========================================================================
   Type utilities
   ========================================================================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--flux-1);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--flux); flex: none;
}
.section--light .eyebrow, .section--tint .eyebrow { color: var(--flux-2); }

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

.mono { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .02em; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .98rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--flux);
  color: #fff;
  box-shadow: 0 8px 26px -8px rgba(109, 91, 255, .75);
}
.btn--primary:hover { box-shadow: 0 16px 38px -10px rgba(109, 91, 255, .9); }

.btn--ghost {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .18);
  color: var(--text-on-dark);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .34); }

.section--light .btn--ghost, .section--tint .btn--ghost {
  background: transparent; border-color: rgba(11, 16, 48, .2); color: var(--text-on-light);
}
.section--light .btn--ghost:hover, .section--tint .btn--ghost:hover { border-color: var(--flux-2); }

.btn--wa { background: #25D366; color: #08130B; }
.btn--wa:hover { background: #1FBE5A; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.arrow-link {
  font-weight: 600; text-decoration: none; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--flux-1);
}
.section--light .arrow-link, .section--tint .arrow-link { color: var(--flux-2); }
.arrow-link span { transition: transform .3s var(--ease); }
.arrow-link:hover span { transform: translateX(5px); }

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(7, 11, 30, .82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: rgba(255, 255, 255, .09);
}
.header__inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand img { width: 38px; height: 38px; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  letter-spacing: -0.03em; line-height: 1;
}
.brand__name em { font-style: normal; font-weight: 400; opacity: .62; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; font-size: .93rem; font-weight: 500;
  padding: 9px 14px; border-radius: var(--r-pill);
  color: var(--muted-on-dark);
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .07); }
.nav a { white-space: nowrap; }
.nav > .btn { display: none; }          /* only shown inside the mobile drawer */

.header__cta { display: flex; gap: 10px; align-items: center; flex: none; }
.header__cta .btn { padding: 11px 20px; font-size: .9rem; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-left: auto;
}
.burger span {
  display: block; height: 2px; border-radius: 2px; background: #fff; margin: 5px 0;
  transition: transform .3s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }

  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; inset: 76px 0 auto 0;
    background: var(--ink-2);
    padding: 18px var(--gutter) 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.is-open a { padding: 14px 12px; font-size: 1.02rem; border-radius: var(--r-sm); }
  .nav.is-open > .btn { display: inline-flex; margin-top: 12px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { position: relative; padding-block: clamp(56px, 8vw, 96px) clamp(64px, 9vw, 112px); overflow: hidden; }

.hero__glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 900px; height: 900px; top: -400px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(109, 91, 255, .34) 0%, rgba(34, 224, 255, .12) 38%, transparent 68%);
  filter: blur(30px);
}
.hero__inner { position: relative; z-index: 1; }

.hero__grid {
  display: grid; gap: clamp(40px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: .38em; }
.hero .lede { font-size: clamp(1.05rem, 1.7vw, 1.22rem); margin-bottom: 2rem; }

.tag {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .09em; text-transform: uppercase;
  padding: 8px 16px 8px 12px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .13);
  color: var(--muted-on-dark); margin-bottom: 26px;
}
.tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--pass); flex: none;
         box-shadow: 0 0 0 0 rgba(61, 255, 168, .6); animation: ping 2.4s infinite; }
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(61, 255, 168, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(61, 255, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 168, 0); }
}

/* --- Signature element: the delivery pipeline ---------------------------- */

.pipeline {
  background: linear-gradient(165deg, rgba(21, 28, 66, .9), rgba(13, 19, 48, .6));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9);
}
.pipeline__bar {
  display: flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-family: var(--font-mono); font-size: .7rem; color: var(--muted-on-dark);
}
.pipeline__bar b { display: block; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); }
.pipeline__bar span { margin-left: auto; color: var(--pass); white-space: nowrap; }
@media (max-width: 420px) { .pipeline__bar span { display: none; } .pipeline { padding: 18px; } }

.stage {
  display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 14px;
  padding: 11px 0; position: relative;
}
.stage__node {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  background: var(--ink); border: 2px solid var(--flux-2); color: var(--flux-1);
  position: relative; z-index: 2;
}
.stage:not(:last-child) .stage__node::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 2px; height: 34px; background: linear-gradient(var(--flux-2), rgba(109,91,255,.25));
}
.stage__label { font-weight: 600; font-size: .97rem; }
.stage__label small { display: block; font-weight: 400; font-size: .82rem; color: var(--muted-on-dark); }
.stage__status {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: rgba(61, 255, 168, .1); color: var(--pass); border: 1px solid rgba(61, 255, 168, .25);
}

.stage { opacity: 0; transform: translateY(10px); animation: stage-in .55s var(--ease) forwards; }
.stage:nth-child(1) { animation-delay: .15s; }
.stage:nth-child(2) { animation-delay: .35s; }
.stage:nth-child(3) { animation-delay: .55s; }
.stage:nth-child(4) { animation-delay: .75s; }
.stage:nth-child(5) { animation-delay: .95s; }
@keyframes stage-in { to { opacity: 1; transform: none; } }

/* ==========================================================================
   Marquee — tools we work with
   ========================================================================== */

.railstrip { border-block: 1px solid rgba(255, 255, 255, .08); padding-block: 22px; overflow: hidden; }
.railstrip__label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-on-dark); text-align: center; margin-bottom: 18px;
}
.marquee { display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 14px; padding-right: 14px; animation: slide 38s linear infinite; flex: none; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-100%); } }

.chip {
  font-family: var(--font-mono); font-size: .82rem; white-space: nowrap;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted-on-dark);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-md);
  padding: 30px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  text-decoration: none; color: inherit; display: block;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--flux); opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, .22); }
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted-on-dark); font-size: .95rem; margin-bottom: 1rem; }

.section--light .card, .section--tint .card {
  background: var(--paper); border-color: rgba(11, 16, 48, .1);
  box-shadow: 0 2px 14px -8px rgba(11, 16, 48, .2);
}
.section--tint .card { background: #fff; }
.section--light .card p, .section--tint .card p { color: var(--muted-on-light); }
.section--light .card:hover, .section--tint .card:hover {
  border-color: rgba(109, 91, 255, .4); box-shadow: 0 18px 40px -22px rgba(11, 16, 48, .35);
}

.card__icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--flux); display: grid; place-items: center;
  margin-bottom: 20px; flex: none;
}
.card__icon svg { width: 23px; height: 23px; stroke: #fff; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* Compact list card for sub-services */
.svc {
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-md);
  padding: 26px 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.045), transparent);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.svc:hover { border-color: rgba(109, 91, 255, .55); transform: translateY(-3px); }
.svc__no {
  font-family: var(--font-mono); font-size: .74rem; color: var(--flux-1);
  letter-spacing: .1em; margin-bottom: 14px; display: block;
}
.svc h3 { font-size: 1.12rem; margin-bottom: .5em; }
.svc p { color: var(--muted-on-dark); font-size: .93rem; margin: 0; }

/* Stat / outcome tiles */
.stat { padding: 26px 24px; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.09); background: var(--ink-2); }
.stat b { font-family: var(--font-display); font-size: 2.1rem; display: block; line-height: 1; margin-bottom: .35em; }
.stat p { font-size: .92rem; color: var(--muted-on-dark); margin: 0; }
.section--light .stat, .section--tint .stat { background: #fff; border-color: rgba(11,16,48,.1); }
.section--light .stat p, .section--tint .stat p { color: var(--muted-on-light); }

/* ==========================================================================
   Process (a real sequence — numbering earns its place)
   ========================================================================== */

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 84px 1fr; gap: clamp(18px, 3vw, 40px);
  padding: 34px 0; border-top: 1px solid rgba(255, 255, 255, .1);
}
.step:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.section--light .step, .section--tint .step { border-color: rgba(11, 16, 48, .11); }
.step__no {
  counter-increment: step;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .12em;
  padding-top: .5em;
}
.step__no::before { content: "0" counter(step); }
.step h3 { margin-bottom: .4em; }
.step p { color: var(--muted-on-dark); max-width: 62ch; margin-bottom: .9rem; }
.section--light .step p, .section--tint .step p { color: var(--muted-on-light); }
.step__out { font-family: var(--font-mono); font-size: .78rem; color: var(--flux-1); }
.section--light .step__out, .section--tint .step__out { color: var(--flux-2); }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: 10px; } }

/* ==========================================================================
   Checklist
   ========================================================================== */

.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; margin: 0; font-size: .96rem; }
.checks li::before {
  content: ""; width: 20px; height: 20px; border-radius: 50%; margin-top: 3px;
  background: rgba(61, 255, 168, .13);
  border: 1px solid rgba(61, 255, 168, .4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233DFFA8' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */

.faq { border-top: 1px solid rgba(11, 16, 48, .12); }
.faq details { border-bottom: 1px solid rgba(11, 16, 48, .12); }
.section--ink .faq, .faq.on-dark { border-color: rgba(255,255,255,.1); }
.faq.on-dark details { border-color: rgba(255,255,255,.1); }

.faq summary {
  cursor: pointer; list-style: none; padding: 24px 46px 24px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease); color: var(--flux-2);
}
.faq.on-dark summary::after { color: var(--flux-1); }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq__body { padding: 0 40px 26px 0; color: var(--muted-on-light); max-width: 78ch; }
.faq.on-dark .faq__body { color: var(--muted-on-dark); }

/* ==========================================================================
   Split feature block
   ========================================================================== */

.split { display: grid; gap: clamp(34px, 5vw, 68px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: center; }

.panel {
  background: linear-gradient(160deg, rgba(109, 91, 255, .14), rgba(34, 224, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg); padding: clamp(26px, 3.5vw, 40px);
}
.section--light .panel, .section--tint .panel {
  background: linear-gradient(160deg, rgba(109, 91, 255, .08), rgba(34, 224, 255, .05));
  border-color: rgba(109, 91, 255, .2);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta {
  background: var(--flux);
  border-radius: var(--r-lg);
  padding: clamp(38px, 5.5vw, 70px);
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 22% 118%, rgba(255,255,255,.32), transparent 52%);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: .35em; }
.cta p { max-width: 56ch; margin-inline: auto; margin-bottom: 1.9em; opacity: .95; }
.cta .btn-row { justify-content: center; }
.cta .btn--primary { background: #fff; color: var(--ink); box-shadow: 0 10px 30px -12px rgba(0,0,0,.55); }
.cta .btn--ghost { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.12); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255,255,255,.24); }

/* ==========================================================================
   Forms
   ========================================================================== */

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .86rem; font-weight: 600; letter-spacing: .01em; }
.field label span { color: var(--flux-3); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .97rem; color: inherit;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 132px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--flux-2); background: rgba(255, 255, 255, .08); outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(147, 156, 196, .7); }
.field select option { background: var(--ink-2); color: #fff; }

.field-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form__note { font-size: .84rem; color: var(--muted-on-dark); }

.form__status { display: none; padding: 14px 18px; border-radius: var(--r-sm); font-size: .93rem; }
.form__status.is-visible { display: block; }
.form__status[data-tone="ok"]  { background: rgba(61, 255, 168, .12); border: 1px solid rgba(61, 255, 168, .35); color: var(--pass); }
.form__status[data-tone="err"] { background: rgba(255, 79, 163, .12); border: 1px solid rgba(255, 79, 163, .38); color: #FF8FC4; }

/* ==========================================================================
   Contact detail rows
   ========================================================================== */

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.contact-list li { margin: 0; }
.contact-list a, .contact-list div {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center;
  padding: 16px 0; text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.contact-list i {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
}
.contact-list svg { width: 19px; height: 19px; stroke: var(--flux-1); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-list b { display: block; font-size: .74rem; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted-on-dark); font-weight: 400; margin-bottom: 3px; }
.contact-list a:hover strong { color: var(--flux-1); }
.contact-list strong { font-weight: 600; font-size: 1rem; transition: color .2s; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--ink-2); border-top: 1px solid rgba(255, 255, 255, .09); padding-block: clamp(52px, 6vw, 78px) 30px; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: minmax(240px, 1.5fr) repeat(auto-fit, minmax(150px, 1fr)); margin-bottom: 46px; }
.footer h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-on-dark); font-weight: 400; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer li { margin: 0; }
.footer a { text-decoration: none; font-size: .93rem; color: var(--muted-on-dark); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__about p { font-size: .93rem; color: var(--muted-on-dark); max-width: 40ch; margin-top: 18px; }
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center;
  font-size: .85rem; color: var(--muted-on-dark);
}
.footer__legal p { margin: 0; }
.footer__legal nav { margin-left: auto; display: flex; gap: 20px; flex-wrap: wrap; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, .7);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 29px; height: 29px; fill: #fff; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.phero { padding-block: clamp(52px, 7vw, 86px) clamp(44px, 6vw, 72px); position: relative; overflow: hidden; }
.phero__glow {
  position: absolute; width: 700px; height: 700px; top: -420px; right: -160px; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 79, 163, .2), rgba(109, 91, 255, .14) 42%, transparent 68%);
  filter: blur(28px);
}
.phero .wrap { position: relative; z-index: 1; }
.phero h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); }

.crumbs { font-family: var(--font-mono); font-size: .76rem; color: var(--muted-on-dark); margin-bottom: 22px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--flux-1); }
.crumbs span { opacity: .45; margin-inline: .5em; }

/* ==========================================================================
   Prose
   ========================================================================== */

.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.5em; }
.prose > *:first-child { margin-top: 0; }

/* ==========================================================================
   Reduced motion & print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .stage { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .wa-float, .cta { display: none; }
  body { background: #fff; color: #000; }
}
