@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg: #050713;
  --bg-soft: #080d1c;
  --surface: rgba(13, 20, 38, 0.64);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(16, 27, 52, 0.82);
  --text: #f4f7ff;
  --text-soft: #abb8cf;
  --text-muted: #748198;
  --accent: #5d9dff;
  --accent-soft: #c5dcff;
  --accent-dark: #174b9f;
  --line: rgba(180, 211, 255, 0.14);
  --line-strong: rgba(180, 211, 255, 0.28);
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  --glow: 0 0 42px rgba(93, 157, 255, 0.18);
  --radius: 1.75rem;
  --pad: clamp(1.1rem, 4vw, 4rem);
  --max: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(45, 119, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 92% 26%, rgba(93, 157, 255, 0.07), transparent 35rem),
    linear-gradient(180deg, #050713 0%, #070b18 50%, #03050c 100%);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  z-index: -1;
  top: 10%;
  left: 50%;
  width: 38rem;
  height: 38rem;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background: rgba(64, 132, 255, 0.06);
  filter: blur(120px);
  transform: translateX(-50%);
}

main {
  position: relative;
  overflow: clip;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, summary, select { -webkit-tap-highlight-color: transparent; }
::selection { color: #020817; background: var(--accent); }

.section-pad {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(6.5rem, 11vw, 10rem) var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
  color: var(--accent-soft);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.nav {
  position: sticky;
  z-index: 80;
  top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 2rem), calc(var(--max) - 2rem));
  min-height: 4.75rem;
  margin: 1rem auto 0;
  padding: 0 0.8rem 0 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(7, 12, 27, 0.7);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.brand-logo-wrap {
  position: relative;
  display: block;
  width: 2.45rem;
  height: 2.45rem;
  overflow: hidden;
  border: 1px solid rgba(197, 220, 255, 0.28);
  border-radius: 0.82rem;
  background: rgba(8, 16, 36, 0.72);
  box-shadow: 0 0 26px rgba(93, 157, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-logo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 14px rgba(93, 157, 255, 0.16);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.6rem);
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.footer-column a,
.footer-bottom a { transition: color 180ms ease; }
.nav-links a:hover,
.footer-column a:hover,
.footer-bottom a:hover { color: var(--accent); }

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  color: #061022;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 9px 28px rgba(88, 151, 255, 0.16);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 13px 38px rgba(88, 151, 255, 0.25); }
.mobile-nav { display: none; }

.hero {
  position: relative;
  display: flex;
  width: min(calc(100% - 2rem), var(--max));
  min-height: min(58rem, calc(100svh - 2rem));
  margin: -5.75rem auto 0;
  padding: clamp(10rem, 17vh, 13rem) var(--pad) 4rem;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 14%;
  right: 0;
  width: clamp(21rem, 48vw, 48rem);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(101, 164, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(93, 157, 255, 0.16), rgba(93, 157, 255, 0.035) 34%, transparent 66%),
    repeating-radial-gradient(circle, transparent 0 10%, rgba(93, 157, 255, 0.08) 10.15% 10.35%, transparent 10.5% 20%);
  box-shadow: inset 0 0 90px rgba(93, 157, 255, 0.06), 0 0 120px rgba(93, 157, 255, 0.08);
  animation: float-orbit 12s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  top: 21%;
  right: 8%;
  width: clamp(16rem, 33vw, 31rem);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 38% 62% 54% 46% / 42% 38% 62% 58%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(93, 157, 255, 0.028));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 36px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  animation: morph 16s ease-in-out infinite;
}

@keyframes float-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-1.5rem, 1rem, 0) rotate(8deg); }
}

@keyframes morph {
  0%, 100% { border-radius: 38% 62% 54% 46% / 42% 38% 62% 58%; transform: rotate(0deg); }
  50% { border-radius: 59% 41% 37% 63% / 55% 62% 38% 45%; transform: rotate(7deg); }
}

.hero-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: min(100%, 64rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: var(--text-muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-kicker span:first-child::before {
  width: 0.46rem;
  height: 0.46rem;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 11.5ch;
  margin: 0;
  font-size: clamp(4rem, 9.3vw, 9.6rem);
  font-weight: 780;
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero h1 em,
.start h2 em,
.why-close em,
.work-board em {
  color: transparent;
  background: linear-gradient(120deg, var(--accent-soft), var(--accent) 55%, #3b7cff);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  text-shadow: 0 0 42px rgba(93, 157, 255, 0.14);
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 38rem) auto;
  align-items: center;
  gap: 2rem;
  width: min(100%, 67rem);
  margin: clamp(3rem, 7vw, 5.5rem) 0 0 auto;
  padding: 1.2rem 1.2rem 1.2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(15, 25, 48, 0.68), rgba(8, 14, 30, 0.4));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(22px) saturate(135%);
}

.hero-bottom p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  min-height: 3.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.9rem;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-3px); }

/* Use the supplied PNG as a mask so iOS cannot substitute an emoji glyph. */
.nav-cta > span[aria-hidden="true"],
.mobile-nav a > span[aria-hidden="true"],
.button > span[aria-hidden="true"],
.product-cta > span[aria-hidden="true"],
.service-row > a span[aria-hidden="true"],
.overflow-arrow > span[aria-hidden="true"],
.text-link > span[aria-hidden="true"],
.footer-contact a > span[aria-hidden="true"] {
  position: relative;
  display: inline-block;
  width: 0.78rem;
  height: 0.78rem;
  flex: 0 0 0.78rem;
  overflow: hidden;
  background-color: currentColor;
  -webkit-mask: url("up-right-arrow.png") center / contain no-repeat;
  mask: url("up-right-arrow.png") center / contain no-repeat;
  font-size: 0;
  line-height: 0;
}

.button-dark,
.button-lime {
  color: #061022;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 14px 40px rgba(82, 145, 255, 0.18);
}

.button-dark:hover,
.button-lime:hover { box-shadow: 0 19px 52px rgba(82, 145, 255, 0.28); }

.scroll-note {
  position: absolute;
  z-index: 2;
  bottom: 4rem;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ticker {
  width: min(calc(100% - 2rem), calc(var(--max) - 2rem));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(13, 22, 43, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.ticker div {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  padding: 0.95rem 0;
  color: var(--text-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  animation: ticker 30s linear infinite;
}

.ticker b { color: var(--accent); text-shadow: 0 0 10px var(--accent); }
.ticker div::after {
  content: "BUILD  •  VISUAL  •  CONTENT  •  PROFILE RESCUE  •  MOVE FAST. LOOK RIGHT.  •";
  color: var(--text-soft);
  word-spacing: 1.25rem;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.statement {
  position: relative;
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  gap: 5vw;
  margin-top: clamp(5rem, 9vw, 8rem);
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 27, 51, 0.74), rgba(8, 15, 32, 0.45));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
}

.statement::before { position: absolute; z-index: -2; inset: 0; content: ""; opacity: 0.38; background-image: linear-gradient(rgba(105, 159, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(105, 159, 255, 0.04) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(circle at 65% 48%, #000, transparent 80%); }

.statement::after {
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  content: "";
  border-radius: 50%;
  background: rgba(93, 157, 255, 0.08);
  filter: blur(70px);
}

.statement-atmosphere { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.statement-watermark { position: absolute; right: -1rem; bottom: -3.2rem; color: rgba(101, 158, 255, 0.045); font-size: clamp(9rem, 19vw, 18rem); font-weight: 800; line-height: 0.8; letter-spacing: -0.09em; }
.deadline-ring { position: absolute; top: 7%; left: -8rem; width: 22rem; height: 22rem; border: 1px solid rgba(104, 160, 255, 0.11); border-radius: 50%; box-shadow: inset 0 0 40px rgba(61, 127, 255, 0.035), 0 0 40px rgba(61, 127, 255, 0.035); }
.deadline-ring::before, .deadline-ring::after { position: absolute; content: ""; background: rgba(111, 166, 255, 0.13); transform-origin: bottom center; }
.deadline-ring::before { top: 18%; left: 50%; width: 1px; height: 32%; transform: rotate(22deg); }
.deadline-ring::after { top: 50%; left: 50%; width: 1px; height: 24%; transform: rotate(132deg); }
.statement-tech { position: absolute; top: 2rem; right: 2rem; color: rgba(148, 181, 238, 0.24); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.22em; }
.statement > .eyebrow { position: relative; z-index: 2; }

.statement h2 {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5.8rem);
  font-weight: 680;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.decay-meter { position: relative; z-index: 2; grid-column: 2; max-width: 56rem; padding: 1.5rem 0 0.4rem; }
.decay-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); }
.decay-track::before { position: absolute; top: 0.36rem; right: 0; left: 0; height: 1px; content: ""; background: linear-gradient(90deg, #5d9dff, rgba(93, 157, 255, 0.5) 36%, rgba(255, 195, 88, 0.38) 63%, rgba(255, 99, 116, 0.24)); box-shadow: 0 0 16px rgba(93, 157, 255, 0.14); }
.decay-track > span { position: relative; display: flex; padding-top: 1.35rem; flex-direction: column; gap: 0.2rem; }
.decay-track > span:nth-child(2) { align-items: center; }
.decay-track > span:nth-child(3) { align-items: flex-end; }
.decay-track i { position: absolute; z-index: 2; top: 0; width: 0.76rem; height: 0.76rem; border: 2px solid #07101f; border-radius: 50%; box-shadow: 0 0 18px currentColor; }
.decay-track > span:nth-child(1) i { left: 0; color: #5d9dff; background: #5d9dff; }
.decay-track > span:nth-child(2) i { left: calc(50% - 0.38rem); color: #ffc458; background: #ffc458; }
.decay-track > span:nth-child(3) i { right: 0; color: #ff6374; background: #ff6374; }
.decay-track b { color: var(--text); font-size: 0.6rem; letter-spacing: 0.14em; }
.decay-track small { color: var(--text-muted); font-size: 0.48rem; letter-spacing: 0.1em; }

.statement-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 56rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.statement-copy p { margin: 0; color: var(--text-soft); line-height: 1.7; }

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 2fr;
  gap: 5vw;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.urgency-heading h2,
.why-title h2,
.faq-heading h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  font-weight: 680;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.service-list { display: grid; gap: 0.8rem; }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 0.28fr 0.8fr 1.4fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 9.5rem;
  padding: 1.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: linear-gradient(130deg, rgba(14, 24, 46, 0.66), rgba(8, 14, 29, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-row:hover {
  z-index: 2;
  border-color: var(--line-strong);
  background: linear-gradient(130deg, rgba(18, 33, 62, 0.78), rgba(10, 18, 38, 0.58));
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.service-row:hover::before { opacity: 1; }

.service-number,
.service-row > a,
.audience-grid article > span,
.process-list article > span,
.why-points article > span {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-row h3,
.service-row p,
.service-row strong { margin: 0; }
.service-row h3 { font-size: clamp(1.35rem, 2.2vw, 2.15rem); letter-spacing: -0.045em; }
.service-row strong { display: block; margin-bottom: 0.5rem; color: var(--text); font-size: 0.94rem; }
.service-row p { max-width: 42rem; color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }
.service-row > a {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  transition: background 180ms ease, transform 180ms ease;
}
.service-row > a:hover { color: #061022; background: var(--accent); transform: rotate(4deg); }

.urgency {
  position: relative;
  margin-bottom: clamp(5rem, 9vw, 8rem);
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 0%, rgba(93, 157, 255, 0.1), transparent 28rem),
    linear-gradient(145deg, rgba(12, 21, 42, 0.78), rgba(6, 11, 25, 0.65));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.urgency-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.urgency-heading > p { max-width: 29rem; margin: 0; color: var(--text-soft); line-height: 1.7; }

.urgency-experience {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: stretch;
}

.urgency-tabs {
  display: grid;
  gap: 0.7rem;
}

.urgency-tab {
  --request-color: var(--accent);
  --request-rgb: 93, 157, 255;
}

.urgency-tab.green { --request-color: #62ee9a; --request-rgb: 98, 238, 154; }
.urgency-tab.yellow { --request-color: #ffd75e; --request-rgb: 255, 215, 94; }
.urgency-tab.red { --request-color: #ff6374; --request-rgb: 255, 99, 116; }
.urgency-tab.black,
.urgency-detail { --request-color: #b9c7df; --request-rgb: 185, 199, 223; }

.urgency-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.5rem;
  padding: 1rem;
  overflow: hidden;
  color: var(--text);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 1rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.urgency-tab:hover {
  border-color: rgba(var(--request-rgb), 0.35);
  background: rgba(var(--request-rgb), 0.055);
  transform: translateX(3px);
}

.urgency-tab.active {
  --request-color: #b9c7df;
  --request-rgb: 185, 199, 223;
  border-color: rgba(var(--request-rgb), 0.62);
  background: linear-gradient(130deg, rgba(var(--request-rgb), 0.13), rgba(255, 255, 255, 0.025));
  box-shadow: 0 0 34px rgba(var(--request-rgb), 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.urgency-tab-index {
  color: var(--request-color);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.urgency-tab > span:nth-child(2) { display: grid; gap: 0.32rem; }
.urgency-tab strong { font-size: 0.92rem; font-weight: 700; }
.urgency-tab small { color: var(--text-muted); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.urgency-tab i { width: 0.55rem; height: 0.55rem; border: 1px solid rgba(var(--request-rgb), 0.55); border-radius: 50%; background: rgba(var(--request-rgb), 0.16); transition: background 180ms ease, box-shadow 180ms ease; }
.urgency-tab.active i { background: var(--request-color); box-shadow: 0 0 16px rgba(var(--request-rgb), 0.8); }

.urgency-detail {
  position: relative;
  display: flex;
  min-height: 24.1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(var(--request-rgb), 0.46);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(var(--request-rgb), 0.19), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.018));
  box-shadow: 0 0 52px rgba(var(--request-rgb), 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(22px);
}

.urgency-detail::after {
  position: absolute;
  top: -7rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(var(--request-rgb), 0.25);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(var(--request-rgb), 0.12), inset 0 0 50px rgba(var(--request-rgb), 0.06);
}

.urgency-detail-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--request-color);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.urgency-detail .signal {
  color: var(--request-color);
  border-color: rgba(var(--request-rgb), 0.38);
  background: rgba(var(--request-rgb), 0.1);
  box-shadow: 0 0 24px rgba(var(--request-rgb), 0.15);
}

.urgency-detail-copy {
  position: relative;
  z-index: 1;
  max-width: 37rem;
  margin: auto 0 2rem;
}

.urgency-detail-copy .detail-label { margin: 0 0 0.7rem; color: var(--request-color); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.urgency-detail h3 { margin: 0 0 0.45rem; font-size: clamp(2.3rem, 5vw, 4.6rem); font-weight: 700; line-height: 0.95; letter-spacing: -0.055em; }
.urgency-detail .time { margin: 0 0 1.2rem; color: var(--request-color); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.urgency-detail-copy > p:not(.detail-label, .time, .examples) { max-width: 33rem; margin: 0; color: var(--text-soft); line-height: 1.65; }
.urgency-detail .examples { max-width: 34rem; margin: 1rem 0 0; padding-top: 1rem; color: var(--text-muted); border-top: 1px solid rgba(var(--request-rgb), 0.2); font-size: 0.82rem; line-height: 1.55; }
.urgency-detail .examples strong { color: var(--text); font-weight: 700; }
.urgency-detail-cta { position: relative; z-index: 1; color: #07101f; background: var(--request-color); box-shadow: 0 12px 36px rgba(var(--request-rgb), 0.2); }

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.urgency-card {
  position: relative;
  display: flex;
  min-height: 31rem;
  padding: 1.4rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 44px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(20px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.urgency-card::before {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 12rem;
  height: 12rem;
  content: "";
  border-radius: 50%;
  background: rgba(93, 157, 255, 0.08);
  filter: blur(24px);
  transition: transform 300ms ease, opacity 300ms ease;
}

.urgency-card:hover {
  border-color: rgba(93, 157, 255, 0.38);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 40px rgba(93, 157, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-7px);
}
.urgency-card:hover::before { opacity: 1; transform: scale(1.3); }
.urgency-card.green,
.urgency-card.yellow,
.urgency-card.red,
.urgency-card.black { color: var(--text); background: linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)); }

.urgency-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--text-muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(93, 157, 255, 0.3);
  border-radius: 0.75rem;
  background: rgba(93, 157, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 20px rgba(93, 157, 255, 0.08);
}

.urgency-card h3 {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  margin: 0 0 0.6rem;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 650;
  line-height: 0.97;
  letter-spacing: -0.06em;
}
.urgency-card p { position: relative; z-index: 1; color: var(--text-soft); line-height: 1.55; }
.urgency-card .time { margin: 0 0 1.5rem; color: var(--accent-soft); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.urgency-card .examples { padding-top: 1rem; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 0.76rem; }
.urgency-card a { position: relative; z-index: 1; display: flex; justify-content: space-between; margin-top: 1rem; color: var(--accent); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

.urgency-note {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.025);
}
.urgency-note strong { max-width: 31ch; color: var(--accent-soft); font-size: clamp(1.25rem, 2vw, 1.9rem); line-height: 1.25; letter-spacing: -0.035em; }
.urgency-note p { margin: 0; color: var(--text-muted); font-size: 0.8rem; line-height: 1.65; }

.product-heading p:last-child { align-self: end; max-width: 25rem; margin: 0; color: var(--text-soft); line-height: 1.6; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.product-card {
  position: relative;
  display: flex;
  min-height: 22rem;
  padding: 1.5rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(16, 29, 55, 0.61), rgba(8, 14, 30, 0.45));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.product-card::before { position: absolute; right: -5rem; bottom: -6rem; width: 12rem; height: 12rem; content: ""; border-radius: 50%; background: rgba(93, 157, 255, 0.06); filter: blur(28px); transition: transform 240ms ease; }
.product-card:hover { border-color: rgba(93, 157, 255, 0.32); box-shadow: var(--glow), 0 22px 60px rgba(0, 0, 0, 0.25); transform: translateY(-6px); }
.product-card:hover::before { transform: scale(1.35); }
.product-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.product-number { color: var(--accent); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em; }
.product-icon { display: grid; width: 3rem; height: 3rem; place-items: center; color: var(--accent-soft); border: 1px solid var(--line-strong); border-radius: 0.9rem; background: rgba(93, 157, 255, 0.08); box-shadow: 0 0 26px rgba(93, 157, 255, 0.1); }
.product-icon svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.product-card h3 { position: relative; z-index: 1; max-width: 10ch; margin: auto 0 1rem; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 650; line-height: 0.97; letter-spacing: -0.055em; }
.product-card p { position: relative; z-index: 1; max-width: 30rem; margin: 0; color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }
.product-arrow { position: absolute; top: 1.3rem; right: 1.3rem; display: grid; width: 2.5rem; height: 2.5rem; place-items: center; color: var(--accent); border: 1px solid var(--line); border-radius: 0.8rem; background: rgba(255, 255, 255, 0.025); }
.product-cta { position: relative; z-index: 1; display: flex; width: 100%; margin-top: 1.25rem; padding: 0.9rem 0; align-items: center; justify-content: space-between; color: var(--accent-soft); border: 0; border-top: 1px solid var(--line); outline: 0; background: transparent; cursor: pointer; font: inherit; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: color 180ms ease, padding 180ms ease; }
.product-cta:hover, .product-cta:focus-visible { padding-left: 0.35rem; color: #fff; }

.overflow-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.45fr 1.6fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 0.8rem;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  overflow: hidden;
  border: 1px solid rgba(93, 157, 255, 0.32);
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at 90% 50%, rgba(93, 157, 255, 0.15), transparent 24rem),
    linear-gradient(135deg, rgba(20, 38, 72, 0.74), rgba(8, 14, 30, 0.55));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.overflow-card:hover { border-color: rgba(93, 157, 255, 0.56); box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26), 0 0 46px rgba(93, 157, 255, 0.11); transform: translateY(-4px); }
.overflow-label { width: fit-content; padding: 0.6rem 0.75rem; color: var(--accent-soft); border: 1px solid var(--line-strong); border-radius: 0.6rem; background: rgba(93, 157, 255, 0.08); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.overflow-card h3 { margin: 0 0 0.55rem; font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 700; letter-spacing: -0.045em; }
.overflow-card p { margin: 0; color: var(--text-soft); line-height: 1.6; }
.overflow-arrow { display: grid; width: 3.2rem; height: 3.2rem; place-items: center; color: var(--accent); border: 1px solid var(--line-strong); border-radius: 0.9rem; background: rgba(255, 255, 255, 0.035); }

.audience { padding-top: 0; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.audience-grid article {
  min-height: 17rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.027);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}
.audience-grid h3 { max-width: 10ch; margin: 5rem 0 1rem; font-size: 1.35rem; letter-spacing: -0.04em; }
.audience-grid p { margin: 0; color: var(--text-soft); font-size: 0.88rem; line-height: 1.6; }
.audience-close { margin: 3rem 0 0; color: var(--accent-soft); font-size: clamp(1.4rem, 2.6vw, 2.35rem); font-weight: 620; letter-spacing: -0.04em; }

.process {
  position: relative;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 23% 32%, rgba(44, 116, 255, 0.14), transparent 28rem),
    linear-gradient(140deg, rgba(13, 24, 47, 0.82), rgba(6, 11, 25, 0.72));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.process::before { position: absolute; z-index: -2; inset: 0; content: ""; opacity: 0.46; background-image: linear-gradient(rgba(104, 157, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(104, 157, 255, 0.045) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent); }
.process::after { position: absolute; z-index: -1; top: -18rem; left: 43%; width: 44rem; height: 44rem; content: ""; border-radius: 50%; background: rgba(58, 125, 255, 0.12); filter: blur(110px); pointer-events: none; }
.process-atmosphere { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.process-watermark { position: absolute; bottom: -5.5rem; left: 1.5%; color: rgba(100, 158, 255, 0.055); font-size: clamp(15rem, 29vw, 30rem); font-weight: 800; line-height: 0.75; letter-spacing: -0.12em; text-shadow: 0 0 80px rgba(44, 116, 255, 0.08); user-select: none; }
.blueprint-ring { position: absolute; border: 1px solid rgba(105, 160, 255, 0.11); border-radius: 50%; box-shadow: inset 0 0 34px rgba(57, 123, 255, 0.035), 0 0 34px rgba(57, 123, 255, 0.035); }
.blueprint-ring::before, .blueprint-ring::after { position: absolute; content: ""; background: rgba(114, 165, 255, 0.14); }
.blueprint-ring::before { top: 50%; left: -8%; width: 116%; height: 1px; }
.blueprint-ring::after { top: -8%; left: 50%; width: 1px; height: 116%; }
.ring-one { top: 11%; right: -9rem; width: 24rem; height: 24rem; }
.ring-two { bottom: -9rem; left: 18%; width: 17rem; height: 17rem; }
.process-coordinate { position: absolute; color: rgba(148, 181, 238, 0.22); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.22em; writing-mode: vertical-rl; }
.coordinate-one { top: 12%; right: 2.2rem; }
.coordinate-two { bottom: 8%; left: 2.2rem; }
.process-heading, .process-list { position: relative; z-index: 2; }
.process-list { display: grid; gap: 0.75rem; margin-left: 27%; }
.process-list article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2rem 3.25rem minmax(11rem, 0.95fr) minmax(13rem, 1.2fr);
  gap: 1.15rem;
  align-items: center;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(110deg, rgba(17, 30, 57, 0.82), rgba(9, 16, 34, 0.63));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.process-list article:hover { border-color: rgba(93, 157, 255, 0.34); box-shadow: 0 15px 38px rgba(0, 0, 0, 0.2), 0 0 30px rgba(55, 124, 255, 0.06); transform: translateX(4px); }
.process-number { color: var(--accent); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.09em; }
.process-step-icon { position: relative; z-index: 3; display: grid; width: 3.25rem; height: 3.25rem; place-items: center; color: #8eb9ff !important; border: 1px solid rgba(96, 157, 255, 0.28); border-radius: 0.95rem; background: linear-gradient(145deg, rgba(74, 142, 255, 0.19), rgba(30, 77, 164, 0.08)); box-shadow: 0 0 26px rgba(56, 126, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08); transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.process-step-icon > path { display: none; }
.process-step-icon svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.process-list article:hover .process-step-icon { color: #d2e3ff !important; border-color: rgba(106, 166, 255, 0.54); box-shadow: 0 0 34px rgba(56, 126, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12); transform: scale(1.04); }
.process-list h3, .process-list p { margin: 0; }
.process-list h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); letter-spacing: -0.04em; }
.process-list p { color: var(--text-soft); font-size: 0.88rem; line-height: 1.6; }

.work { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 7vw; align-items: center; }
.work-intro h2 { margin: 0 0 1.8rem; font-size: clamp(2.8rem, 5vw, 5.4rem); font-weight: 670; line-height: 0.96; letter-spacing: -0.06em; }
.work-intro > p:not(.eyebrow) { max-width: 35rem; color: var(--text-soft); line-height: 1.7; }
.text-link { display: inline-flex; gap: 1rem; margin-top: 1rem; padding: 0.8rem 1rem; color: var(--accent); border: 1px solid var(--line); border-radius: 0.75rem; background: rgba(255, 255, 255, 0.025); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }

.execution-stats {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 2rem;
}

.execution-stats strong {
  display: block;
  padding: 1.1rem 1.2rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.work-board {
  position: relative;
  display: grid;
  min-height: clamp(29rem, 48vw, 42rem);
  padding: 2rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 60% 46%, rgba(93, 157, 255, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(16, 30, 57, 0.77), rgba(5, 10, 25, 0.72));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
}
.work-board::before { position: absolute; inset: 10%; content: ""; border: 1px solid rgba(93, 157, 255, 0.22); border-radius: 50%; box-shadow: 0 0 60px rgba(93, 157, 255, 0.06), inset 0 0 60px rgba(93, 157, 255, 0.04); animation: float-orbit 14s ease-in-out infinite reverse; }
.work-board::after { position: absolute; width: 54%; aspect-ratio: 1; content: ""; border: 1px dashed rgba(93, 157, 255, 0.28); border-radius: 50%; }
.work-board > p { z-index: 2; margin: 0; font-size: clamp(2.2rem, 5vw, 4.9rem); font-weight: 780; line-height: 0.86; letter-spacing: -0.065em; }
.work-stamp, .work-note { position: absolute; z-index: 2; color: var(--text-muted); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em; }
.work-stamp { top: 1.4rem; left: 1.4rem; }
.work-note { right: 1.4rem; bottom: 1.4rem; text-align: right; }
.work-orbit { position: absolute; z-index: 3; top: 13%; right: 14%; display: grid; width: 4rem; height: 4rem; place-items: center; color: #061022; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 1.15rem; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); box-shadow: 0 0 36px rgba(93, 157, 255, 0.25); font-size: 0.58rem; font-weight: 900; transform: rotate(9deg); }

.why {
  position: relative;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 22%, rgba(57, 124, 255, 0.12), transparent 27rem),
    linear-gradient(145deg, rgba(13, 22, 43, 0.82), rgba(6, 11, 25, 0.68));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.why::before { position: absolute; z-index: -2; inset: 0; content: ""; opacity: 0.36; background-image: linear-gradient(rgba(105, 159, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(105, 159, 255, 0.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, transparent, #000 18%, #000 88%, transparent); }
.why-atmosphere { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.why-watermark { position: absolute; right: 1%; bottom: -9rem; color: rgba(100, 158, 255, 0.045); font-size: clamp(18rem, 34vw, 34rem); font-weight: 700; line-height: 0.8; }
.why-ring { position: absolute; top: 13%; left: -9rem; width: 26rem; height: 26rem; border: 1px solid rgba(104, 160, 255, 0.1); border-radius: 50%; box-shadow: inset 0 0 40px rgba(61, 127, 255, 0.035); }
.why-ring::before, .why-ring::after { position: absolute; content: ""; border: 1px solid rgba(104, 160, 255, 0.08); border-radius: 50%; }
.why-ring::before { inset: 3.5rem; }
.why-ring::after { inset: 7rem; }
.why-tech { position: absolute; top: 2rem; right: 2rem; color: rgba(148, 181, 238, 0.22); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.2em; }
.why-title, .why-points, .why-close { position: relative; z-index: 2; }
.why-title { display: grid; grid-template-columns: 0.65fr 2fr; gap: 5vw; margin-bottom: 5rem; }
.why-points { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-left: 24%; }
.why-points article { position: relative; z-index: 1; min-height: 19rem; padding: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: 1.15rem; background: linear-gradient(145deg, rgba(17, 30, 57, 0.78), rgba(8, 15, 32, 0.58)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035); backdrop-filter: blur(16px); transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.why-points article::after { position: absolute; right: -4rem; bottom: -4rem; width: 9rem; height: 9rem; content: ""; border-radius: 50%; background: rgba(63, 132, 255, 0.065); filter: blur(24px); }
.why-points article:hover { border-color: rgba(93, 157, 255, 0.34); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2), 0 0 30px rgba(57, 126, 255, 0.07); transform: translateY(-5px); }
.why-card-top { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; }
.why-card-top > span:first-child { color: var(--accent); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em; }
.why-icon { display: grid; width: 3.2rem; height: 3.2rem; place-items: center; color: #91baff; border: 1px solid rgba(98, 158, 255, 0.3); border-radius: 0.95rem; background: linear-gradient(145deg, rgba(73, 141, 255, 0.18), rgba(24, 68, 149, 0.08)); box-shadow: 0 0 26px rgba(56, 126, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.why-icon svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.why-points h3 { position: relative; z-index: 2; margin: 4.2rem 0 1rem; font-size: 1.45rem; letter-spacing: -0.04em; }
.why-points p { margin: 0; color: var(--text-soft); font-size: 0.88rem; line-height: 1.6; }
.why-close { margin: clamp(4.5rem, 9vw, 8rem) 0 0; font-size: clamp(2.6rem, 5.8vw, 5.8rem); font-weight: 680; line-height: 0.97; letter-spacing: -0.065em; }

.proof {
  position: relative;
  margin-top: clamp(5rem, 9vw, 8rem);
  margin-bottom: clamp(5rem, 9vw, 8rem);
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  border: 1px solid rgba(93, 157, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 93% 10%, rgba(93, 157, 255, 0.14), transparent 26rem),
    linear-gradient(145deg, rgba(15, 30, 58, 0.85), rgba(6, 13, 29, 0.7));
  box-shadow: 0 0 90px rgba(93, 157, 255, 0.06), var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.proof blockquote { max-width: 21ch; margin: 0; color: var(--text); font-size: clamp(2.3rem, 5.2vw, 5.6rem); font-weight: 660; line-height: 0.98; letter-spacing: -0.06em; }
.proof-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 4rem; }
.proof-tags span { padding: 0.72rem 1rem; color: var(--accent-soft); border: 1px solid var(--line-strong); border-radius: 0.75rem; background: rgba(93, 157, 255, 0.055); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; }

.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 7vw; }
.faq-list { display: grid; gap: 0.7rem; }
.faq-list details { border: 1px solid var(--line); border-radius: 1rem; background: rgba(255, 255, 255, 0.027); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035); backdrop-filter: blur(16px); }
.faq-list details[open] { border-color: var(--line-strong); background: rgba(17, 31, 59, 0.62); }
.faq-list summary { display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center; padding: 1.35rem; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent); font-size: 0.64rem; letter-spacing: 0.12em; }
.faq-list summary b { color: var(--accent); font-size: 1.25rem; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details > p { max-width: 42rem; margin: 0; padding: 0 3.5rem 1.45rem; color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; }

.start {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  margin-bottom: clamp(5rem, 9vw, 8rem);
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 90%, rgba(93, 157, 255, 0.1), transparent 24rem),
    linear-gradient(145deg, rgba(13, 24, 47, 0.8), rgba(6, 11, 25, 0.64));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.start-copy h2 { margin: 0 0 2rem; font-size: clamp(2.8rem, 5.2vw, 5.7rem); font-weight: 670; line-height: 0.94; letter-spacing: -0.065em; }
.start-copy > p:not(.eyebrow) { max-width: 32rem; color: var(--text-soft); line-height: 1.7; }

.project-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.2rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(135%);
}
.project-form label, .project-form label > span { display: block; }
.project-form label > span { margin-bottom: 0.5rem; color: var(--accent-soft); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.project-form input, .project-form select, .project-form textarea { width: 100%; color: var(--text); border: 1px solid var(--line); border-radius: 0.8rem; outline: 0; background: rgba(3, 8, 22, 0.48); transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.project-form input, .project-form select { min-height: 3.15rem; padding: 0 0.9rem; }
.project-form textarea { padding: 0.9rem; resize: vertical; line-height: 1.55; }
.project-form select { color-scheme: dark; }
.project-form input::placeholder, .project-form textarea::placeholder { color: #68768f; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: rgba(93, 157, 255, 0.48); background: rgba(8, 16, 36, 0.75); box-shadow: 0 0 0 4px rgba(93, 157, 255, 0.07), 0 0 24px rgba(93, 157, 255, 0.05); }
.project-form .button { width: 100%; margin-top: 0.4rem; }
.form-note { margin: 0; color: var(--text-muted); font-size: 0.69rem; text-align: center; }

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 1rem;
  padding: clamp(2rem, 5vw, 4rem) var(--pad) 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 24, 47, 0.83), rgba(5, 10, 24, 0.78));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(22px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(16rem, 1.7fr) repeat(3, minmax(8rem, 0.75fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-brand { max-width: 25rem; }
.footer-brand .brand { margin-bottom: 1.25rem; }
.footer-logo { width: 3rem; height: 3rem; border-radius: 0.95rem; }
.footer-brand > p { margin: 0; color: var(--text-soft); font-size: 0.88rem; line-height: 1.7; }

.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 0.8rem; }
.footer-column > p { margin: 0 0 0.45rem; color: var(--accent-soft); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-column a { color: var(--text-soft); font-size: 0.83rem; font-weight: 500; }
.footer-column span { color: var(--text-muted); font-size: 0.76rem; line-height: 1.45; }
.footer-contact a { color: var(--text); font-weight: 600; }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.3rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a { justify-self: end; }

body.modal-open { overflow: hidden; }
.project-modal { position: fixed; z-index: 200; inset: 0; display: grid; padding: 1rem; place-items: center; }
.project-modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(2, 6, 16, 0.78); cursor: pointer; backdrop-filter: blur(16px); }
.modal-dialog { position: relative; z-index: 1; width: min(100%, 42rem); max-height: calc(100vh - 2rem); padding: clamp(1.25rem, 4vw, 2rem); overflow: auto; border: 1px solid rgba(110, 166, 255, 0.32); border-radius: 1.5rem; background: linear-gradient(145deg, rgba(15, 29, 57, 0.97), rgba(5, 11, 25, 0.97)); box-shadow: 0 42px 120px rgba(0, 0, 0, 0.6), 0 0 70px rgba(45, 116, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08); backdrop-filter: blur(28px) saturate(145%); animation: modal-in 220ms ease both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-head { display: flex; gap: 1.5rem; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.modal-head h2 { max-width: 12ch; margin: 0; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 0.98; letter-spacing: -0.055em; }
.modal-close { display: grid; width: 2.8rem; height: 2.8rem; flex: 0 0 auto; place-items: center; color: var(--text); border: 1px solid var(--line); border-radius: 0.85rem; background: rgba(255, 255, 255, 0.04); cursor: pointer; font-size: 1.6rem; line-height: 1; }
.order-timer { display: flex; margin: 1.25rem 0; padding: 0.9rem 1rem; align-items: center; justify-content: space-between; color: var(--text-soft); border: 1px solid rgba(93, 157, 255, 0.24); border-radius: 0.9rem; background: rgba(93, 157, 255, 0.075); font-size: 0.72rem; letter-spacing: 0.04em; }
.order-timer strong { color: #91baff; font-size: 1rem; font-variant-numeric: tabular-nums; letter-spacing: 0.09em; }
.product-order-form { display: flex; flex-direction: column; gap: 1rem; }
.product-order-form label > span, .product-order-form legend { display: block; margin-bottom: 0.5rem; color: var(--accent-soft); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.product-order-form input[type="text"], .product-order-form textarea { width: 100%; color: var(--text); border: 1px solid var(--line); border-radius: 0.85rem; outline: 0; background: rgba(2, 7, 19, 0.55); }
.product-order-form input[type="text"] { min-height: 3.15rem; padding: 0 0.95rem; color: #a9c7ff; font-weight: 600; }
.product-order-form textarea { padding: 0.95rem; resize: vertical; line-height: 1.55; }
.product-order-form input[type="text"]:focus, .product-order-form textarea:focus { border-color: rgba(93, 157, 255, 0.5); box-shadow: 0 0 0 4px rgba(93, 157, 255, 0.08); }
.product-order-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.product-order-form legend { width: 100%; }
.product-order-form legend em { float: right; padding: 0.2rem 0.45rem; color: var(--text-muted); border: 1px solid var(--line); border-radius: 999px; font-size: 0.52rem; font-style: normal; letter-spacing: 0.06em; }
.field-help { margin: -0.05rem 0 0.75rem; color: var(--text-muted); font-size: 0.69rem; line-height: 1.5; }
.order-urgency-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.48rem; }
.order-urgency-choice { --priority: #8290a8; position: relative; min-width: 0; cursor: pointer; }
.order-urgency-choice.green { --priority: #62ee9a; }
.order-urgency-choice.yellow { --priority: #ffd75e; }
.order-urgency-choice.red { --priority: #ff6374; }
.order-urgency-choice.black { --priority: #b9c7df; }
.order-urgency-choice input { position: absolute; opacity: 0; pointer-events: none; }
.order-urgency-choice > span { display: flex; min-height: 5rem; padding: 0.75rem 0.55rem; align-items: flex-start; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 0.85rem; background: rgba(255, 255, 255, 0.025); transition: border-color 170ms ease, background 170ms ease, box-shadow 170ms ease, transform 170ms ease; }
.order-urgency-choice b { color: var(--priority); font-size: 0.65rem; line-height: 1.25; }
.order-urgency-choice small { color: var(--text-muted); font-size: 0.54rem; line-height: 1.35; }
.order-urgency-choice input:checked + span { border-color: color-mix(in srgb, var(--priority) 62%, transparent); background: color-mix(in srgb, var(--priority) 10%, transparent); box-shadow: 0 0 24px color-mix(in srgb, var(--priority) 18%, transparent); transform: translateY(-2px); }
.order-urgency-choice input:focus-visible + span { outline: 2px solid var(--priority); outline-offset: 2px; }
.order-urgency-detail { display: flex; min-height: 2.2rem; margin-top: 0.55rem; padding: 0.55rem 0.7rem; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid var(--line); border-radius: 0.7rem; background: rgba(255, 255, 255, 0.02); }
.order-urgency-detail p { margin: 0; color: var(--text-muted); font-size: 0.63rem; line-height: 1.45; }
.order-urgency-detail button { flex: 0 0 auto; padding: 0; color: var(--accent-soft); border: 0; background: none; cursor: pointer; font: inherit; font-size: 0.58rem; font-weight: 700; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice > span { display: flex !important; min-height: 3.15rem; margin: 0 !important; padding: 0.75rem 0.9rem; align-items: center; justify-content: center; color: var(--text-soft) !important; border: 1px solid var(--line); border-radius: 0.85rem; background: rgba(255, 255, 255, 0.025); font-size: 0.72rem !important; letter-spacing: 0.03em !important; text-align: center; text-transform: none !important; transition: border-color 170ms ease, color 170ms ease, background 170ms ease, box-shadow 170ms ease; }
.choice input:checked + span { color: #fff !important; border-color: rgba(93, 157, 255, 0.58); background: rgba(93, 157, 255, 0.15); box-shadow: 0 0 24px rgba(45, 116, 255, 0.12); }
.choice input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.payment-choice > span { min-height: 4.3rem; justify-content: flex-start; gap: 0.75rem; }
.payment-choice > span > b { font-size: 0.67rem; font-weight: 600; line-height: 1.25; text-align: left; }
.payment-logo { display: flex; width: 2.7rem; height: 2.7rem; flex: 0 0 auto; padding: 0.24rem; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 0.7rem; background: #fff; box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2); }
.payment-logo-wide { width: 4.6rem; }
.payment-logo-img { display: block; width: 100%; height: 100%; object-fit: contain; }
.usdt-image { border-radius: 50%; }
.mandiri-image { transform: scale(1.02); }
.bca-image { transform: scale(1.34); }
.qris-image { transform: scale(1.04); }
.modal-submit { display: grid; grid-template-columns: auto 1fr auto; width: 100%; margin-top: 0.25rem; align-items: center; color: #fff; background: linear-gradient(135deg, #128c5e, #25d366); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.2); }
.modal-submit svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }
.modal-note { margin: 0; color: var(--text-muted); font-size: 0.68rem; line-height: 1.5; text-align: center; }

.whatsapp-float { position: fixed; z-index: 90; right: 1.25rem; bottom: 1.25rem; display: flex; height: 3.6rem; padding: 0 1.15rem; align-items: center; gap: 0.65rem; color: #03140a; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 999px; background: #25d366; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), 0 0 36px rgba(37, 211, 102, 0.26); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; transition: transform 180ms ease, box-shadow 180ms ease; }
.whatsapp-float:hover { color: #03140a; transform: translateY(-4px); box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 46px rgba(37, 211, 102, 0.35); }
.whatsapp-float svg { width: 1.35rem; height: 1.35rem; fill: currentColor; }

body, p, input, textarea, select { font-weight: 400; }
h2, h3 { font-weight: 600; }
h1, strong, .brand, .button, .nav-cta { font-weight: 700; }
.hero h1 { font-weight: 800; }

@supports (animation-timeline: view()) {
  .service-row,
  .product-card,
  .audience-grid article,
  .process-list article,
  .why-points article,
  .faq-list details {
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 27%;
  }
  @keyframes reveal {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1080px) {
  .urgency-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .why-points { margin-left: 0; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 780px) {
  .section-pad { width: min(calc(100% - 1.2rem), var(--max)); padding-top: 5rem; padding-bottom: 5rem; }
  .nav { top: 0.6rem; grid-template-columns: 1fr auto; width: calc(100% - 1.2rem); min-height: 4.25rem; margin-top: 0.6rem; }
  .nav-links, .nav-cta { display: none; }
  .mobile-nav { position: relative; display: block; }
  .mobile-nav summary { padding: 0.7rem; cursor: pointer; list-style: none; color: var(--accent-soft); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav > div { position: absolute; top: 2.9rem; right: 0; display: flex; min-width: 14rem; padding: 1rem; flex-direction: column; gap: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(7, 14, 31, 0.94); box-shadow: var(--shadow); backdrop-filter: blur(20px); font-size: 0.75rem; font-weight: 700; }

  .hero { width: calc(100% - 1.2rem); min-height: 53rem; margin-top: -4.85rem; padding-top: 9rem; }
  .hero::before { top: 24%; right: -42%; width: 27rem; }
  .hero::after { top: 30%; right: -24%; width: 20rem; }
  .hero-kicker span:last-child { display: none; }
  .hero h1 { max-width: 9.5ch; font-size: clamp(3.55rem, 16vw, 6.5rem); line-height: 0.86; }
  .hero-bottom { grid-template-columns: 1fr; align-items: start; margin-top: 3rem; padding: 1.25rem; }
  .hero-bottom .button { width: 100%; }
  .scroll-note { display: none; }
  .ticker { width: calc(100% - 1.2rem); }

  .statement, .section-heading, .why-title, .urgency-heading, .work, .faq, .start { grid-template-columns: 1fr; }
  .statement { margin-top: 4rem; }
  .statement h2, .decay-meter, .statement-copy { grid-column: 1; }
  .statement-copy { grid-template-columns: 1fr; gap: 1rem; }
  .section-heading { margin-bottom: 3.5rem; }
  .product-heading p:last-child { grid-column: 1; }

  .service-row { grid-template-columns: auto 1fr auto; gap: 1rem; align-items: start; padding: 1.35rem; }
  .service-row > div { grid-column: 2 / 4; }
  .service-row > a { grid-column: 3; grid-row: 1; }

  .urgency-heading { align-items: start; gap: 1.25rem; }
  .urgency-experience { grid-template-columns: 1fr; }
  .urgency-tabs { grid-template-columns: 1fr 1fr; }
  .urgency-detail { min-height: 27rem; }
  .urgency-card { min-height: 28rem; }
  .urgency-note { grid-template-columns: 1fr; gap: 1.2rem; }

  .overflow-card { grid-template-columns: 1fr auto; }
  .overflow-label { grid-column: 1 / 3; }

  .process-list { margin-left: 0; }
  .process-list article { grid-template-columns: 2rem 3rem 1fr; gap: 0.9rem; align-items: center; }
  .process-step-icon { width: 3rem; height: 3rem; }
  .process-list article h3 { grid-column: 3; }
  .process-list article p { grid-column: 3; }
  .work { gap: 4rem; }
  .why-title { margin-bottom: 3.5rem; }
  .why-points { grid-template-columns: 1fr; }
  .why-points article { min-height: auto; }
  .why-points h3 { margin-top: 2.5rem; }
  .faq { gap: 3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom > span:nth-child(2) { display: none; }
  .order-urgency-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-urgency-choice.normal { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  :root { --radius: 1.3rem; }
  .brand > span:last-child { font-size: 0.66rem; }
  .hero { min-height: 48rem; }
  .hero h1 { font-size: clamp(3.05rem, 17vw, 5.2rem); }
  .statement-tech, .why-tech { display: none; }
  .statement-watermark { right: -2rem; }
  .decay-track small { display: none; }
  .decay-track b { font-size: 0.52rem; }
  .why-watermark { right: -2rem; bottom: -5rem; }
  .button { width: 100%; }
  .urgency-grid, .product-grid, .audience-grid, .field-row { grid-template-columns: 1fr; }
  .urgency-tabs { grid-template-columns: 1fr; }
  .urgency-detail { min-height: 29rem; }
  .urgency-card { min-height: 27rem; }
  .product-card { min-height: 18rem; }
  .project-modal { padding: 0.55rem; place-items: end center; }
  .modal-dialog { width: 100%; max-height: calc(100dvh - 1.1rem); border-radius: 1.3rem; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-float { right: 0.85rem; bottom: 0.85rem; width: 3.45rem; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .overflow-card { grid-template-columns: 1fr; }
  .overflow-label { grid-column: 1; }
  .overflow-arrow { display: none; }
  .audience-grid article { min-height: 14rem; }
  .audience-grid h3 { margin-top: 3.5rem; }
  .work-board { min-height: 26rem; }
  .work-board > p { font-size: clamp(2.25rem, 12vw, 3.8rem); }
  .faq-list summary { font-size: 0.92rem; }
  .faq-list details > p { padding-right: 1.25rem; padding-left: 3.2rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .footer-bottom a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
