:root {
  --c-bg: #ffffff;
  --c-bg-soft: #fafaf8;
  --c-bg-dark: #101617;
  --c-text: #17201f;
  --c-text-muted: #5b6663;
  --c-text-light: #93a19d;
  --c-text-dark: #e9efed;
  --c-text-dark-muted: #6e7b77;
  --c-primary: #1d62d1;
  --c-primary-hover: #164ea8;
  --c-accent: #5c9dff;
  --c-warn: #b4552d;
  --c-ok: #188a4c;
  --c-border: rgba(23, 32, 31, 0.08);
  --c-border-dark: rgba(255, 255, 255, 0.07);
  --radius-sm: 8px;
  --radius-md: 11px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-xxl: 22px;
  --max-width: 1240px;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.btn--primary {
  background: var(--c-primary);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--c-primary-hover);
}

.btn--lg {
  font-size: 18px;
  padding: 15px 30px;
  border-radius: var(--radius-md);
}

/* Language select */
.lang-select {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, var(--c-text) 50%),
    linear-gradient(135deg, var(--c-text) 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border: 1px solid rgba(23, 32, 31, 0.16);
  border-radius: var(--radius-sm);
  padding: 5px 26px 5px 10px;
  cursor: pointer;
  outline: none;
}

.lang-select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(29, 98, 209, 0.14);
}

/* Nav */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-bar--scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(23, 32, 31, 0.07);
}

.nav-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  box-sizing: border-box;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-bar__left {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-bar__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.nav-bar__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-bar__links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: color 0.2s ease;
}

.nav-bar__links a:hover {
  color: var(--c-text);
}

.nav-bar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-bar__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 36px;
  padding: 9px 10px;
  background: transparent;
  border: 1px solid rgba(23, 32, 31, 0.16);
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-sizing: border-box;
}

.nav-bar__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
}

.nav-bar__mobile {
  display: none;
  background: var(--c-bg);
  border-top: 1px solid rgba(23, 32, 31, 0.07);
  border-bottom: 1px solid rgba(23, 32, 31, 0.07);
  padding: 12px 32px 20px;
  flex-direction: column;
  gap: 2px;
}

.nav-bar__mobile a {
  padding: 11px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
}

.nav-bar__mobile .btn {
  margin-top: 10px;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
}

/* Hero */
.hero {
  padding: 200px 0 0;
}

.hero__inner {
  max-width: 1140px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 6.8vw, 86px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero__desc {
  font-size: 21px;
  line-height: 1.6;
  color: var(--c-text-muted);
  max-width: 620px;
  margin: 32px 0 0;
}

.hero .btn {
  margin-top: 36px;
}

/* Console */
.hero__console {
  position: relative;
  margin-top: 96px;
  margin-bottom: 150px;
  border-radius: 16px;
  border: 1px solid rgba(23, 32, 31, 0.09);
  background: var(--c-bg);
  box-shadow: 0 50px 110px -28px rgba(23, 32, 31, 0.28);
  overflow: hidden;
}

.hero__console-img {
  width: 100%;
  height: auto;
  display: none;
}

.hero__console-img.is-active {
  display: block;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 4.6vw, 60px);
  letter-spacing: -0.03em;
  margin: 0 0 56px;
}

/* Platform */
.section--platform {
  background: var(--c-bg-soft);
  padding: 90px 0 170px;
}

.section--contact {
  padding: 64px 32px 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
}

.platform-card {
  background: var(--c-bg);
  border: 1px solid rgba(23, 32, 31, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px -30px rgba(23, 32, 31, 0.14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.platform-card__text {
  padding: 38px 38px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.platform-card__text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 29px;
  letter-spacing: -0.02em;
}

.platform-card__text p {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--c-text-muted);
}

.platform-card__visual {
  margin-top: auto;
  height: 340px;
  overflow: hidden;
  position: relative;
}

.platform-card__inner {
  position: absolute;
  left: 38px;
  right: 0;
  top: 20px;
  bottom: 0;
  background: #fbfbfa;
  border: 1px solid rgba(23, 32, 31, 0.06);
  border-radius: var(--radius-lg) 0 0 0;
  padding: 22px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Grade row */
.grade-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.grade-row--border {
  border-top: 1px solid rgba(23, 32, 31, 0.07);
  padding-top: 14px;
}

.grade-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.grade-row__top span:first-child {
  font-size: 16px;
  font-weight: 600;
}

.grade-row__tag {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ok);
  background: rgba(24, 138, 76, 0.1);
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.grade-row__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.handwriting {
  font-family: var(--font-hand);
  font-size: 26px;
  color: #2a3634;
}

.handwriting--err {
  color: #b3423a;
}

.grade-row__mark {
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.grade-row__mark--ok {
  color: var(--c-ok);
}

.grade-row__mark--err {
  color: #b3423a;
}

.grade-row__two {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.grade-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.grade-row__correct {
  font-size: 16px;
  color: var(--c-text-muted);
  text-align: right;
}

.grade-row__correct b {
  font-weight: 600;
  color: #2a3634;
}

/* WQB */
.wqb__title {
  font-size: 16px;
  font-weight: 700;
}

.wqb__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}

.wqb__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--c-bg);
  border: 1px solid rgba(23, 32, 31, 0.08);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
}

.wqb__item span:first-child {
  font-size: 16px;
}

.wqb__tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-muted);
  background: rgba(23, 32, 31, 0.06);
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

/* Smart classroom tiles */
.sc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sc__tile {
  border: 1px solid rgba(23, 32, 31, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #ffffff;
}

.sc__tile--ok {
  background: rgba(29, 98, 209, 0.06);
}

.sc__tile--warn {
  background: rgba(180, 85, 45, 0.05);
}

.sc__tile__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.sc__tile__row > span:first-child {
  font-size: 15px;
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc__score {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.sc__score--ok {
  color: var(--c-primary);
}

.sc__score--warn {
  color: var(--c-warn);
}

.sc__bar {
  height: 5px;
  border-radius: 99px;
  background: rgba(23, 32, 31, 0.08);
}

.sc__bar div {
  height: 100%;
  border-radius: 99px;
  background: var(--c-primary);
}

.sc__bar--empty {
  background: rgba(23, 32, 31, 0.06);
}

.sc__alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(180, 85, 45, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
}

.sc__alert span:first-child {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-warn);
  flex-shrink: 0;
}

.sc__alert span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: #8a4224;
}

/* Personalised learning */
.pl__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
}

.pl__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pl__item > span:first-child {
  font-size: 16px;
  flex: 1;
}

.pl__bar {
  width: 130px;
  flex-shrink: 1;
  min-width: 56px;
  height: 6px;
  border-radius: 99px;
  background: rgba(23, 32, 31, 0.08);
}

.pl__bar div {
  height: 100%;
  border-radius: 99px;
}

.pl__item > span:last-child {
  font-size: 15px;
  color: var(--c-text-muted);
  width: 42px;
  text-align: right;
}

.pl__footer {
  border-top: 1px solid rgba(23, 32, 31, 0.07);
  padding-top: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
}

/* Technology */
.section--technology {
  background: var(--c-bg-dark);
  color: var(--c-text-dark);
  padding: 150px 0 140px;
}

.section--technology h2 {
  margin-bottom: 90px;
}

.section--technology h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3vw, 38px);
  letter-spacing: -0.02em;
  margin: 0;
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  align-items: center;
}

.tech-row + .tech-row {
  margin-top: 150px;
}

.tech-row__text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tech-row__text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-text-light);
  margin: 0;
}

.tech-row__media {
  flex: 1 1 420px;
}

.tech-row--reverse .tech-row__media {
  order: -1;
}

.tech__label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--c-accent);
}

.tech__list {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
}

.tech__list > div {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0;
  font-size: 17px;
  line-height: 1.55;
}

.tech__list strong {
  color: var(--c-text-dark);
}

.tech__list span {
  color: var(--c-text-light);
}

.tech__caption {
  font-size: 15px;
  color: var(--c-text-dark-muted);
  margin: 14px 4px 0;
}

/* Pen render */
.pen-render {
  position: relative;
  height: 520px;
  border-radius: var(--radius-xxl);
  border: 1px solid var(--c-border-dark);
  background: radial-gradient(120% 130% at 72% 24%, #1a2325 0%, #101617 62%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pen-render__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}

.pen-render__glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(92, 157, 255, 0.13), transparent 72%);
}

.pen-render__body {
  position: relative;
  transform: rotate(-36deg);
}

.pen-render__clip {
  position: relative;
  width: 380px;
  height: 30px;
  border-radius: 16px;
  background: linear-gradient(180deg, #49525b 0%, #21272c 46%, #0e1215 100%);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.pen-render__clip::before {
  content: '';
  position: absolute;
  left: 26px;
  right: 80px;
  top: 5px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.26);
}

.pen-render__ring {
  position: absolute;
  right: 58px;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #5c9dff, #1d62d1);
}

.pen-render__grip {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  background: linear-gradient(180deg, #31383f 0%, #171c20 55%, #0b0e11 100%);
}

.pen-render__tip {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 34px solid #141a1d;
}

.pen-render__nib {
  position: absolute;
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5c9dff;
  box-shadow: 0 0 10px rgba(92, 157, 255, 0.9);
}

.pen-render__shadow {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), transparent 72%);
  filter: blur(7px);
}

/* Graph render */
.graph-render {
  position: relative;
  border-radius: var(--radius-xxl);
  border: 1px solid var(--c-border-dark);
  background: radial-gradient(115% 125% at 32% 28%, #16201f 0%, #101617 64%);
  overflow: hidden;
}

.graph-render svg {
  display: block;
  width: 100%;
  height: auto;
}

.pulse {
  animation: folioPulse 3.4s ease-in-out infinite;
}

.pulse:nth-of-type(2) {
  animation-duration: 4.2s;
}

.pulse:nth-of-type(3) {
  animation-duration: 3.8s;
}

@keyframes folioPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

.graph__legend {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  padding: 0 4px;
}

.graph__legend > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--c-text-dark-muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot--fill {
  background: #5c9dff;
}

.dot--ring {
  border: 1.5px solid rgba(92, 157, 255, 0.75);
  box-sizing: border-box;
}

/* Lock render */
.lock-render {
  position: relative;
  height: 320px;
  border-radius: var(--radius-xxl);
  border: 1px solid var(--c-border-dark);
  background: radial-gradient(120% 130% at 60% 30%, #1a2325 0%, #101617 65%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lock-render__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}

.lock-render__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(92, 157, 255, 0.12), transparent 72%);
}

.lock-render__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lock-render__arch {
  width: 76px;
  height: 62px;
  border: 11px solid #49525b;
  border-bottom: none;
  border-radius: 40px 40px 0 0;
}

.lock-render__box {
  width: 128px;
  height: 96px;
  margin-top: -6px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2e373e 0%, #171d22 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lock-render__led {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #5c9dff;
  box-shadow: 0 0 16px rgba(92, 157, 255, 0.9);
}

.lock-render__badge {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-text-light);
}

/* Results */
.section--results {
  padding: 190px 32px 170px;
  text-align: center;
}

.section--results .container {
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  max-width: 1140px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.stat-item__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 5.6vw, 78px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item__label {
  font-size: 18px;
  color: var(--c-text-muted);
  max-width: 260px;
  text-wrap: balance;
}

.stat-item__note {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
}

/* Pilot */
.section--pilot {
  background: var(--c-bg-soft);
  padding: 110px 0 150px;
}

.pilot__inner {
  max-width: 600px;
}

.section--results .container {
  max-width: 1140px;
}

.pilot__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pilot__header h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 42px);
  letter-spacing: -0.025em;
  margin: 0;
}

.pilot__header p {
  font-size: 19px;
  color: var(--c-text-muted);
  margin: 0;
}

.pilot__form {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pilot__form input,
.pilot__form select,
.pilot__form textarea {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--c-text);
  padding: 15px 18px;
  border: 1px solid rgba(23, 32, 31, 0.14);
  border-radius: var(--radius-md);
  background: var(--c-bg);
  outline: none;
  width: 100%;
}

.pilot__form input:focus,
.pilot__form select:focus,
.pilot__form textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(29, 98, 209, 0.14);
}

.pilot__form select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  border-radius: 11px;
  background-image: linear-gradient(45deg, transparent 50%, #17201F 50%), linear-gradient(135deg, #17201F 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

/* 身份占位项：未选择时框内文字保持 placeholder 灰 */
.pilot__form select.is-placeholder,
.pilot-form select.is-placeholder,
.pilot__form select option[value=""],
.pilot-form select option[value=""] {
  color: rgba(0, 0, 0, 0.45);
}

/* 表单 placeholder 显式颜色，与身份占位保持一致 */
.pilot__form input::placeholder,
.pilot-form input::placeholder,
.pilot__form textarea::placeholder,
.pilot-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
  opacity: 1;
}

.pilot__full {
  grid-column: 1 / -1;
}

.pilot__form button {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: var(--c-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 17px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pilot__form button:hover {
  background: var(--c-primary-hover);
}

.pilot__or {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 16px;
  color: var(--c-text-muted);
  margin: 6px 0 0;
}

.pilot__or a {
  font-weight: 600;
  color: var(--c-primary);
}

.pilot__thanks {
  margin-top: 44px;
  text-align: center;
  border: 1px solid rgba(29, 98, 209, 0.3);
  background: rgba(29, 98, 209, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
}

.pilot__thanks-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--c-primary);
}

.pilot__thanks p {
  font-size: 17px;
  color: var(--c-text-muted);
  margin: 10px 0 0;
}

/* Footer */
.footer {
  padding-top: 64px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.footer__brand p {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}

.footer__links a {
  color: var(--c-text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--c-text);
}

.footer__contact {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
  font-size: 16px;
  color: var(--c-text-muted);
}

.footer__contact a {
  font-weight: 600;
  color: var(--c-primary);
}

.footer__bottom {
  margin-top: 48px;
  padding: 22px 32px;
  border-top: 1px solid rgba(23, 32, 31, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: rgba(91, 102, 99, 0.8);
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__right a {
  color: var(--c-text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer__right a:hover {
  color: var(--c-text);
}

/* Responsive */
@media (max-width: 992px) {
  .nav-bar__links,
  .nav-bar__cta {
    display: none;
  }

  .nav-bar__menu-btn {
    display: flex;
  }

  .nav-bar__mobile.nav-bar__mobile--open {
    display: flex;
  }

  .tech-row--reverse .tech-row__media {
    order: 0;
  }

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

  .stats-grid {
    gap: 50px 30px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 140px;
  }

  .hero__console {
    margin-bottom: 80px;
  }

  .console__body {
    flex-direction: column;
  }

  .console__sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(23, 32, 31, 0.06);
  }

  .console__brand {
    width: 100%;
    padding-bottom: 8px;
  }

  .section--results {
    padding: 100px 24px 100px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .container {
    padding: 0 24px;
  }

  .nav-bar__inner {
    padding: 16px 24px;
  }

  .nav-bar__mobile {
    padding: 12px 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }

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

  .platform-card__text {
    padding: 28px 24px 20px;
  }

  .platform-card__inner {
    left: 24px;
    padding: 18px 20px;
  }

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