:root {
  --navy: #071d42;
  --navy-2: #0b2b5e;
  --blue: #1768e8;
  --blue-2: #3c86f7;
  --blue-soft: #eaf3ff;
  --mint: #27c49a;
  --orange: #f36b3a;
  --orange-soft: #fff1eb;
  --ink: #102446;
  --muted: #5c6f8b;
  --line: #d8e5f5;
  --surface: #f5f9ff;
  --white: #fff;
  --shadow-sm: 0 12px 34px rgba(17, 57, 112, .08);
  --shadow-md: 0 24px 70px rgba(17, 57, 112, .13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-geist-sans, Inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

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

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 60;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement span,
.announcement button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.announcement button {
  padding: 0;
  border: 0;
  color: #bcd7ff;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease;
}

.announcement button:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(216, 229, 245, .9);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 9px 30px rgba(14, 44, 88, .04);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #175eac);
  box-shadow: 0 8px 22px rgba(15, 74, 145, .22);
  font-size: 20px;
  font-weight: 800;
}

.brand-mark::after {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.brand-mark span {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 16px;
  letter-spacing: .01em;
}

.brand-copy small {
  margin-top: 4px;
  color: #6c7c91;
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: .02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.main-nav > a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 27px 0;
  border: 0;
  color: #233a5f;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease;
}

.main-nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  bottom: 19px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 3px;
  background: var(--orange);
  content: "";
  transition: width .2s ease;
}

.main-nav > a:hover,
.nav-dropdown:hover > button {
  color: var(--blue);
}

.main-nav > a:hover::after,
.nav-dropdown:hover > button::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 8px);
  left: -24px;
  width: 230px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: .2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.dropdown-panel a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.text-call {
  display: none;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border .25s ease, box-shadow .25s ease, transform .25s ease;
}

.btn svg,
.text-link svg,
.announcement button svg {
  transition: transform .25s ease;
}

.btn:hover svg,
.text-link:hover svg,
.announcement button:hover svg {
  transform: translateX(4px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f63e9, #0951c4);
  box-shadow: 0 12px 28px rgba(19, 100, 227, .22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0a53c7, #063c9f);
  box-shadow: 0 16px 34px rgba(19, 100, 227, .3);
}

.btn-secondary {
  border-color: #b9d0ee;
  color: var(--navy);
  background: #fff;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.btn-sm {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
}

.btn-lg {
  min-height: 54px;
  padding: 14px 24px;
}

.btn-full {
  width: 100%;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}

.mobile-nav-cta {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #e6eef8;
  background:
    radial-gradient(circle at 86% 20%, rgba(57, 132, 248, .15), transparent 24%),
    radial-gradient(circle at 70% 72%, rgba(36, 195, 154, .09), transparent 24%),
    linear-gradient(120deg, #fff 20%, #f7fbff 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero::before {
  width: 340px;
  height: 340px;
  top: -170px;
  right: -110px;
  border: 1px solid rgba(36, 108, 224, .13);
  box-shadow: 0 0 0 58px rgba(36, 108, 224, .025), 0 0 0 116px rgba(36, 108, 224, .02);
}

.hero::after {
  width: 280px;
  height: 280px;
  left: -180px;
  bottom: -160px;
  border: 1px solid rgba(243, 107, 58, .13);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(24, 84, 157, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 84, 157, .035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 55%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 54px;
  padding-block: 82px 88px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 4.55vw, 72px);
  font-weight: 770;
  letter-spacing: -.052em;
  line-height: .99;
}

.hero h1 em {
  position: relative;
  display: block;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 3%;
  bottom: -10px;
  width: 120px;
  height: 9px;
  border-top: 3px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-2deg);
  content: "";
}

.hero-lead {
  max-width: 630px;
  margin: 27px 0 20px;
  color: #4d607e;
  font-size: 17px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid #d7e6f8;
  border-radius: 999px;
  color: #365375;
  background: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 700;
}

.hero-pills svg {
  color: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof p {
  margin: 0;
  color: #6b7e96;
  font-size: 11px;
  line-height: 1.45;
}

.hero-proof strong {
  color: var(--navy);
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) {
  background: var(--blue);
}

.avatar-stack span:nth-child(3) {
  background: var(--orange);
}

.hero-visual {
  position: relative;
  min-height: 535px;
  display: flex;
  align-items: center;
}

.performance-console {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 219, 243, .95);
  border-radius: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 35px 90px rgba(18, 68, 132, .19), 0 0 0 8px rgba(255, 255, 255, .44);
  backdrop-filter: blur(16px);
}

.performance-console::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -145px;
  border-radius: 50%;
  background: rgba(32, 113, 234, .07);
  content: "";
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #e3edf8;
  color: var(--navy);
  font-size: 11px;
  font-weight: 760;
}

.console-topbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(39, 196, 154, .12);
  animation: pulse 2s infinite;
}

.console-period {
  padding: 5px 9px;
  border-radius: 7px;
  color: #53708e;
  background: #edf4fc;
  font-size: 9px;
  font-weight: 700;
}

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

.console-metrics > div {
  padding: 13px;
  border: 1px solid #dfebf8;
  border-radius: 13px;
  background: #fbfdff;
}

.console-metrics small,
.chart-head small,
.mini-score small {
  display: block;
  color: #7b8da5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.console-metrics strong {
  display: block;
  margin: 4px 0 1px;
  color: var(--navy);
  font-size: 15px;
}

.console-metrics span {
  display: block;
  color: #7a8ba2;
  font-size: 8.5px;
}

.console-chart {
  padding: 15px 15px 11px;
  border: 1px solid #dce9f7;
  border-radius: 17px;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 7px;
}

.chart-head strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: 12px;
}

.chart-head > span {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 7px;
  color: #0d7e60;
  background: #e9fbf5;
  font-size: 8px;
  font-weight: 750;
}

.console-chart svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.grid-lines path {
  fill: none;
  stroke: #e8eff8;
  stroke-width: 1;
}

.area-line {
  fill: url(#areaGradient);
  stroke: none;
}

.trend-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 800;
  animation: draw-line 3.5s ease both;
}

.console-chart circle {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 3;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #8797ab;
  font-size: 8px;
}

.console-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.mini-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-score > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
}

.mini-score strong {
  display: block;
  color: var(--navy);
  font-size: 10px;
}

.progress-ring {
  width: 58px;
  height: 58px;
  display: grid;
  place-content: center;
  border: 5px solid #dfebf9;
  border-top-color: var(--blue);
  border-right-color: var(--orange);
  border-radius: 50%;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.progress-ring span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 820;
  line-height: 1;
}

.progress-ring small {
  color: #73849a;
  font-size: 6px;
  font-weight: 700;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #d7e5f5;
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 14px 35px rgba(21, 68, 125, .14);
  font-size: 10px;
  font-weight: 780;
  animation: float 4.8s ease-in-out infinite;
}

.floating-chip span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.chip-google {
  top: 35px;
  left: -24px;
}

.chip-google span {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.chip-meta {
  right: -26px;
  bottom: 48px;
  animation-delay: -2s;
}

.chip-meta span {
  background: linear-gradient(135deg, #0866ff, #6f43ff);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px dashed rgba(26, 105, 225, .22);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(30, 110, 230, .1);
  content: "";
}

.orbit-one {
  width: 500px;
  height: 500px;
  top: 15px;
  left: 24px;
}

.orbit-one::before {
  top: 48px;
  left: 83px;
}

.orbit-one::after {
  right: 9px;
  bottom: 145px;
  background: var(--orange);
}

.orbit-two {
  width: 410px;
  height: 410px;
  right: -15px;
  bottom: 10px;
  animation-direction: reverse;
  animation-duration: 30s;
}

.orbit-two::before {
  right: 25px;
  top: 90px;
  background: var(--mint);
}

.facts-band {
  position: relative;
  z-index: 4;
  background: #fff;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
}

.fact:nth-child(even) .fact-icon {
  color: var(--orange);
  background: var(--orange-soft);
}

.fact small {
  display: block;
  color: #8090a5;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.3;
}

.section {
  position: relative;
  padding-block: 104px;
}

.section-tint {
  background: var(--surface);
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 760;
  letter-spacing: -.042em;
  line-height: 1.08;
}

.section h3 {
  color: var(--navy);
}

.section p {
  color: var(--muted);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 44px;
}

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

.section-heading p {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 16px;
}

.section-heading.light h2,
.section-heading.light h3 {
  color: #fff;
}

.section-heading.light p {
  color: #b8c9e4;
}

.split-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.split-intro p {
  margin: 0 0 14px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
}

.text-link:hover {
  color: var(--orange);
}

.split-intro .text-link {
  margin-top: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
  margin-top: 56px;
}

.comparison-card {
  min-height: 225px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.comparison-card h3 {
  max-width: 420px;
  margin: 14px 0 10px;
  font-size: 23px;
  letter-spacing: -.025em;
  line-height: 1.22;
}

.comparison-card p {
  margin: 0;
}

.muted-card {
  background: #f7f9fc;
}

.focus-card {
  position: relative;
  background: linear-gradient(145deg, #fff, #edf5ff);
  box-shadow: var(--shadow-sm);
}

.focus-card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(243, 107, 58, .12);
  content: "";
}

.comparison-tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 7px;
  color: #506883;
  background: #e8eef5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.focus-card .comparison-tag {
  color: var(--blue);
  background: #dcecff;
}

.comparison-arrow {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.icon-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #dbe7f5;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 26px rgba(25, 67, 119, .05);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.icon-card::before {
  position: absolute;
  width: 130px;
  height: 130px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: var(--blue-soft);
  content: "";
  transition: transform .35s ease;
}

.icon-card:hover {
  transform: translateY(-7px);
  border-color: #93bdf6;
  box-shadow: 0 22px 45px rgba(25, 86, 166, .13);
}

.icon-card:hover::before {
  transform: scale(1.25);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: var(--blue-soft);
}

.icon-card:nth-child(3n + 2) .icon-box {
  color: var(--orange);
  background: var(--orange-soft);
}

.icon-card:nth-child(3n) .icon-box {
  color: #139b78;
  background: #e5faf4;
}

.card-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #dce6f2;
  font-size: 28px;
  font-weight: 830;
}

.icon-card h3 {
  margin: 23px 0 10px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.icon-card p {
  margin: 0;
  font-size: 14px;
}

.decorative-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-soft);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.icon-card:hover .decorative-arrow {
  transform: translateX(4px);
  color: #fff;
  background: var(--blue);
}

.audience-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.sticky-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.sticky-copy p {
  margin: 20px 0 25px;
  font-size: 16px;
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-list article {
  display: grid;
  grid-template-columns: 45px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 25px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}

.audience-list article:hover {
  padding-inline: 18px;
  background: #f8fbff;
}

.audience-list article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.audience-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.audience-list p {
  margin: 0;
  font-size: 13px;
}

.audience-list article > svg {
  color: #9cb1ca;
  transition: color .2s ease, transform .2s ease;
}

.audience-list article:hover > svg {
  color: var(--blue);
  transform: translateX(4px);
}

.dark-section {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(14, 57, 112, .4), transparent 50%),
    var(--navy);
}

.dark-section::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 55px 55px;
  content: "";
  mask-image: radial-gradient(circle at 80% 50%, #000, transparent 65%);
}

.dark-glow {
  position: absolute;
  width: 530px;
  height: 530px;
  top: -220px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 104, 232, .38), transparent 66%);
}

.dark-section .container {
  position: relative;
  z-index: 2;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.reason-grid article {
  min-height: 205px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.reason-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(93, 162, 255, .55);
  background: rgba(36, 110, 218, .14);
}

.reason-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #7db2ff;
  background: rgba(64, 132, 236, .14);
}

.reason-grid article:nth-child(3n + 2) > span {
  color: #ff9875;
  background: rgba(243, 107, 58, .12);
}

.reason-grid h3 {
  margin: 19px 0 8px;
  color: #fff;
  font-size: 17px;
}

.reason-grid p {
  margin: 0;
  color: #b8c8df;
  font-size: 13px;
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.cycle-grid article {
  text-align: center;
}

.cycle-node {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}

.cycle-node span {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin: auto;
  border: 1px solid #b7cff0;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 25px rgba(18, 86, 172, .1);
  font-size: 11px;
  font-weight: 850;
}

.cycle-node i {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 1px;
  left: 50%;
  border-top: 1px dashed #a9c4e8;
}

.cycle-grid h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.cycle-grid p {
  max-width: 140px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.5;
}

.curriculum-section {
  background: linear-gradient(180deg, #f7fbff, #eef5fd);
}

.curriculum-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  align-items: start;
  gap: 60px;
}

.curriculum-sidebar {
  position: sticky;
  top: 120px;
}

.curriculum-sidebar p {
  margin: 20px 0 24px;
}

.curriculum-stat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 22px 0 25px;
}

.curriculum-stat strong {
  color: var(--blue);
  font-size: 48px;
  letter-spacing: -.06em;
  line-height: 1;
}

.curriculum-stat span {
  color: #667a94;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.35;
  text-transform: uppercase;
}

.module-list {
  display: grid;
  gap: 10px;
}

.module-list details,
.faq-list details {
  border: 1px solid #d6e3f3;
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 6px 22px rgba(22, 66, 119, .04);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.module-list details[open],
.faq-list details[open] {
  border-color: #9fc4f4;
  box-shadow: 0 14px 36px rgba(25, 90, 176, .09);
}

.module-list summary,
.faq-list summary {
  list-style: none;
  cursor: pointer;
}

.module-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.module-list summary {
  display: grid;
  grid-template-columns: 40px 1fr 22px;
  align-items: center;
  gap: 14px;
  min-height: 69px;
  padding: 13px 19px;
}

.module-index {
  color: var(--orange);
  font-size: 11px;
  font-weight: 840;
}

.module-title {
  color: var(--navy);
  font-size: 14px;
  font-weight: 740;
  line-height: 1.35;
}

.summary-plus {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 6px;
  background: var(--blue-soft);
}

.summary-plus::before,
.summary-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  background: var(--blue);
  content: "";
  transition: transform .2s ease;
}

.summary-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] > summary .summary-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.module-body {
  padding: 0 19px 20px 73px;
}

.module-body > p {
  margin: 0 0 14px;
  font-size: 12.5px;
}

.mission {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  color: var(--orange);
  background: var(--orange-soft);
}

.mission strong,
.mission span {
  display: block;
}

.mission strong {
  color: #bf4a21;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mission span {
  color: #65564e;
  font-size: 11px;
}

.platform-section {
  overflow: hidden;
}

.platform-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
}

.platform-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.platform-card h3 {
  margin: 7px 0 0;
  font-size: 25px;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.platform-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #4285f4, #34a853);
  box-shadow: 0 10px 25px rgba(32, 111, 220, .2);
  font-size: 26px;
  font-weight: 820;
}

.meta-card .platform-logo {
  background: linear-gradient(135deg, #0866ff, #7044f7);
  font-size: 32px;
}

.platform-label {
  color: var(--blue);
  font-size: 9px;
  font-weight: 840;
  letter-spacing: .11em;
}

.meta-card .platform-label {
  color: #6541da;
}

.platform-card ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 11px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.platform-card li {
  position: relative;
  padding-left: 23px;
  color: #536983;
  font-size: 13px;
}

.platform-card li::before {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.meta-card li::before {
  border-color: #7044f7;
}

.integration-badge {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 8px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 15px 35px rgba(10, 46, 94, .2);
  text-align: center;
}

.integration-badge span {
  margin-top: 3px;
  font-size: 7px;
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
}

.live-practice {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(28, 110, 230, .3), transparent 30%),
    #071b3a;
}

.live-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 74px;
}

.live-grid h2 {
  color: #fff;
}

.live-grid > div:last-child > p {
  color: #b9c9df;
}

.practice-visual {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
}

.mock-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(130, 179, 244, .3);
  border-radius: 20px;
  transform: perspective(1200px) rotateY(5deg) rotateX(2deg);
  background: #fff;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .3);
}

.window-top {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  color: #9db0ca;
  background: #0e2f5c;
  font-size: 9px;
}

.window-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8266;
}

.window-top i:nth-child(2) {
  background: #ffc858;
}

.window-top i:nth-child(3) {
  margin-right: 8px;
  background: #4ed8a7;
}

.window-body {
  min-height: 295px;
  display: grid;
  grid-template-columns: 56px 1fr;
}

.window-body aside {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 20px 16px;
  background: #eaf2fb;
}

.window-body aside span {
  width: 24px;
  height: 6px;
  border-radius: 6px;
  background: #9bbfe9;
}

.window-content {
  padding: 25px;
  background: #f9fcff;
}

.window-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.window-title span {
  width: 140px;
  height: 9px;
  border-radius: 8px;
  background: #3e5877;
}

.window-title i {
  width: 55px;
  height: 22px;
  border-radius: 6px;
  background: var(--blue);
}

.window-chart {
  padding: 17px;
  border: 1px solid #dae7f4;
  border-radius: 12px;
  background: #fff;
}

.window-chart svg {
  width: 100%;
}

.window-chart path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
}

.window-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.window-cards i {
  height: 44px;
  border: 1px solid #dae7f4;
  border-radius: 9px;
  background: #fff;
}

.visual-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(144, 188, 248, .3);
  border-radius: 12px;
  color: #dceaff;
  background: rgba(10, 47, 95, .92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .25);
  font-size: 10px;
  font-weight: 750;
  animation: float 4s ease-in-out infinite;
}

.badge-safe {
  top: 12px;
  right: -18px;
}

.badge-track {
  left: -25px;
  bottom: 12px;
  animation-delay: -2s;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 23px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #d1def0;
  font-size: 13px;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: #6da8ff;
}

.notice-box {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(95, 158, 246, .28);
  border-radius: 13px;
  background: rgba(36, 104, 200, .12);
}

.notice-box svg {
  flex: 0 0 auto;
  color: #70aaff;
}

.notice-box p {
  margin: 0;
  color: #adbed6 !important;
  font-size: 11px;
}

.notice-box strong {
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.projects-grid article {
  min-height: 230px;
  padding: 25px;
  border: 1px solid #d9e6f5;
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.projects-grid article:hover {
  transform: translateY(-5px);
  border-color: #9abff1;
  box-shadow: var(--shadow-sm);
}

.project-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
}

.projects-grid article:nth-child(4n + 2) .project-icon,
.projects-grid article:nth-child(4n + 4) .project-icon {
  color: var(--orange);
  background: var(--orange-soft);
}

.projects-grid small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .11em;
}

.projects-grid h3 {
  margin: 7px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.projects-grid p {
  margin: 0;
  font-size: 12px;
}

.tools-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.tools-layout > div:first-child {
  padding-top: 15px;
}

.tools-layout > div:first-child p {
  max-width: 430px;
  margin-top: 20px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.tool-grid article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border-color .2s ease, background .2s ease;
}

.tool-grid article:hover {
  border-color: #aac9f1;
  background: #f7fbff;
}

.tool-grid article > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
}

.tool-grid h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.tool-grid p {
  margin: 0;
  font-size: 11px;
}

.rhythm-section {
  padding-top: 40px;
}

.rhythm-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.rhythm-track article {
  position: relative;
  min-height: 160px;
  padding: 25px 18px;
  border-right: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.rhythm-track article:last-child {
  border-right: 0;
}

.rhythm-track article::after {
  position: absolute;
  top: 44px;
  right: -5px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: rotate(45deg);
  background: #fff;
  content: "";
}

.rhythm-track article:last-child::after {
  display: none;
}

.rhythm-track span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 10px;
  font-weight: 840;
}

.rhythm-track article:nth-child(even) span {
  color: var(--orange);
  background: var(--orange-soft);
}

.rhythm-track h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.rhythm-track p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
}

.plans-section {
  background: linear-gradient(180deg, #f5f9ff, #fff);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 63, 116, .05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: #9ec2f1;
  box-shadow: var(--shadow-md);
}

.plan-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, #fafdff, #fff);
  box-shadow: 0 25px 65px rgba(20, 95, 201, .14);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(243, 107, 58, .22);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-label {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.plan-card h3 {
  min-height: 54px;
  margin: 17px 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.plan-card > p {
  min-height: 69px;
  margin: 0;
  font-size: 12px;
}

.plan-price {
  display: grid;
  margin: 22px 0 14px;
}

.plan-price small {
  color: #8393a8;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.plan-price strong {
  margin: 2px 0;
  color: var(--navy);
  font-size: 35px;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.plan-price span {
  color: #8a99ad;
  font-size: 9px;
}

.plan-projects {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 750;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 19px 0 25px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 8px;
  color: #536983;
  font-size: 11px;
}

.plan-card li svg {
  flex: 0 0 auto;
  color: var(--mint);
}

.plan-actions {
  display: grid;
  gap: 13px;
  margin-top: auto;
}

.plan-actions .text-link {
  justify-content: center;
}

.fee-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 26px auto 0;
  color: #77899f !important;
  font-size: 10px;
  text-align: center;
}

.fee-note svg {
  color: var(--blue);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.support-main,
.mentor-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 23px;
}

.support-main {
  background: linear-gradient(145deg, #fff, #f3f8ff);
}

.support-main h2 {
  max-width: 600px;
}

.support-main > p {
  max-width: 700px;
  margin: 18px 0;
}

.support-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.support-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3e5877;
  font-size: 11px;
  font-weight: 680;
}

.support-points svg {
  color: var(--blue);
}

.support-disclaimer {
  margin-bottom: 0 !important;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 10px !important;
}

.mentor-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.mentor-visual {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 5px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #42a3ff);
  font-size: 25px;
  font-weight: 800;
}

.status-dot {
  position: absolute;
  right: -1px;
  bottom: 1px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--mint);
}

.mentor-card small {
  color: #6fa8f7;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .11em;
}

.mentor-card h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 26px;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.mentor-card p {
  color: #b8c9df;
  font-size: 13px;
}

.mentor-card .text-link {
  color: #7fb4ff;
}

.proof-section {
  background: #f4f8fd;
}

.proof-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.proof-layout > div:first-child > p {
  margin: 20px 0 25px;
}

.case-study-card {
  overflow: hidden;
  border: 1px solid #cfdef0;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.case-top span {
  color: var(--navy);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
}

.case-top small {
  color: #7890aa;
  font-size: 9px;
}

.case-body {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 310px;
}

.case-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 40px 28px;
  background:
    linear-gradient(rgba(84, 127, 183, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 127, 183, .07) 1px, transparent 1px),
    #f7fbff;
  background-size: 35px 35px;
}

.case-chart span {
  width: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #56a0ff, var(--blue));
  animation: bars 1.2s ease both;
}

.case-chart .bar-1 { height: 28%; }
.case-chart .bar-2 { height: 48%; animation-delay: .08s; }
.case-chart .bar-3 { height: 40%; animation-delay: .16s; background: linear-gradient(180deg, #ff9b76, var(--orange)); }
.case-chart .bar-4 { height: 68%; animation-delay: .24s; }
.case-chart .bar-5 { height: 82%; animation-delay: .32s; }

.case-info {
  display: grid;
  align-content: center;
  gap: 17px;
  padding: 34px;
}

.case-info span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #4e6380;
  font-size: 11px;
  font-weight: 650;
}

.case-info i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}

.visit-section {
  padding-bottom: 45px;
}

.visit-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border: 1px solid #d5e3f4;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.map-visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background:
    linear-gradient(28deg, transparent 48%, #dbe8f7 49%, #dbe8f7 51%, transparent 52%),
    linear-gradient(-18deg, transparent 45%, #d9e7f6 46%, #d9e7f6 48%, transparent 49%),
    linear-gradient(90deg, #eef5fc, #f8fbff);
}

.map-visual::before,
.map-visual::after {
  position: absolute;
  width: 520px;
  height: 60px;
  border: 12px solid rgba(106, 151, 206, .16);
  border-radius: 50%;
  transform: rotate(32deg);
  content: "";
}

.map-visual::before {
  top: 70px;
  left: -80px;
}

.map-visual::after {
  right: -110px;
  bottom: 70px;
  transform: rotate(-28deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: 48%;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border: 8px solid rgba(255,255,255,.8);
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 15px 35px rgba(182, 69, 29, .25);
  animation: pin-bounce 2.8s ease-in-out infinite;
}

.map-label {
  position: absolute;
  z-index: 3;
  top: calc(42% + 70px);
  left: calc(48% - 38px);
  padding: 10px 14px;
  border-radius: 11px;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
}

.map-label small {
  color: #768aa3;
  font-size: 8px;
  font-weight: 600;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.visit-copy p {
  margin: 18px 0 22px;
}

.visit-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}

.visit-meta > span {
  display: flex;
  gap: 10px;
  padding: 13px;
  border-radius: 11px;
  background: #f3f8ff;
}

.visit-meta svg {
  color: var(--blue);
}

.visit-meta small,
.visit-meta strong {
  display: block;
  line-height: 1.3;
}

.visit-meta small {
  color: #8191a6;
  font-size: 8px;
  text-transform: uppercase;
}

.visit-meta strong {
  color: var(--navy);
  font-size: 9.5px;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 19px;
}

.faq-section {
  padding-top: 60px;
  background: #f7faff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: start;
  gap: 65px;
}

.faq-layout aside {
  position: sticky;
  top: 120px;
}

.faq-layout aside p {
  margin: 18px 0 24px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 730;
}

.faq-list p {
  margin: 0;
  padding: 0 55px 20px 18px;
  font-size: 12px;
}

.resources-section {
  padding-block: 80px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.resource-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease;
}

.resource-grid article:hover {
  transform: translateY(-5px);
  border-color: #9abff1;
}

.resource-grid > article > span {
  color: #c7d6e8;
  font-size: 28px;
  font-weight: 850;
}

.resource-grid h3 {
  margin: 17px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.resource-grid p {
  margin: 0 0 17px;
  font-size: 11px;
}

.resource-grid button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.resource-grid button:hover {
  color: var(--orange);
}

.final-cta {
  padding-block: 55px 90px;
}

.cta-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 75px;
  padding: 64px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(55, 137, 255, .3), transparent 30%),
    linear-gradient(135deg, #061a38, #0b326b);
  box-shadow: 0 35px 80px rgba(10, 44, 92, .2);
}

.cta-shell::before {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -210px;
  bottom: -270px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
  content: "";
}

.cta-copy {
  position: relative;
  z-index: 2;
  flex: .92 1 0;
}

.cta-copy h2 {
  color: #fff;
}

.cta-copy > p {
  margin: 20px 0;
  color: #bdcae0;
}

.light-kicker {
  color: #78adfa;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e0ebfa;
  font-size: 11px;
  font-weight: 650;
}

.cta-contact a:hover {
  color: #fff;
}

.enquiry-form {
  position: relative;
  z-index: 2;
  flex: 1.08 1 0;
  min-width: 0;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-head small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .11em;
}

.form-head h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 22px;
}

.form-head > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
}

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

.form-grid label {
  display: grid;
  gap: 5px;
  color: #52657f;
  font-size: 9px;
  font-weight: 750;
}

.form-grid input,
.form-grid select {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 1px solid #d5e2f1;
  border-radius: 10px;
  outline: 0;
  color: var(--navy);
  background: #f9fbfe;
  font-size: 11px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27, 105, 229, .1);
}

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

.enquiry-form .btn {
  margin-top: 15px;
}

.form-privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 10px 0 0 !important;
  color: #8795a8 !important;
  font-size: 8px !important;
  text-align: center;
}

.site-footer {
  padding-top: 70px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .9fr 1.15fr;
  gap: 45px;
  padding-bottom: 50px;
}

.footer-brand p,
.footer-contact p {
  color: #6d7e94;
  font-size: 10.5px;
}

.footer-brand p {
  max-width: 260px;
  margin: 17px 0;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid h3 {
  margin: 3px 0 7px;
  color: var(--navy);
  font-size: 11px;
}

.footer-grid > div:not(.footer-brand) > a {
  color: #6c7d92;
  font-size: 9.5px;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: var(--blue);
}

.social-links {
  display: flex;
  gap: 7px;
}

.social-links a {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.social-links a:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8a98aa;
  font-size: 8px;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 18px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  cursor: pointer;
}

.footer-bottom button:hover {
  color: var(--blue);
}

.mobile-action-bar {
  display: none;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: 380px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 15px 14px 18px;
  border-radius: 13px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  color: #fff;
  background: #0b2b5e;
  box-shadow: 0 20px 50px rgba(6, 32, 70, .3);
  font-size: 11px;
  font-weight: 650;
  transition: .25s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.1);
  cursor: pointer;
}

@keyframes draw-line {
  from { stroke-dashoffset: 800; }
  to { stroke-dashoffset: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(39, 196, 154, .12); }
  50% { box-shadow: 0 0 0 9px rgba(39, 196, 154, .03); }
}

@keyframes bars {
  from { height: 0; }
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (min-width: 1380px) {
  .text-call {
    display: inline-flex;
  }
}

@media (min-width: 1800px) {
  .container {
    width: min(1320px, calc(100% - 120px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(600px, 1.05fr);
  }

  .hero h1 {
    font-size: 76px;
  }

  .performance-console {
    padding: 24px;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 38px, 1040px);
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav > a,
  .nav-dropdown > button {
    font-size: 12px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .floating-chip {
    display: none;
  }

  .orbit-one {
    left: 0;
  }

  .facts-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .fact {
    padding-inline: 12px;
  }

  .fact strong {
    font-size: 10.5px;
  }

  .curriculum-layout {
    grid-template-columns: 310px 1fr;
    gap: 40px;
  }

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

  .support-main,
  .mentor-card {
    padding: 34px;
  }

  .cta-shell {
    gap: 45px;
    padding: 48px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement button {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .main-nav {
    position: fixed;
    z-index: 80;
    top: 102px;
    right: 19px;
    left: 19px;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 120px);
    padding: 16px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: .22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
    border-bottom: 1px solid #edf2f7;
    font-size: 13px;
  }

  .main-nav > a::after,
  .nav-dropdown > button::after {
    display: none;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    display: grid;
    padding: 3px 0 8px 14px;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .dropdown-panel a {
    padding: 7px 10px;
    font-size: 11px;
  }

  .mobile-nav-cta {
    display: flex !important;
    justify-content: center !important;
    margin-top: 10px;
    border: 0 !important;
    border-radius: 10px;
    color: #fff !important;
    background: var(--blue);
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 70px;
  }

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

  .hero h1 {
    font-size: clamp(47px, 8vw, 67px);
  }

  .hero-visual {
    min-height: 500px;
  }

  .performance-console {
    max-width: 680px;
    margin-inline: auto;
  }

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

  .fact {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(3) {
    border-right: 0;
  }

  .fact:nth-child(4),
  .fact:nth-child(5) {
    border-bottom: 0;
  }

  .section {
    padding-block: 82px;
  }

  .split-intro,
  .audience-layout,
  .live-grid,
  .tools-layout,
  .proof-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sticky-copy,
  .curriculum-sidebar,
  .faq-layout aside {
    position: static;
  }

  .three-col,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cycle-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 35px;
  }

  .cycle-grid article:nth-child(3) .cycle-node i {
    display: none;
  }

  .curriculum-layout {
    grid-template-columns: 1fr;
  }

  .curriculum-sidebar {
    max-width: 620px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .integration-badge {
    margin: -6px auto;
  }

  .practice-visual {
    order: 2;
  }

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

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

  .rhythm-track article:nth-child(3) {
    border-right: 0;
  }

  .rhythm-track article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .plan-card h3,
  .plan-card > p {
    min-height: auto;
  }

  .support-grid,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    align-items: stretch;
    flex-direction: column;
  }

  .map-visual {
    min-height: 350px;
  }

  .visit-copy {
    padding: 42px;
  }

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

  .cta-shell {
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: 1.6fr repeat(2, 1fr);
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 30px);
  }

  .announcement {
    font-size: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    max-width: 150px;
    font-size: 7px;
  }

  .hero-grid {
    padding-block: 54px 62px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.4vw, 54px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .performance-console {
    padding: 13px;
    border-radius: 19px;
  }

  .console-metrics {
    gap: 6px;
  }

  .console-metrics > div {
    padding: 9px;
  }

  .console-metrics strong {
    font-size: 11px;
  }

  .console-metrics span {
    font-size: 7px;
  }

  .chart-head > span,
  .console-bottom {
    display: none;
  }

  .orbit {
    display: none;
  }

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

  .fact {
    min-height: 87px;
    padding: 15px 10px;
  }

  .fact:first-child {
    padding-left: 10px;
  }

  .fact:nth-child(2n) {
    border-right: 0;
  }

  .fact:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .fact:nth-child(4) {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(5) {
    grid-column: 1 / -1;
  }

  .fact-icon {
    width: 35px;
    height: 35px;
  }

  .section {
    padding-block: 68px;
  }

  .section h2 {
    font-size: 35px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .split-intro,
  .audience-layout,
  .live-grid,
  .tools-layout,
  .proof-layout,
  .faq-layout {
    gap: 30px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 37px;
  }

  .comparison-card {
    min-height: auto;
    padding: 25px;
  }

  .comparison-arrow {
    margin: -10px auto;
    transform: rotate(90deg);
  }

  .three-col,
  .reason-grid,
  .projects-grid,
  .tool-grid,
  .support-points,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .icon-card {
    min-height: 245px;
  }

  .audience-list article {
    grid-template-columns: 34px 1fr 20px;
    gap: 12px;
    padding-block: 20px;
  }

  .reason-grid article {
    min-height: auto;
  }

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

  .cycle-grid article:nth-child(3) .cycle-node i {
    display: block;
  }

  .cycle-grid article:nth-child(even) .cycle-node i {
    display: none;
  }

  .curriculum-sidebar .btn {
    width: 100%;
  }

  .module-list summary {
    grid-template-columns: 31px 1fr 20px;
    gap: 8px;
    padding: 13px;
  }

  .module-title {
    font-size: 12.5px;
  }

  .module-body {
    padding: 0 13px 16px 52px;
  }

  .platform-card {
    min-height: auto;
    grid-template-columns: 50px 1fr;
    padding: 27px;
  }

  .platform-logo {
    width: 50px;
    height: 50px;
  }

  .platform-card h3 {
    font-size: 21px;
  }

  .practice-visual {
    min-height: 320px;
  }

  .mock-window {
    transform: none;
  }

  .window-body {
    min-height: 230px;
    grid-template-columns: 40px 1fr;
  }

  .window-body aside {
    padding-inline: 9px;
  }

  .window-content {
    padding: 16px;
  }

  .visual-badge {
    display: none;
  }

  .projects-grid article {
    min-height: auto;
  }

  .rhythm-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .rhythm-track article {
    border-bottom: 1px solid var(--line);
  }

  .rhythm-track article:nth-child(2n) {
    border-right: 0;
  }

  .rhythm-track article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .rhythm-track article:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .plan-card {
    padding: 26px;
  }

  .support-main,
  .mentor-card {
    padding: 27px;
  }

  .case-body {
    grid-template-columns: 1fr;
  }

  .case-chart {
    min-height: 210px;
  }

  .map-visual {
    min-height: 280px;
  }

  .visit-copy {
    padding: 29px 24px;
  }

  .visit-meta {
    grid-template-columns: 1fr;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-actions .text-link {
    justify-content: center;
  }

  .faq-list summary {
    min-height: 58px;
    font-size: 12px;
  }

  .resource-grid article {
    min-height: auto;
  }

  .cta-shell {
    width: calc(100% - 20px);
    padding: 35px 21px;
    border-radius: 23px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .enquiry-form {
    padding: 22px 17px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-block: 14px 82px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 6px;
    border: 1px solid rgba(219, 231, 246, .92);
    border-radius: 15px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 50px rgba(11, 46, 92, .24);
    backdrop-filter: blur(15px);
  }

  .mobile-action-bar a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-right: 1px solid var(--line);
    color: var(--navy);
    font-size: 10px;
    font-weight: 750;
  }

  .mobile-action-bar a:last-child {
    border-right: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--blue);
  }

  .toast {
    right: 15px;
    bottom: 82px;
    left: 15px;
    max-width: none;
  }
}

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