:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #edf4f8;
  --surface-strong: #0d2238;
  --line: rgba(24, 48, 74, 0.12);
  --text: #122033;
  --muted: #5b6d7e;
  --host: #0b3a66;
  --host-2: #10659a;
  --pdv: #0c7a5a;
  --pdv-2: #22a86b;
  --licit: #4632a8;
  --licit-2: #d8a514;
  --shadow: 0 18px 48px rgba(16, 38, 64, 0.1);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  background: #0b1d31;
  color: #d9e8f5;
  font-size: 0.9rem;
  font-weight: 700;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  min-height: 42px;
  align-items: center;
  text-align: center;
}

.topbar strong {
  color: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 38, 64, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
}

.brand strong,
.brand-footer strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand small {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu a,
.menu-item {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.menu a:hover,
.menu-item:hover {
  color: var(--host-2);
}

.nav-group {
  position: relative;
  padding: 1.45rem 0;
}

.menu-item {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  display: none;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown,
.nav-group.is-open .dropdown {
  display: grid;
  gap: 0.25rem;
}

.dropdown a {
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-sm);
}

.dropdown a:hover {
  background: #edf4f8;
}

.mega-dropdown {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  width: 100vw;
  min-width: 0;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding: 2.5rem max(2rem, calc((100vw - var(--container)) / 2));
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  border-top: 2px solid var(--host-2);
  background:
    linear-gradient(135deg, rgba(16, 101, 154, 0.06), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 45px rgba(18, 32, 51, 0.12);
}

.nav-group:hover .mega-dropdown,
.nav-group:focus-within .mega-dropdown,
.nav-group.is-open .mega-dropdown {
  display: grid;
}

.mega-intro h2,
.mega-column h3 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.mega-intro h2 {
  color: var(--host-2);
  font-size: 1.45rem;
}

.mega-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mega-column h3 {
  color: var(--text);
  font-size: 1.1rem;
}

.mega-column a {
  display: block;
  padding: 0;
  border-radius: 0;
}

.mega-column a + a {
  margin-top: 1.6rem;
}

.mega-column a:hover {
  background: transparent;
}

.mega-column strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--host-2);
  font-size: 1rem;
}

.mega-column span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.65;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--host), var(--host-2));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 58, 102, 0.22);
}

.button-secondary,
.button-outline {
  background: #ffffff;
  border-color: var(--line);
  color: var(--text);
}

.button-pdv {
  background: linear-gradient(135deg, #0a6f88, var(--pdv-2));
}

.button-licit {
  background: linear-gradient(135deg, var(--licit), #192b66);
}

.button-sm {
  min-height: 40px;
  padding: 0.68rem 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.7rem 0 4.2rem;
  background:
    radial-gradient(circle at 84% 12%, rgba(50, 149, 218, 0.35), transparent 28%),
    linear-gradient(135deg, #07182b 0%, #0d3d68 55%, #11324c 100%);
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(245, 248, 251, 0.08));
}

.hero-light {
  background:
    radial-gradient(circle at 78% 20%, rgba(34, 168, 107, 0.18), transparent 24%),
    linear-gradient(135deg, #f8fbfd, #eef6f6);
  color: var(--text);
}

.hero-licit {
  background:
    radial-gradient(circle at 78% 16%, rgba(216, 165, 20, 0.22), transparent 26%),
    linear-gradient(135deg, #181a4a, #432d8f 64%, #17264b);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1,
.section h2,
.page-title {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 11.5ch;
  margin: 1rem 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.hero-copy h1.wide {
  max-width: 15ch;
}

.hero-text {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-light .hero-text {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #797d82;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-light .eyebrow,
.section .eyebrow {
  background: rgba(16, 101, 154, 0.1);
  color: var(--host-2);
}

.product-pdv .eyebrow,
.product-pdv .badge {
  background: rgba(34, 168, 107, 0.12);
  color: var(--pdv);
}

.product-licit .eyebrow,
.product-licit .badge {
  background: rgba(216, 165, 20, 0.16);
  color: #8c6500;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.portfolio-board,
.product-dashboard {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.hero-light .product-dashboard {
  background: #ffffff;
  border-color: rgba(12, 122, 90, 0.16);
  box-shadow: var(--shadow);
}

.portfolio-board-header,
.dashboard-row,
.pipeline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.portfolio-board-header {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.product-tile {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text);
  border-left: 4px solid var(--host-2);
}

.product-tile + .product-tile {
  margin-top: 0.85rem;
}

.product-tile.pdv {
  border-color: var(--pdv-2);
}

.product-tile.licit {
  border-color: var(--licit-2);
}

.product-tile strong,
.dashboard-row strong,
.pipeline-row strong {
  display: block;
  margin-bottom: 0.28rem;
}

.product-tile span,
.dashboard-row span,
.pipeline-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 5.2rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-ink {
  background: #0b1d31;
  color: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

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

.section h2,
.page-title {
  max-width: 15ch;
  margin: 0.9rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-heading.center h2 {
  margin-inline: auto;
}

.section-heading p,
.card p,
.segment-card p,
.cta-panel p,
.footer p,
.footer span,
.feature-list li,
.info-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.section-ink .section-heading p,
.section-ink .card p,
.section-ink .footer span {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.card,
.segment-card,
.info-panel,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card,
.segment-card,
.info-panel {
  padding: 1.45rem;
}

.card h3,
.segment-card h3,
.info-panel h3 {
  margin: 0.75rem 0 0.6rem;
  font-size: 1.2rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-width: 1px;
  box-shadow: 0 24px 60px rgba(18, 32, 51, 0.14);
}

.product-card.pdv {
  border-color: rgba(34, 168, 107, 0.28);
  background:
    linear-gradient(135deg, rgba(12, 122, 90, 0.1), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f0faf6 100%);
}

.product-card.licit {
  border-color: rgba(70, 50, 168, 0.28);
  background:
    linear-gradient(135deg, rgba(70, 50, 168, 0.1), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f5f2ff 100%);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--host-2);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(16, 101, 154, 0.08);
  pointer-events: none;
}

.product-card.pdv::before {
  background: linear-gradient(90deg, #0a6f88, var(--pdv-2));
}

.product-card.licit::before {
  background: linear-gradient(90deg, var(--licit), var(--licit-2));
}

.product-card.pdv::after {
  background: rgba(34, 168, 107, 0.14);
}

.product-card.licit::after {
  background: rgba(216, 165, 20, 0.16);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card .button {
  margin-top: 1rem;
}

.feature-list,
.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--host-2);
}

.pdv .feature-list li::before,
.product-pdv .check-list li::before {
  background: var(--pdv-2);
}

.licit .feature-list li::before,
.product-licit .check-list li::before {
  background: var(--licit-2);
}

.segment-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.segment-card a {
  margin-top: auto;
  color: var(--host-2);
  font-weight: 900;
}

.metric-row {
  display: grid;
  gap: 1rem;
}

.metric {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric strong {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.split-feature {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.product-dashboard {
  color: var(--text);
}

.dashboard-row,
.pipeline-row {
  padding: 1rem;
  border: 1px solid rgba(16, 101, 154, 0.12);
  border-radius: var(--radius-sm);
  background: #f7fbfd;
}

.dashboard-row + .dashboard-row,
.pipeline-row + .pipeline-row {
  margin-top: 0.8rem;
}

.status-pill {
  flex: 0 0 auto;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(34, 168, 107, 0.12);
  color: var(--pdv);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-licit .status-pill {
  background: rgba(216, 165, 20, 0.18);
  color: #806000;
}

.source-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(34, 168, 107, 0.18);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(12, 122, 90, 0.16);
}

.source-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.source-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(4, 18, 15, 0.78)),
    linear-gradient(90deg, rgba(4, 18, 15, 0.18), transparent 50%);
}

.source-hero-card,
.source-hero-metrics {
  position: absolute;
  z-index: 1;
}

.source-hero-card {
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 36px rgba(4, 18, 15, 0.22);
}

.source-hero-card strong,
.source-flow-step h3,
.source-photo-card strong {
  display: block;
}

.source-hero-card span,
.source-flow-step p,
.source-photo-card span {
  color: var(--muted);
  line-height: 1.6;
}

.source-hero-metrics {
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  gap: 0.6rem;
  width: min(220px, calc(100% - 2.4rem));
}

.source-hero-metrics article {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(4, 18, 15, 0.18);
}

.source-hero-metrics strong {
  display: block;
  color: var(--pdv);
  font-size: 0.94rem;
}

.source-hero-metrics span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.source-story-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 168, 107, 0.1), transparent 24%),
    #f7fbfd;
}

.source-photo-grid {
  display: grid;
  gap: 1rem;
}

.source-photo-card,
.source-operation-image {
  overflow: hidden;
  border: 1px solid rgba(34, 168, 107, 0.18);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.source-photo-card {
  margin: 0;
  min-height: 100%;
}

.source-photo-card img,
.source-operation-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.source-photo-card-large img {
  height: 100%;
  min-height: 430px;
}

.source-photo-card figcaption {
  padding: 1.15rem;
}

.source-photo-card strong {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.source-operation-block {
  align-items: center;
}

.source-operation-image img {
  height: 520px;
}

.source-flow-section {
  background:
    linear-gradient(180deg, rgba(12, 122, 90, 0.04), rgba(16, 101, 154, 0.04)),
    #ffffff;
}

.source-flow-grid {
  display: grid;
  gap: 1rem;
}

.source-flow-step {
  padding: 1.35rem;
  border: 1px solid rgba(34, 168, 107, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(34, 168, 107, 0.08), transparent 42%),
    #ffffff;
  box-shadow: var(--shadow);
}

.source-flow-step > span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(34, 168, 107, 0.12);
  color: var(--pdv);
  font-weight: 900;
  font-size: 0.86rem;
}

.source-flow-step h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.08rem;
}

.cta-panel {
  padding: 2.2rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(16, 101, 154, 0.14), transparent 35%),
    #ffffff;
}

.cta-panel h2 {
  margin-inline: auto;
}

.cta-actions {
  justify-content: center;
}

.footer {
  padding: 2.4rem 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin-top: 0.58rem;
  color: var(--muted);
}

.footer a:hover {
  color: var(--host-2);
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-copy span {
  margin-top: 0;
  font-size: 0.9rem;
}

.footer-copy #year {
  display: inline;
}

.construction-section {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 80% 16%, rgba(16, 101, 154, 0.16), transparent 28%),
    linear-gradient(135deg, #f7fbfd 0%, #edf4f8 100%);
}

.construction-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.construction-copy h1 {
  max-width: 13ch;
  margin: 1rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.construction-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.construction-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(16, 101, 154, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(16, 101, 154, 0.08), transparent 42%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(18, 32, 51, 0.14);
}

.support-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(34, 168, 107, 0.16), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(216, 165, 20, 0.14), transparent 24%),
    linear-gradient(135deg, #f7fbfd 0%, #edf4f8 100%);
}

.support-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.support-copy h1,
.form-heading h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.support-copy h1 {
  max-width: 12ch;
  margin: 1rem 0;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.support-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.support-summary {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.support-summary article {
  padding: 1rem;
  border: 1px solid rgba(16, 101, 154, 0.14);
  border-left: 4px solid var(--host-2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.support-summary article:nth-child(2) {
  border-left-color: var(--pdv-2);
}

.support-summary strong,
.support-summary span {
  display: block;
}

.support-summary span {
  margin-top: 0.22rem;
  color: var(--muted);
  line-height: 1.55;
}

.support-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(16, 101, 154, 0.16);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(18, 32, 51, 0.14);
}

.form-heading {
  padding-bottom: 0.35rem;
}

.form-heading h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.support-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

.support-form label span {
  font-size: 0.88rem;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(24, 48, 74, 0.16);
  border-radius: var(--radius-sm);
  background: #f8fbfd;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 0.85rem 0.95rem;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.support-form textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--host-2);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 101, 154, 0.12);
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #8494a3;
  font-weight: 500;
}

.support-form .button {
  margin-top: 0.35rem;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.support-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.construction-card strong {
  display: block;
  margin-top: 1.35rem;
  font-size: 1.15rem;
}

.construction-card > span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.65;
}

.construction-card-dark {
  border-color: rgba(255, 190, 24, 0.32);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 190, 24, 0.14), transparent 36%),
    linear-gradient(180deg, #0b111b 0%, #030609 100%);
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(3, 6, 9, 0.24);
}

.construction-card-dark > span {
  color: rgba(255, 255, 255, 0.72);
}

.work-sign-scene {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 190, 24, 0.16), transparent 30%),
    linear-gradient(180deg, #111827 0%, #04070c 100%);
  border: 1px solid rgba(255, 190, 24, 0.22);
}

.warning-stripes {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 43%;
  height: 74px;
  transform: translateY(-50%);
  background:
    repeating-linear-gradient(
      105deg,
      #ffbe18 0 12px,
      #ffbe18 12px 24px,
      #090d14 24px 34px,
      #090d14 34px 46px
    );
  box-shadow:
    0 -1px 0 rgba(255, 190, 24, 0.35),
    0 1px 0 rgba(255, 190, 24, 0.35),
    0 16px 34px rgba(0, 0, 0, 0.28);
  animation: stripe-slide 2.4s linear infinite;
}

.work-sign {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 215px;
  height: 215px;
  display: grid;
  place-items: center;
  border: 5px solid #090d14;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffd23e 0%, #ffaf13 100%);
  box-shadow:
    0 0 0 5px #ffbe18,
    0 0 0 9px #090d14,
    0 22px 42px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: sign-float 2.8s ease-in-out infinite;
}

.sign-inner {
  display: grid;
  place-items: center;
  color: #090d14;
  text-align: center;
  transform: rotate(-45deg);
}

.sign-inner span,
.sign-inner strong {
  display: block;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.sign-inner strong {
  font-size: 1rem;
}

.laptop-icon {
  position: relative;
  width: 68px;
  height: 52px;
  margin-top: 14px;
  border: 6px solid #090d14;
  border-radius: 4px;
  background: #ffc52d;
}

.laptop-icon::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: -18px;
  height: 7px;
  border-radius: 999px;
  background: #090d14;
}

.screen-cursor {
  position: absolute;
  left: 10px;
  top: 9px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: #090d14;
  animation: cursor-blink 900ms steps(2, end) infinite;
}

.beacon {
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffbe18;
  box-shadow: 0 0 0 0 rgba(255, 190, 24, 0.6);
  animation: beacon-pulse 1.4s ease-out infinite;
}

.beacon-left {
  left: 28px;
}

.beacon-right {
  right: 28px;
  animation-delay: 700ms;
}

.dust {
  position: absolute;
  bottom: 30px;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 190, 24, 0.18);
  animation: dust-drift 3.2s ease-in-out infinite;
}

.dust-one {
  left: 16%;
}

.dust-two {
  left: 42%;
  width: 120px;
  animation-delay: 500ms;
}

.dust-three {
  right: 12%;
  width: 92px;
  animation-delay: 1s;
}

@keyframes stripe-slide {
  to {
    background-position: 92px 0;
  }
}

@keyframes sign-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(45deg) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-7px);
  }
}

@keyframes cursor-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@keyframes beacon-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 190, 24, 0.58);
  }

  100% {
    box-shadow: 0 0 0 24px rgba(255, 190, 24, 0);
  }
}

@keyframes dust-drift {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-8px);
  }

  50% {
    opacity: 0.75;
    transform: translateX(10px);
  }
}

@media (min-width: 720px) {
  .grid-2,
  .metric-row,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .hero-grid,
  .split-feature {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4,
  .metric-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .construction-grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .support-grid {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-photo-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .source-photo-card-large {
    grid-row: span 2;
  }

  .source-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 919px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: grid;
  }

  .nav-group {
    padding: 0;
  }

  .menu-item {
    width: 100%;
    text-align: left;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: auto;
    margin-top: 0.35rem;
    box-shadow: none;
  }

  .nav-group:hover .dropdown,
  .nav-group:focus-within .dropdown,
  .nav-group:hover .mega-dropdown,
  .nav-group:focus-within .mega-dropdown {
    display: none;
  }

  .nav-group.is-open .dropdown,
  .nav-group.is-open .mega-dropdown {
    display: grid;
  }

  .mega-dropdown {
    width: auto;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
  }

  .mega-intro p,
  .mega-column span {
    font-size: 0.92rem;
  }

  .mega-column a + a {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.55rem 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 4.3rem 0 3.3rem;
  }

  .hero-copy h1,
  .section h2,
  .page-title {
    max-width: none;
  }

  .section {
    padding: 4.2rem 0;
  }

  .construction-section {
    padding: 3.5rem 0;
  }

  .support-hero {
    padding: 3.5rem 0;
  }

  .construction-card {
    padding: 1.2rem;
  }

  .support-form {
    padding: 1rem;
  }

  .source-hero-visual,
  .source-hero-visual > img {
    min-height: 420px;
  }

  .source-hero-metrics {
    position: static;
    width: auto;
    padding: 1rem;
    background: #ffffff;
  }

  .source-hero-card {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .source-photo-card img,
  .source-photo-card-large img,
  .source-operation-image img {
    height: 260px;
    min-height: 0;
  }

  .work-sign-scene {
    min-height: 250px;
  }

  .warning-stripes {
    height: 58px;
  }

  .work-sign {
    width: 172px;
    height: 172px;
    border-width: 4px;
    border-radius: 14px;
    box-shadow:
      0 0 0 4px #ffbe18,
      0 0 0 7px #090d14,
      0 18px 34px rgba(0, 0, 0, 0.34);
  }

  .sign-inner span,
  .sign-inner strong {
    font-size: 0.82rem;
  }

  .laptop-icon {
    width: 54px;
    height: 42px;
    margin-top: 10px;
    border-width: 5px;
  }

  .button {
    width: 100%;
  }

  .dashboard-row,
  .pipeline-row,
  .portfolio-board-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
