:root {
  --bg: #f4f7ff;
  --surface: rgba(255, 255, 255, 0.76);
  --text: #10214a;
  --muted: #61729d;
  --primary: #594ff6;
  --primary-2: #6b6bff;
  --blue: #1d7dff;
  --blue-2: #2bc5ff;
  --blue-soft: rgba(29, 125, 255, 0.1);
  --blue-border: rgba(119, 142, 184, 0.18);
  --cyan: #30c9f5;
  --green: #22c58b;
  --orange: #ffac0a;
  --shadow: 0 14px 34px rgba(29, 45, 84, 0.07);
  --radius-lg: 32px;
  --radius-md: 24px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}
body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  font-family: "Segoe UI Variable", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(89, 79, 246, 0.035) 0%, transparent 34%),
    linear-gradient(215deg, rgba(48, 201, 245, 0.04) 0%, transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fc 48%, #fbfcff 100%);
}
a { color: inherit; text-decoration: none; }
button,
input,
textarea { font: inherit; }
.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto 40px;
}
.topbar {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 48px), var(--container));
  margin: 0;
  padding: 16px 22px;
  border: 1px solid rgba(139, 157, 196, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 250, 255, 0.74));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 24px rgba(16, 33, 74, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 800;
}
.brand-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(89, 79, 246, 0.2));
}
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.96rem;
  color: var(--muted);
}
.menu a {
  position: relative;
  padding: 8px 0;
}
.menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 0.25s ease;
}
.menu a:hover::after,
.menu a.active::after {
  left: 0;
  width: 100%;
}
.topbar-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.topbar-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 60%, #4ac5ff 100%);
  box-shadow: 0 16px 28px rgba(89, 79, 246, 0.26);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(96, 120, 190, 0.18);
}
.topbar-cta:hover,
.btn:hover { transform: translateY(-2px); }
.menu::-webkit-scrollbar { display: none; }
.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 50px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}
.section-heading h2,
.contact h2 {
  margin: 16px 0;
  line-height: 0.97;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.section-heading p,
.benefit-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.feature-card,
.benefit-card,
.contact-card {
  border: 1px solid var(--blue-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 248, 255, 0.88));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.contact-form input,
.contact-form textarea {
  border-radius: 18px;
  background: #eff4fd;
  border: 1px solid rgba(102, 123, 175, 0.15);
}
.section-heading { max-width: 730px; margin-bottom: 30px; }
.section-heading h2,
.contact h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
main > .section:not(.platform-hero) .section-heading,
.contact-copy {
  position: relative;
}
main > .section:not(.platform-hero) .section-heading::after,
.contact-copy::after {
  content: "";
  display: block;
  width: min(100%, 180px);
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(29, 125, 255, 0.5), rgba(48, 201, 245, 0.16), transparent);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(89, 79, 246, 0.035), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 249, 255, 0.88) 100%);
}
.feature-card::before,
.service-card::before,
.benefit-card:not(.standout)::before,
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(89, 79, 246, 0.36), rgba(48, 201, 245, 0.2), transparent 82%);
  opacity: 0.58;
  pointer-events: none;
}
.feature-card h3 {
  margin: 16px 0 10px;
  font-size: 1.38rem;
  line-height: 1.2;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  box-shadow: inset 0 -8px 12px rgba(24, 37, 79, 0.08), 0 10px 18px rgba(44, 63, 131, 0.1);
}
.feature-icon .material-symbols-outlined {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}
.features .section-heading {
  max-width: 860px;
  margin-bottom: 22px;
}
.features .section-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}
.platform .section-heading h2,
.services .section-heading h2,
.benefits .section-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}
.features .section-heading p {
  max-width: 680px;
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}
.features.section {
  padding-top: 34px;
  padding-bottom: 34px;
}
.feature-icon.blue { background: linear-gradient(160deg, #1d5bff, #25befb); }
.feature-icon.violet { background: linear-gradient(160deg, #5841ff, #ae65ff); }
.feature-icon.aqua { background: linear-gradient(160deg, #05b6d3, #3ed7ba); }
.feature-icon.orange { background: linear-gradient(160deg, #ff8c3f, #ffcd45); }
.platform-layout,
.benefit-columns,
.contact-card {
  display: grid;
  gap: 24px;
}
.platform-hero .section-heading {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  text-align: center;
}
.platform-hero .section-heading h2 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 auto clamp(28px, 4vh, 44px);
  font-size: 4.2rem;
  line-height: 0.98;
  letter-spacing: 0;
  color: #fff;
}
.platform-hero-title {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
}
.platform-hero .section-heading p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.72;
}
.platform-hero.section {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: clamp(156px, 20vh, 216px) max(28px, calc((100vw - 1120px) / 2)) clamp(82px, 12vh, 136px);
  padding: clamp(156px, 20dvh, 216px) max(28px, calc((100vw - 1120px) / 2)) clamp(82px, 12dvh, 136px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(135deg, #4136c7 0%, #4d46de 45%, #5d68ff 100%);
  box-shadow: inset 0 -24px 44px rgba(34, 31, 122, 0.12);
}
.platform-hero.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.4px, transparent 1.4px);
  background-size: 46px 46px;
  opacity: 0.32;
  animation: heroDotsFloat 14s linear infinite;
  pointer-events: none;
}
.platform-hero.section::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -10%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  animation: heroGlowSweep 7s ease-in-out infinite;
  pointer-events: none;
}
.platform-layout {
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.platform.section {
  padding-top: 18px;
  padding-bottom: 32px;
}
.platform-showcase {
  position: relative;
  min-width: 0;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-top: 14px;
}
@keyframes heroDotsFloat {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-10px, 8px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes heroGlowSweep {
  0% { transform: translateX(-140%) skewX(-20deg); opacity: 0; }
  20% { opacity: 1; }
  60% { opacity: 0.8; }
  100% { transform: translateX(320%) skewX(-20deg); opacity: 0; }
}
@keyframes heroTitleRise {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes heroTextSweep {
  0% { transform: translateX(-115%); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateX(115%); opacity: 0; }
}
@keyframes heroCursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes platformTagGlow {
  0%, 100% {
    box-shadow: 0 18px 34px rgba(83, 74, 243, 0.24), 0 0 0 5px rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow: 0 22px 40px rgba(83, 74, 243, 0.3), 0 0 0 5px rgba(48, 201, 245, 0.12);
  }
}
.platform-tag {
  position: absolute;
  overflow: hidden;
  right: 28px;
  bottom: 42px;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(100%, 300px);
  height: 150px;
  padding: 18px 20px 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #4032ee 0%, #6255ff 52%, #20bdf3 100%);
  box-shadow: 0 18px 34px rgba(83, 74, 243, 0.24), 0 0 0 5px rgba(255, 255, 255, 0.18);
  animation: platformTagGlow 4.8s ease-in-out infinite;
}
.platform-tag::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #8eeeff);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.68);
}
.platform-tag::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}
.platform-tag-subtitle,
.platform-tag p {
  position: relative;
  z-index: 1;
}
.platform-tag-subtitle {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}
.platform-tag p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.85rem;
  line-height: 1.48;
}
.platform-stage {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 34px;
  border: 1px solid rgba(82, 152, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(29, 125, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 247, 255, 0.94));
  box-shadow: 0 14px 32px rgba(29, 45, 84, 0.09);
}
.platform-stage-image,
.platform-stage-empty {
  width: 100%;
  height: 100%;
  min-height: 320px;
}
.platform-stage-image {
  display: none;
  object-fit: cover;
  object-position: top center;
}
.platform-stage-image.is-ready {
  display: block;
}
.platform-stage-empty {
  display: none;
  place-items: center;
  padding: 36px;
  text-align: center;
}
.platform-stage-empty.is-visible {
  display: grid;
}
.platform-stage-empty strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.platform-stage-empty p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.services.section {
  padding-top: 24px;
  padding-bottom: 24px;
}
main > .section:not(.platform-hero) {
  padding-top: clamp(132px, 14vh, 156px);
  padding-bottom: 50px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--blue-border);
  background:
    linear-gradient(135deg, rgba(89, 79, 246, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 247, 255, 0.9));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.service-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #1f66db;
  background: rgba(29, 125, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 16px 0 8px;
  font-size: 1.42rem;
  line-height: 1.15;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}
.benefit-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.benefit-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
}
.benefit-card h3 {
  margin: 0 0 14px;
  min-height: 2.4em;
  font-size: 1.55rem;
  line-height: 1.2;
}
.benefit-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.benefit-card li::marker {
  color: var(--blue);
}
.benefit-card.standout {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 24%),
    linear-gradient(160deg, #4a43da 0%, #5a54f7 58%, #26caff 100%);
  color: #fff;
}
.benefit-card.standout p { color: rgba(255, 255, 255, 0.86); }
.timeline {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.timeline span {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(116, 211, 255, 0.48));
}
.timeline span:nth-child(1) { opacity: 0.5; }
.timeline span:nth-child(2) { opacity: 0.75; }
.timeline span:nth-child(3) { opacity: 1; }
.contact-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  padding: 34px;
  border-radius: 36px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 400;
}
.contact-form span {
  font-size: 0.96rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 17px 18px;
  color: var(--text);
  font-weight: 400;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(29, 125, 255, 0.38);
  box-shadow: 0 0 0 4px rgba(29, 125, 255, 0.12);
}
.contact-form-status {
  min-height: 24px;
  margin: -2px 0 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.4;
}
.contact-form-status.is-success {
  color: #138b5d;
}
.contact-form-status.is-error {
  color: #c24c56;
}
.contact-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, var(--container));
  margin: 10px auto 0;
  padding: 20px 0 34px;
  color: var(--muted);
}
.footer a {
  color: #1f66db;
  font-weight: 700;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #12af55, #1bd76c);
  box-shadow: 0 24px 40px rgba(22, 145, 75, 0.36);
}
.whatsapp-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.whatsapp-icon svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 861px) {:root {
    --container: 1100px;
    --radius-lg: 28px;
    --radius-md: 22px;
  }
html {
    font-size: 15px;
  }
.page-shell {
    width: min(calc(100% - 40px), 1220px);
    margin-bottom: 30px;
  }
.topbar {
    top: 18px;
    gap: 16px;
    padding: 12px 18px;
    width: min(calc(100% - 56px), var(--container));
  }
.brand {
    gap: 10px;
    font-size: 1rem;
  }
.brand-icon {
    width: 30px;
    height: 30px;
  }
.menu {
    gap: 22px;
    font-size: 0.9rem;
  }
.menu a {
    padding: 6px 0;
  }
.topbar-cta,
.btn {
    min-height: 42px;
    padding: 0 20px;
  }
main > .section:not(.platform-hero) {
    padding-top: clamp(100px, 11vh, 126px);
    padding-bottom: 36px;
  }
.section-heading {
    max-width: 680px;
    margin-bottom: 22px;
  }
.features .section-heading {
    max-width: 760px;
    margin-bottom: 20px;
  }
.features .section-heading h2,
.platform .section-heading h2,
.services .section-heading h2,
.benefits .section-heading h2 {
    font-size: clamp(1.8rem, 2.45vw, 2.55rem);
  }
.platform-hero .section-heading {
    max-width: 980px;
  }
.platform-hero .section-heading h2 {
    margin-bottom: clamp(22px, 3vh, 34px);
    font-size: clamp(3rem, 4.4vw, 3.65rem);
  }
.platform-hero .section-heading p {
    max-width: 820px;
    font-size: 1rem;
  }
.platform-hero.section {
    padding-top: clamp(126px, 17vh, 186px);
    padding-top: clamp(126px, 17dvh, 186px);
    padding-bottom: clamp(66px, 10vh, 116px);
    padding-bottom: clamp(66px, 10dvh, 116px);
  }
.platform.section {
    padding-bottom: 28px;
  }
.platform .section-heading p {
    max-width: 620px;
    font-size: 0.95rem;
    line-height: 1.62;
  }
.platform-showcase {
    width: min(100%, 980px);
    padding-top: 6px;
  }
.platform-stage {
    aspect-ratio: 16 / 7.4;
    min-height: 0;
    border-radius: 28px;
  }
.platform-stage,
.platform-stage-image,
.platform-stage-empty {
    min-height: 0;
  }
.platform-stage-image,
.platform-stage-empty {
    height: 100%;
  }
.platform-tag {
    right: 18px;
    bottom: 22px;
    width: 286px;
    height: 142px;
    padding: 16px 18px 16px 26px;
    border-radius: 24px;
  }
.platform-tag-subtitle,
.platform-tag p {
    font-size: 0.82rem;
  }
.feature-grid,
.services-grid,
.platform-layout,
.benefit-columns,
.contact-card {
    gap: 18px;
  }
.feature-card {
    min-height: 180px;
    padding: 20px;
    border-radius: 24px;
  }
.feature-card h3 {
    margin: 14px 0 8px;
    font-size: 1.22rem;
  }
.feature-card p,
.service-card p,
.benefit-card p {
    font-size: 0.94rem;
    line-height: 1.6;
  }
.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
.feature-icon .material-symbols-outlined {
    font-size: 27px;
  }
.service-card {
    min-height: 188px;
    padding: 20px;
  }
.service-card h3 {
    font-size: 1.28rem;
  }
.benefit-card {
    padding: 24px;
    border-radius: 26px;
  }
.benefit-card h3 {
    min-height: 0;
    font-size: 1.34rem;
  }
.contact-card {
    padding: 28px;
    border-radius: 30px;
  }
.contact-form {
    gap: 13px;
  }
.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 14px;
  }
.whatsapp-float {
    min-height: 54px;
    padding: 0 16px 0 12px;
    font-size: 0.95rem;
  }
.whatsapp-icon {
    width: 26px;
    height: 26px;
  }

}
@media (max-width: 1120px) {.platform-layout,
.contact-card,
.benefit-columns,
.feature-grid,
.services-grid {
    grid-template-columns: 1fr;
  }
.contact-card { min-height: auto; }
.platform-stage,
.platform-stage-image,
.platform-stage-empty {
    min-height: 300px;
  }
.platform-hero .section-heading h2 {
    font-size: 3.35rem;
  }

}
@media (max-width: 860px) {html {
    scroll-padding-top: 0;
  }
.page-shell {
    width: min(calc(100% - 18px), 1320px);
    margin-top: 0;
  }
.topbar,
.footer,
.section { width: 100%; }
.topbar {
    top: 14px;
    width: min(calc(100% - 24px), var(--container));
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 16px;
    padding: 12px 16px;
    border-radius: 30px;
  }
main > .section:not(.platform-hero) {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 42px;
  }
.menu {
    order: 3;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
    padding: 2px 2px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
.menu a {
    flex: 0 0 auto;
  }
.platform-hero .section-heading h2 {
    max-width: none;
    font-size: 2.75rem;
  }
.platform-hero.section {
    margin-top: 0;
    padding: clamp(166px, 21vh, 220px) 24px clamp(72px, 10vh, 112px);
    padding: clamp(166px, 21dvh, 220px) 24px clamp(72px, 10dvh, 112px);
  }
.platform-showcase {
    padding-top: 0;
  }
.platform-tag {
    right: 20px;
    bottom: 44px;
    width: auto;
    height: auto;
    min-height: 132px;
  }
.platform-stage,
.platform-stage-image,
.platform-stage-empty {
    min-height: 260px;
  }
.whatsapp-float {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
.features .section-heading h2 {
    max-width: none;
    font-size: 2rem;
  }
.platform .section-heading h2,
.services .section-heading h2,
.benefits .section-heading h2 {
    max-width: none;
    font-size: 2rem;
  }
.services-grid {
    gap: 14px;
  }

}
@media (max-width: 560px) {html {
    scroll-padding-top: 0;
  }
.page-shell {
    width: 100%;
  }
.topbar {
    top: 14px;
    left: 14px;
    width: auto;
    padding: 10px;
    border-radius: 20px;
    transform: none;
  }
main > .section:not(.platform-hero) {
    padding-top: 92px;
    padding-bottom: 36px;
  }
.brand {
    gap: 0;
  }
.brand-icon {
    width: 34px;
    height: 34px;
  }
.brand-text,
.menu,
.topbar-cta {
    display: none;
  }
.feature-card,
.benefit-card,
.contact-card { padding: 22px; }
.section-heading h2,
.contact h2 { font-size: 2.1rem; }
.feature-card {
    min-height: 0;
    padding: 18px;
  }
.feature-card h3 {
    font-size: 1.08rem;
  }
.platform-hero.section {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    margin-top: 0;
    padding: clamp(112px, 16vh, 152px) 18px clamp(68px, 10vh, 96px);
    padding: clamp(112px, 16dvh, 152px) 18px clamp(68px, 10dvh, 96px);
  }
.platform-hero .section-heading h2 {
    max-width: none;
    margin-bottom: 30px;
    font-size: 2.35rem;
    line-height: 1.08;
  }
.platform-hero .section-heading p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
.platform-showcase {
    padding-top: 0;
  }
.platform-tag {
    left: 14px;
    right: 14px;
    bottom: 58px;
    width: auto;
    height: auto;
    min-height: 126px;
    padding: 14px 14px 12px;
    border-radius: 18px;
  }
.platform-stage,
.platform-stage-image,
.platform-stage-empty {
    min-height: 200px;
    border-radius: 24px;
  }
.platform-stage-empty {
    padding: 22px;
  }
.service-card {
    padding: 18px;
  }
.features.section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
.features .section-heading h2 {
    font-size: 1.8rem;
    line-height: 1.12;
  }
.platform .section-heading h2,
.services .section-heading h2,
.benefits .section-heading h2 {
    font-size: 1.8rem;
    line-height: 1.12;
  }

}
/* Platform impact refresh */
.platform-hero.section {
  isolation: isolate;
  align-items: center;
  height: auto;
  min-height: calc(100vh - 58px);
  min-height: calc(100dvh - 58px);
  padding: clamp(128px, 16vh, 172px) max(28px, calc((100vw - 1180px) / 2)) clamp(68px, 9vh, 104px);
  padding: clamp(128px, 16dvh, 172px) max(28px, calc((100vw - 1180px) / 2)) clamp(68px, 9dvh, 104px);
  color: #fff;
  background: linear-gradient(124deg, #0c1534 0%, #17245a 34%, #4350d7 68%, #21b9e8 100%);
  box-shadow: inset 0 -28px 60px rgba(8, 16, 42, 0.22);
}
.platform-hero.section::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 35, 0.9) 0%, rgba(13, 21, 50, 0.76) 36%, rgba(13, 21, 50, 0.2) 64%, rgba(13, 21, 50, 0.08) 100%),
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  opacity: 1;
  animation: none;
}
.platform-hero.section::after {
  inset: auto 0 0;
  z-index: 1;
  width: auto;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(244, 247, 252, 0.92) 100%);
  transform: none;
  animation: none;
}
.platform-hero-screen {
  position: absolute;
  top: clamp(118px, 15vh, 152px);
  right: max(-300px, calc((100vw - 1320px) / 2 - 250px));
  z-index: 1;
  width: min(74vw, 1000px);
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  background: #f8fbff;
  box-shadow:
    0 34px 80px rgba(3, 9, 29, 0.34),
    0 0 0 10px rgba(255, 255, 255, 0.08);
  filter: saturate(1.04) contrast(1.02);
  transform: perspective(1500px) rotateY(-15deg) rotateX(3deg);
  transform-origin: center right;
}
.platform-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
}
.platform-hero-title {
  display: block;
  max-width: 11ch;
  margin: 22px 0 24px;
  color: #fff;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: 0;
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
}
.platform-hero-content p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.74;
}
.platform-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}
.platform-hero-actions .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.platform-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}
.platform-hero-metrics li {
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.platform-hero-metrics li:first-child {
  padding-left: 0;
  border-left: 0;
}
.platform-hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.1;
}
.platform-hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}
.platform.section {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: clamp(96px, 12vh, 132px);
  padding-bottom: clamp(72px, 10vh, 104px);
  background:
    linear-gradient(180deg, #f4f7fc 0%, #ffffff 48%, #edf5ff 100%);
}
.platform.section > .section-heading,
.platform-command-strip,
.platform-layout {
  width: min(calc(100% - 48px), var(--container));
  margin-left: auto;
  margin-right: auto;
}
.platform .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.54fr);
  gap: 34px;
  align-items: end;
  max-width: none;
  margin-bottom: 24px;
}
.platform .section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.94;
}
.platform .section-heading p {
  max-width: 520px;
  margin: 0 0 8px;
}
.platform-command-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.platform-command-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(119, 142, 184, 0.18);
  border-radius: 8px;
  color: #22315f;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(29, 45, 84, 0.06);
  font-size: 0.94rem;
  font-weight: 800;
}
.platform-command-strip .material-symbols-outlined {
  color: var(--primary);
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}
.platform-showcase {
  width: 100%;
  padding: 0 0 44px;
}
.platform-showcase::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 8px;
  height: 34px;
  border-radius: 50%;
  background: rgba(36, 57, 118, 0.18);
  filter: blur(18px);
  pointer-events: none;
}
.platform-stage {
  aspect-ratio: 5706 / 2733;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(29, 45, 84, 0.16);
  background: #08132e;
  box-shadow:
    0 34px 78px rgba(17, 32, 72, 0.2),
    0 0 0 8px rgba(255, 255, 255, 0.72);
}
.platform-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.platform-stage-image,
.platform-stage-empty {
  min-height: 0;
}
.platform-stage-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8fbff;
}
.platform-tag {
  right: 24px;
  bottom: 24px;
  width: min(100%, 336px);
  height: auto;
  min-height: 136px;
  padding: 18px 18px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%),
    rgba(9, 19, 48, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 42px rgba(4, 12, 35, 0.22);
  animation: none;
}
.platform-tag::before {
  top: 18px;
  bottom: 18px;
  left: 13px;
  width: 3px;
  background: linear-gradient(180deg, #34e0a1, #34c9ff);
}
@media (max-width: 1120px) {.platform-hero-screen {
    right: -380px;
    width: 94vw;
  }
.platform .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
.platform .section-heading h2 {
    max-width: 13ch;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
  }

}
@media (max-width: 860px) {.platform-hero.section {
    align-items: start;
    min-height: auto;
    padding: 126px 24px 54px;
  }
.platform-hero.section::before {
    background:
      linear-gradient(180deg, rgba(8, 14, 35, 0.94) 0%, rgba(13, 21, 50, 0.84) 54%, rgba(13, 21, 50, 0.38) 100%),
      linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
  }
.platform-hero-screen {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: min(100%, 760px);
    margin: 34px auto 0;
    border-radius: 14px;
    transform: none;
  }
.platform-hero-content {
    width: 100%;
  }
.platform-hero-title {
    max-width: 10ch;
    font-size: clamp(2.7rem, 10vw, 4.4rem);
    line-height: 0.98;
  }
.platform-hero-content p {
    font-size: 1rem;
  }
.platform-hero-actions {
    flex-direction: column;
  }
.platform-hero-actions .btn {
    width: 100%;
  }
.platform-hero-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }
.platform-hero-metrics li {
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
.platform.section {
    padding-top: 76px;
    padding-bottom: 68px;
  }
.platform.section > .section-heading,
.platform-command-strip,
.platform-layout {
    width: min(calc(100% - 32px), var(--container));
  }
.platform .section-heading h2 {
    font-size: clamp(2.25rem, 9vw, 3.4rem);
    line-height: 1;
  }
.platform-command-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
.platform-command-strip::-webkit-scrollbar {
    display: none;
  }
.platform-command-strip button,
.platform-command-strip span {
    flex: 0 0 auto;
  }
.platform-tag {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    margin-bottom: 12px;
    border-radius: 12px;
  }
.platform-stage {
    aspect-ratio: 5706 / 2733;
    min-height: 0;
    border-radius: 14px;
    box-shadow:
      0 22px 46px rgba(17, 32, 72, 0.18),
      0 0 0 5px rgba(255, 255, 255, 0.72);
  }
.platform-stage,
.platform-stage-image,
.platform-stage-empty {
    min-height: 0;
  }

}
@media (max-width: 560px) {.platform-hero.section {
    padding: 108px 18px 46px;
  }
.platform-hero-title {
    max-width: 9ch;
    margin-top: 18px;
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }
.platform-hero-screen {
    margin-top: 28px;
    border-radius: 10px;
    box-shadow:
      0 18px 38px rgba(3, 9, 29, 0.28),
      0 0 0 5px rgba(255, 255, 255, 0.08);
  }
.platform-command-strip,
.platform.section > .section-heading,
.platform-layout {
    width: min(calc(100% - 24px), var(--container));
  }
.platform-tag {
    padding: 14px 14px 14px 20px;
  }

}
.platform-showcase::before {
  display: none;
}
.section-heading h2,
.contact h2,
.eyebrow,
.service-kicker,
.platform-hero-title {
  letter-spacing: 0;
}
@media (max-width: 560px) {.platform-hero.section {
    overflow: hidden;
    min-height: calc(100vh - 42px);
    min-height: calc(100dvh - 42px);
    padding-bottom: 34px;
  }
.platform-hero-screen {
    position: absolute;
    right: -58vw;
    bottom: 18px;
    width: 154vw;
    opacity: 0.42;
    transform: perspective(1200px) rotateY(-17deg) rotateX(3deg);
    transform-origin: center right;
  }
.platform-hero-metrics {
    display: none;
  }

}
/* Refinements after visual review */
.platform-hero.section {
  background:
    radial-gradient(circle at 82% 44%, rgba(46, 191, 255, 0.34) 0%, rgba(46, 191, 255, 0) 33%),
    linear-gradient(118deg, #071027 0%, #101b49 38%, #2934a6 69%, #1687cf 100%);
}
.platform-hero.section::before {
  background:
    linear-gradient(90deg, rgba(7, 12, 31, 0.94) 0%, rgba(9, 16, 39, 0.78) 36%, rgba(13, 21, 56, 0.18) 72%, rgba(13, 21, 56, 0.04) 100%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.platform-hero.section::after {
  height: 22%;
  background: linear-gradient(180deg, rgba(244, 247, 252, 0) 0%, rgba(244, 247, 252, 0.72) 74%, #f4f7fc 100%);
}
.platform-hero-title {
  max-width: 7.65em;
  margin-top: 0;
  font-size: clamp(3.25rem, 5.25vw, 5.8rem);
  line-height: 0.98;
}
.platform .section-heading {
  display: block;
  max-width: 780px;
  margin-bottom: 24px;
}
.platform .section-heading h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 4.2vw, 4.25rem);
  line-height: 1;
}
.platform .section-heading p {
  max-width: 620px;
  margin: 0;
}
.platform-command-strip {
  gap: 8px;
  margin-bottom: 18px;
}
.platform-command-strip > button,
.platform-command-strip > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(119, 142, 184, 0.18);
  border-radius: 10px;
  color: #26376c;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.platform-command-strip > button.is-active {
  border-color: rgba(89, 79, 246, 0.26);
  color: #fff;
  background: linear-gradient(135deg, #594ff6, #27bdf0);
}
.platform-command-strip > button .material-symbols-outlined,
.platform-command-strip > span .material-symbols-outlined {
  display: inline-flex;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--primary);
}
.platform-command-strip > button.is-active .material-symbols-outlined {
  color: #fff;
}
.platform-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 16px 18px;
  padding: 18px;
  border: 1px solid rgba(119, 142, 184, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(29, 45, 84, 0.11);
}
.platform-tag {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  min-height: 0;
  padding: 22px;
  border-radius: 16px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(160deg, #0d183b 0%, #172660 100%);
  box-shadow: none;
}
.platform-tag::before {
  left: 0;
  top: 22px;
  bottom: 22px;
}
.platform-stage {
  grid-column: 2;
  grid-row: 1 / 3;
  border-radius: 16px;
  border-color: rgba(29, 45, 84, 0.14);
  background: #f7faff;
  box-shadow: none;
}
@media (max-width: 860px) {.platform-hero-title {
    max-width: 9.5em;
  }
.platform-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 12px;
    border-radius: 18px;
  }
.platform-tag,
.platform-stage {
    grid-column: 1;
    grid-row: auto;
  }
.platform-tag {
    margin-bottom: 0;
  }

}
@media (max-width: 560px) {.platform-hero-title {
    max-width: 8.6em;
    font-size: clamp(2.45rem, 12vw, 3.15rem);
  }
.platform-command-strip > button,
.platform-command-strip > span {
    font-size: 0.86rem;
  }

}
/* Image-led platform carousel */
.platform-showcase {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 24px 60px rgba(29, 45, 84, 0.14);
}
.platform-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 38%;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, rgba(6, 14, 35, 0) 0%, rgba(6, 14, 35, 0.28) 56%, rgba(6, 14, 35, 0.62) 100%),
    linear-gradient(90deg, rgba(6, 14, 35, 0.66) 0%, rgba(6, 14, 35, 0.26) 48%, rgba(6, 14, 35, 0) 100%);
  pointer-events: none;
}
.platform-stage {
  display: block;
  width: 100%;
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
}
.platform-stage::after {
  z-index: 1;
}
.platform-stage-image {
  filter: saturate(1.03) contrast(1.03);
  transform: translateZ(0);
  image-rendering: auto;
}
.platform-tag {
  position: absolute;
  left: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  width: min(520px, calc(100% - 48px));
  min-height: 0;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.platform-tag::before {
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #34e0a1, #34c9ff);
  box-shadow: 0 0 18px rgba(52, 201, 255, 0.38);
}
.platform-tag::after {
  display: none;
}
.platform-tag-subtitle {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 800;
}
.platform-tag p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}
@media (max-width: 860px) {.platform-showcase {
    border-radius: 18px;
  }
.platform-showcase::after {
    height: 54%;
    border-radius: 0 0 18px 18px;
  }
.platform-stage {
    border-radius: 18px;
  }
.platform-tag {
    position: absolute;
    width: min(100% - 32px, 520px);
    margin-bottom: 0;
  }

}
@media (max-width: 560px) {.platform-showcase::after {
    height: 64%;
  }
.platform-tag {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding-left: 14px;
  }
.platform-tag-subtitle,
.platform-tag p {
    font-size: 0.78rem;
    line-height: 1.38;
  }

}
/* Module control polish */
.platform-command-strip {
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 24px;
}
.platform-command-strip > button,
.platform-command-strip > span {
  min-height: 50px;
  padding: 0 19px 0 14px;
  border-color: rgba(109, 132, 181, 0.22);
  border-radius: 999px;
  color: #172958;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
  box-shadow: 0 10px 22px rgba(25, 42, 88, 0.08);
  font-size: 1.04rem;
  line-height: 1;
}
.platform-command-strip > button:hover {
  border-color: rgba(89, 79, 246, 0.28);
  background: #fff;
  transform: translateY(-1px);
}
.platform-command-strip > button .material-symbols-outlined,
.platform-command-strip > span .material-symbols-outlined {
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #594ff6;
  background: rgba(89, 79, 246, 0.09);
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 350, "GRAD" -25, "opsz" 24;
}
.platform-command-strip > button.is-active {
  border-color: transparent;
  color: #fff;
  background:
    linear-gradient(135deg, #5751f6 0%, #24b7ed 100%);
  box-shadow: 0 14px 28px rgba(44, 113, 227, 0.24);
}
.platform-command-strip > button.is-active .material-symbols-outlined {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.platform-showcase::after {
  height: 24%;
  background:
    linear-gradient(180deg, rgba(6, 14, 35, 0) 0%, rgba(6, 14, 35, 0.2) 45%, rgba(6, 14, 35, 0.54) 100%),
    linear-gradient(90deg, rgba(6, 14, 35, 0.58) 0%, rgba(6, 14, 35, 0.18) 46%, rgba(6, 14, 35, 0) 100%);
}
.platform-tag {
  bottom: clamp(14px, 2.2vw, 24px);
  width: min(500px, calc(100% - 48px));
  padding-left: 14px;
}
.platform-tag-subtitle {
  margin-bottom: 4px;
  font-size: clamp(0.92rem, 1.12vw, 1.04rem);
}
.platform-tag p {
  max-width: 500px;
  font-size: 0.86rem;
  line-height: 1.45;
}
@media (max-width: 860px) {.platform-command-strip {
    justify-content: flex-start;
    gap: 10px;
    max-width: none;
    margin-bottom: 18px;
  }
.platform-showcase::after {
    height: 34%;
  }

}
@media (max-width: 560px) {.platform-command-strip > button,
.platform-command-strip > span {
    min-height: 42px;
    padding: 0 13px 0 10px;
  }
.platform-command-strip > button .material-symbols-outlined,
.platform-command-strip > span .material-symbols-outlined {
    width: 25px;
    height: 25px;
    font-size: 18px;
    font-variation-settings: "FILL" 0, "wght" 350, "GRAD" -25, "opsz" 24;
  }
.platform-showcase::after {
    height: 48%;
  }

}
/* Overlay text sizing */
.platform-command-strip > button,
.platform-command-strip > span {
  min-height: 46px;
  padding: 0 17px 0 13px;
  font-size: 0.96rem;
}
.platform-command-strip > button .material-symbols-outlined,
.platform-command-strip > span .material-symbols-outlined {
  width: 28px;
  height: 28px;
  font-size: 19px;
}
.platform-tag {
  width: min(640px, calc(100% - 48px));
}
.platform-tag-subtitle {
  font-size: clamp(1.18rem, 1.65vw, 1.48rem);
  line-height: 1.12;
}
.platform-tag p {
  max-width: 640px;
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.5;
}
@media (max-width: 560px) {.platform-command-strip > button,
.platform-command-strip > span {
    font-size: 0.86rem;
  }
.platform-tag-subtitle {
    font-size: 1rem;
  }
.platform-tag p {
    font-size: 0.86rem;
  }

}
/* Localized overlay treatment */
.platform-showcase::after {
  height: 34%;
  background:
    linear-gradient(180deg, rgba(6, 14, 35, 0) 0%, rgba(6, 14, 35, 0.18) 48%, rgba(6, 14, 35, 0.48) 100%);
}
.platform-tag {
  left: clamp(20px, 3vw, 36px);
  bottom: clamp(20px, 2.6vw, 30px);
  width: min(620px, calc(100% - 48px));
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(12, 21, 50, 0.78), rgba(12, 21, 50, 0.48));
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(7, 13, 32, 0.2);
}
.platform-tag::before {
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
}
.platform-tag-subtitle {
  margin-bottom: 6px;
  font-size: clamp(1.28rem, 1.85vw, 1.65rem);
  line-height: 1.08;
}
.platform-tag p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.5;
}
@media (max-width: 860px) {.platform-showcase::after {
    height: 42%;
  }

}
@media (max-width: 560px) {.platform-showcase::after {
    height: 56%;
  }
.platform-tag {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 14px 15px 14px 18px;
    border-radius: 12px;
  }
.platform-tag::before {
    top: 14px;
    bottom: 14px;
  }
.platform-tag-subtitle {
    font-size: 1.06rem;
  }
.platform-tag p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

}
/* Light overlay treatment */
.platform-showcase::after {
  height: 28%;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(248, 251, 255, 0.48) 58%, rgba(248, 251, 255, 0.78) 100%);
}
.platform-tag {
  border-color: rgba(122, 147, 196, 0.2);
  color: #10214a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 255, 0.72));
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(29, 45, 84, 0.12);
}
.platform-tag::before {
  background: linear-gradient(180deg, #594ff6, #28b8ee);
  box-shadow: none;
}
.platform-tag-subtitle {
  color: #10214a;
}
.platform-tag p {
  color: #4f6190;
}
@media (max-width: 860px) {.platform-showcase::after {
    height: 36%;
  }

}
@media (max-width: 560px) {.platform-showcase::after {
    height: 48%;
  }

}
/* Lighter module icons */
.platform-command-strip > button .material-symbols-outlined,
.platform-command-strip > span .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 250, "GRAD" -25, "opsz" 24;
  -webkit-font-smoothing: antialiased;
}
/* Platform section heading alignment */
.platform .section-heading {
  width: min(calc(100% - 48px), var(--container));
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 28px;
}
.platform .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 3.35vw, 3.35rem);
  line-height: 1.05;
}
.platform .section-heading p {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.68;
}
@media (max-width: 860px) {.platform .section-heading {
    width: min(calc(100% - 32px), var(--container));
  }

}
@media (max-width: 560px) {.platform .section-heading {
    width: min(calc(100% - 24px), var(--container));
  }

}
