:root {
  --ink: #0b0f1c;
  --ink-2: #151a2d;
  --text: #151928;
  --muted: #646d82;
  --line: #dfe4ee;
  --paper: #ffffff;
  --wash: #f4f7fb;
  --aqua: #23d6c5;
  --coral: #ff6a5f;
  --gold: #f7c65a;
  --green: #4fb67a;
  --shadow: 0 24px 70px rgba(11, 15, 28, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 15, 28, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 238px;
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--aqua);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  border-radius: 999px;
}

.nav-links .nav-cta {
  min-height: 40px;
  padding: 0 16px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 106, 95, 0.25);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.btn.dark {
  background: var(--ink);
}

.btn.light {
  background: #fff;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 118px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 28, 0.92) 0%, rgba(11, 15, 28, 0.76) 41%, rgba(11, 15, 28, 0.18) 100%),
    url("../images/hero-event-platform.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, rgba(11, 15, 28, 0.86), rgba(11, 15, 28, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 36px;
  padding: 58px 0 34px;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.55rem, 5.15vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--aqua);
}

.hero-copy p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.proof-item {
  border-left: 2px solid var(--aqua);
  padding-left: 14px;
}

.proof-item strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-dots {
  display: flex;
  gap: 6px;
}

.panel-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.panel-dots i:nth-child(2) {
  background: var(--gold);
}

.panel-dots i:nth-child(3) {
  background: var(--aqua);
}

.panel-top span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.platform-preview {
  padding: 18px;
}

.preview-card {
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.preview-body {
  padding: 18px;
}

.preview-body h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.preview-body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.preview-actions span {
  min-height: 40px;
  border-radius: 6px;
  background: var(--wash);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.section {
  padding: 94px 0;
}

.section.tight {
  padding: 70px 0;
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section.wash {
  background: var(--wash);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.4fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 44px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dark .section-label {
  color: var(--gold);
}

.section h2,
.article-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 15, 28, 0.12);
  border-bottom: 1px solid rgba(11, 15, 28, 0.12);
}

.feature-strip article {
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid rgba(11, 15, 28, 0.12);
  background: #fff;
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.feature-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-grid,
.event-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.event-card,
.blog-card,
.mini-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.event-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 214, 197, 0.45);
  box-shadow: var(--shadow);
}

.service-card img,
.event-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.18;
}

.card-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.tag-list,
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.chip-list li,
.article-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.dark .tag-list li,
.dark .chip-list li {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.platform-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 54px;
}

.device-stack {
  position: relative;
  min-height: 540px;
}

.device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.device.desktop {
  left: 0;
  top: 44px;
  width: min(92%, 620px);
}

.device.phone {
  right: 0;
  bottom: 24px;
  width: min(38%, 220px);
}

.device img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.device.phone img {
  aspect-ratio: 9 / 16;
}

.device-caption {
  padding: 16px;
  color: var(--ink);
}

.device-caption strong {
  display: block;
  line-height: 1.2;
}

.device-caption span {
  color: var(--muted);
  font-size: 0.83rem;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.timeline article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.step-no {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 900;
}

.timeline h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.event-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.event-card {
  display: flex;
  flex-direction: column;
}

.event-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: 34px;
}

.experience-copy {
  display: grid;
  align-content: center;
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.mini-card {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.mini-card strong {
  display: block;
  color: #fff;
  line-height: 1.2;
}

.mini-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.experience-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(11, 15, 28, 0.78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.media-note strong {
  display: block;
  font-size: 1.15rem;
}

.media-note span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-grid article {
  min-height: 250px;
  padding: 26px;
  background: #fff;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.process-grid h3 {
  margin: 32px 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.showcase-layout,
.analytics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.88fr);
  gap: 34px;
  align-items: center;
}

.showcase-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.14;
}

.showcase-copy p,
.analytics-layout p {
  color: var(--muted);
}

.showcase-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
}

.showcase-list strong {
  color: var(--ink);
}

.platform-screen,
.analytics-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.screen-toolbar div {
  display: flex;
  gap: 7px;
}

.screen-toolbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.screen-toolbar i:nth-child(2) {
  background: var(--gold);
}

.screen-toolbar i:nth-child(3) {
  background: var(--aqua);
}

.screen-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 430px;
}

.screen-sidebar {
  padding: 20px;
  background: var(--ink);
  color: #fff;
}

.screen-sidebar strong,
.screen-sidebar span,
.screen-sidebar a {
  display: block;
}

.screen-sidebar span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.screen-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.screen-sidebar a {
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.screen-main {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
}

.screen-hero-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--wash);
  overflow: hidden;
}

.screen-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.screen-hero-card div {
  padding: 18px 18px 18px 0;
}

.screen-hero-card strong,
.screen-hero-card span {
  display: block;
}

.screen-hero-card strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.screen-hero-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.screen-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.screen-metrics article,
.screen-activity,
.analytics-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}

.screen-metrics span,
.screen-activity span,
.analytics-header span,
.analytics-grid span,
.analytics-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.screen-metrics strong,
.screen-activity strong,
.analytics-header strong,
.analytics-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.screen-activity strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.screen-activity p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.journey-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.journey-rail article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.journey-rail span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--aqua);
  color: var(--ink);
  font-weight: 900;
}

.journey-rail h3 {
  margin: 38px 0 10px;
  color: #fff;
  font-size: 1.18rem;
}

.journey-rail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.module-card,
.corporate-value-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
}

.module-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 36px;
  border-radius: 999px;
  background: rgba(35, 214, 197, 0.13);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
}

.module-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.corporate-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.corporate-value-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.corporate-value-grid strong,
.corporate-value-grid span {
  display: block;
}

.corporate-value-grid strong {
  color: #fff;
  line-height: 1.2;
}

.corporate-value-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.analytics-panel {
  padding: 24px;
}

.analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.analytics-header strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.live-dot {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 182, 122, 0.14);
  color: var(--green) !important;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.analytics-grid strong {
  font-size: 2rem;
}

.analytics-grid small {
  margin-top: 8px;
  color: var(--green);
}

.analytics-bars {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.analytics-bars div {
  height: 11px;
  border-radius: 999px;
  background: var(--wash);
  overflow: hidden;
}

.analytics-bars span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--coral));
}

.analytics-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: 34px;
  align-items: center;
}

.quote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 3.1rem);
  line-height: 1.15;
}

.quote cite {
  display: block;
  margin-top: 22px;
  color: var(--aqua);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-panel article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.metric-panel strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.metric-panel span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.blog-card a {
  display: block;
}

.blog-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.read-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

.read-link::after {
  content: "->";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.blog-card:hover .read-link::after,
.read-link:hover::after {
  transform: translateX(4px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.7fr);
  gap: 46px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form {
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(35, 214, 197, 0.14);
}

.contact-form .btn[type="submit"] {
  margin-top: 18px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--coral);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: #080b14;
  color: #fff;
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(150px, 0.35fr));
  gap: 30px;
}

.footer-brand img {
  width: 238px;
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 8px;
  font-size: 0.94rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.whatsapp-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.32), 0 8px 18px rgba(11, 15, 28, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-chat:hover,
.whatsapp-chat:focus-visible {
  transform: translateY(-3px);
  background: #1ebe5d;
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.4), 0 10px 22px rgba(11, 15, 28, 0.2);
}

.whatsapp-chat svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.article-header {
  background: var(--ink);
  color: #fff;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 62px;
}

.article-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 320px);
  gap: 58px;
  align-items: start;
}

.article-content {
  font-size: 1.06rem;
}

.article-content h2 {
  margin: 44px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.article-content p {
  color: #374055;
}

.article-content ul {
  padding-left: 22px;
  color: #374055;
}

.article-content li {
  margin: 10px 0;
}

.article-aside {
  position: sticky;
  top: 102px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
}

.article-aside h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.article-aside a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.article-cta {
  margin-top: 44px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1100px) {
  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-strip article:nth-child(3) {
    border-right: 0;
  }

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

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

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

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

@media (max-width: 880px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    z-index: 60;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a,
  .nav-cta {
    min-height: 48px;
    padding: 14px 10px;
  }

  .nav-cta {
    margin-top: 8px;
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero-inner,
  .section-head,
  .platform-story,
  .split-band,
  .showcase-layout,
  .analytics-layout,
  .testimonial-band,
  .contact-layout,
  .article-hero,
  .article-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 66px;
  }

  .hero-panel {
    align-self: auto;
  }

  .device-stack {
    min-height: 500px;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

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

  .article-aside {
    position: static;
  }
}

@media (max-height: 860px) and (min-width: 881px) {
  .hero-proof {
    display: none;
  }

  .hero-inner {
    padding: 54px 0 48px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 184px;
    height: auto;
  }

  .nav {
    min-height: 72px;
  }

  .nav-links {
    inset: 72px 0 auto;
  }

  .section {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 16vw, 4rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .btn {
    min-width: 181px;
  }

  .hero-proof,
  .feature-strip,
  .service-grid,
  .event-grid,
  .blog-grid,
  .mini-grid,
  .process-grid,
  .metric-panel,
  .journey-rail,
  .module-grid,
  .corporate-value-grid,
  .screen-metrics,
  .analytics-grid,
  .faq-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .screen-hero-card {
    grid-template-columns: 1fr;
  }

  .screen-hero-card div {
    padding: 18px;
  }

  .screen-sidebar nav {
    grid-template-columns: 1fr;
  }

  .journey-rail article {
    min-height: auto;
  }

  .journey-rail h3 {
    margin-top: 24px;
  }

  .feature-strip article,
  .feature-strip article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 15, 28, 0.12);
  }

  .device-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .device {
    position: static;
    width: 100% !important;
  }

  .device.phone img {
    aspect-ratio: 4 / 3;
  }

  .experience-media {
    min-height: 420px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-chat {
    width: 56px;
    height: 56px;
  }
}

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