:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-deep: #0d1a2b;
  --surface-muted: #edf3fa;
  --line: rgba(18, 43, 70, 0.12);
  --line-strong: rgba(18, 43, 70, 0.2);
  --text: #10243c;
  --text-soft: #4f6681;
  --text-faint: #6f84a0;
  --accent: #0d9b78;
  --accent-dark: #06745a;
  --accent-gold: #c89a4b;
  --accent-gold-soft: #f5e7cb;
  --navy: #0c2036;
  --hero: #06111f;
  --shadow-lg: 0 24px 80px rgba(8, 28, 52, 0.16);
  --shadow-md: 0 18px 40px rgba(8, 28, 52, 0.1);
  --shadow-sm: 0 8px 20px rgba(8, 28, 52, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1220px;
}

html[data-theme="dark"] {
  --bg: #08111d;
  --surface: rgba(12, 24, 40, 0.84);
  --surface-strong: #0f1d31;
  --surface-deep: #06111f;
  --surface-muted: #0d1827;
  --line: rgba(150, 181, 214, 0.14);
  --line-strong: rgba(150, 181, 214, 0.28);
  --text: #e6eef9;
  --text-soft: #adc0d9;
  --text-faint: #8094ad;
  --accent: #2bc7a0;
  --accent-dark: #119775;
  --accent-gold: #d5a75a;
  --accent-gold-soft: #f8e6c5;
  --navy: #f3f7fc;
  --hero: #040b14;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 154, 75, 0.12), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(13, 155, 120, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f2f6fb 52%, #eef3f9 100%);
  color: var(--text);
  line-height: 1.65;
}

body.lightbox-open {
  overflow: hidden;
}

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

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(213, 167, 90, 0.16), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(43, 199, 160, 0.14), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #091523 45%, #0a1727 100%);
}

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

a {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: 34px;
  height: auto;
  flex: 0 0 auto;
}

.brand-logo-dark {
  display: none;
}

.footer-brand .brand-logo {
  width: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 999px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  color: var(--navy);
  border-color: rgba(39, 70, 109, 0.16);
  box-shadow: 0 16px 28px rgba(8, 28, 52, 0.14);
}

.theme-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle-label::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 32, 54, 0.96) 0%, rgba(25, 56, 89, 0.96) 100%);
  box-shadow: 0 0 0 4px rgba(39, 70, 109, 0.08);
}

html[data-theme="dark"] .theme-switcher {
  background: transparent;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(15, 29, 49, 0.82);
  color: var(--text);
  border-color: rgba(150, 181, 214, 0.16);
}

html[data-theme="dark"] .theme-toggle:hover {
  color: var(--text);
  border-color: rgba(150, 181, 214, 0.24);
}

html[data-theme="dark"] .theme-toggle-label::after {
  background: linear-gradient(135deg, rgba(43, 199, 160, 0.88) 0%, rgba(95, 226, 188, 0.78) 100%);
  box-shadow: 0 0 0 4px rgba(43, 199, 160, 0.12);
}

html[data-theme="dark"] .brand-logo-light {
  display: none;
}

html[data-theme="dark"] .brand-logo-dark {
  display: block;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.site-nav a.nav-cta,
.site-nav-actions a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #27466d 0%, #173554 100%);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(7, 17, 29, 0.28);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.site-nav a.nav-cta:hover,
.site-nav-actions a.nav-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #305582 0%, #1d4267 100%);
  box-shadow: 0 14px 30px rgba(9, 26, 45, 0.18);
}

.assistant-inline-trigger {
  border: 1px solid rgba(39, 70, 109, 0.12);
}

.hero-section {
  position: relative;
  padding: 84px 0 64px;
  overflow: clip;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.6px, transparent 0.6px);
  background-size: 16px 16px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-orb-a {
  width: 420px;
  height: 420px;
  top: -90px;
  left: -120px;
  background: radial-gradient(circle, rgba(200, 154, 75, 0.35) 0%, rgba(200, 154, 75, 0) 72%);
  animation: floatOrb 14s ease-in-out infinite;
}

.hero-orb-b {
  width: 340px;
  height: 340px;
  right: -60px;
  top: 120px;
  background: radial-gradient(circle, rgba(13, 155, 120, 0.26) 0%, rgba(13, 155, 120, 0) 74%);
  animation: floatOrb 16s ease-in-out infinite reverse;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 43, 70, 0.08);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  max-width: 12.5ch;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #09192d;
}

html[data-theme="dark"] .hero-title {
  color: #f7fbff;
}

.hero-description {
  max-width: 64ch;
  margin-bottom: 26px;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-actions.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #11b98f);
  box-shadow: 0 18px 36px rgba(13, 155, 120, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(13, 155, 120, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 43, 70, 0.1);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
}

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

.hero-meta-item {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(18, 43, 70, 0.08);
  box-shadow: var(--shadow-sm);
}

.hero-meta-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.95rem;
}

.hero-meta-item span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-panel {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.hero-panel-main {
  padding: 20px;
}

.panel-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.panel-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(12, 32, 54, 0.06);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-panel-main img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(18, 43, 70, 0.08);
}

img[data-zoomable="true"] {
  cursor: zoom-in;
}

.hero-panel-floating {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: min(300px, 88%);
  padding: 22px;
  background: linear-gradient(180deg, rgba(8, 24, 42, 0.96), rgba(12, 32, 54, 0.92));
  color: rgba(255, 255, 255, 0.92);
  animation: floatCard 8s ease-in-out infinite;
}

.floating-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 700;
}

.floating-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.floating-list li {
  position: relative;
  padding-left: 18px;
}

.floating-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-gold);
}

.trust-strip {
  padding: 12px 0 34px;
}

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

.trust-card {
  min-height: 132px;
  padding: 22px 22px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 43, 70, 0.08);
  box-shadow: var(--shadow-sm);
}

.trust-value {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
}

section {
  padding: 88px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker.center {
  color: rgba(9, 25, 45, 0.72);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.section-title-left,
.section-description-left {
  text-align: left;
}

.section-description {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1rem;
}

.about-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(107, 160, 255, 0.16), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(13, 155, 120, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(244, 248, 252, 0.94));
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.about-visual-card,
.about-copy,
.about-story-card,
.about-highlight {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 43, 70, 0.08);
  box-shadow: var(--shadow-sm);
}

.about-visual-card,
.about-copy {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-visual-card {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
}

.about-visual-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(44, 96, 164, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(30, 67, 114, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-visual-glow {
  position: absolute;
  inset: auto auto 12% 10%;
  width: 72%;
  height: 54%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(101, 145, 255, 0.18), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.about-visual-caption {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: center;
}

.metafast-mascot {
  position: relative;
  width: 280px;
  height: 320px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  flex-shrink: 0;
}

.mascot-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(92, 127, 214, 0.22);
  pointer-events: none;
}

.orbit-a {
  inset: 12% 10% 14%;
}

.orbit-b {
  inset: 8% 16% 20%;
}

.orbit-c {
  inset: 18% 6% 10%;
}

.mascot-spark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.26);
  animation: mascotSpark 6s ease-in-out infinite;
}

.spark-a {
  top: 18%;
  right: 12%;
  background: #5edbb4;
}

.spark-b {
  left: 14%;
  top: 48%;
  background: #5f83ec;
  animation-delay: 1.1s;
}

.spark-c {
  right: 6%;
  top: 42%;
  background: #75d3ff;
  animation-delay: 2.2s;
}

.mascot-head,
.mascot-body,
.mascot-brand-badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mascot-head {
  width: 78%;
  height: 58%;
  min-height: 160px;
  padding: 26px 22px 20px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 255, 0.84)),
    linear-gradient(135deg, rgba(117, 150, 255, 0.18), rgba(94, 219, 180, 0.16));
  border: 1px solid rgba(181, 201, 235, 0.72);
  box-shadow:
    0 26px 48px rgba(72, 106, 171, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  animation: mascotFloat 7s ease-in-out infinite;
}

.mascot-head::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.mascot-top-panel,
.mascot-mouth-panel,
.mascot-body-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(242, 247, 255, 0.9);
  border: 1px solid rgba(167, 188, 228, 0.72);
}

.mascot-top-panel span,
.mascot-body-panel span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7f93ff, #57c6ef);
}

.mascot-top-panel span:nth-child(2),
.mascot-body-panel span:nth-child(2) {
  width: 18px;
  border-radius: 999px;
}

.mascot-eye-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 26px 0;
}

.mascot-eye {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(226, 236, 248, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(229, 239, 248, 0.84));
  border: 1px solid rgba(174, 193, 225, 0.78);
  box-shadow: inset 0 -8px 14px rgba(82, 119, 173, 0.1);
  overflow: hidden;
}

.mascot-eye::before {
  content: "";
  position: absolute;
  inset: 11px 10px 10px 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.mascot-pupil {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #29385d, #0f1930 70%);
  box-shadow: 0 0 0 3px rgba(38, 53, 92, 0.08);
  transform: translate3d(0, 0, 0);
  transition: transform 0.08s linear;
}

.mascot-pupil::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

.mascot-mouth-panel {
  gap: 10px;
  padding-inline: 16px;
}

.mascot-mouth-panel span {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5b82ef, #67d1f3);
}

.mascot-mouth-panel span:nth-child(1),
.mascot-mouth-panel span:nth-child(4) {
  width: 16px;
}

.mascot-mouth-panel span:nth-child(2) {
  width: 20px;
}

.mascot-mouth-panel span:nth-child(3) {
  width: 10px;
}

.mascot-body {
  width: 44%;
  margin-top: -14px;
  padding: 18px 14px 16px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(232, 241, 250, 0.78));
  border: 1px solid rgba(184, 201, 231, 0.78);
  box-shadow:
    0 18px 38px rgba(77, 110, 169, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  animation: mascotFloat 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.mascot-chest-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: -42px auto 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.88));
  border: 1px solid rgba(164, 188, 230, 0.76);
  color: #4e78e8;
  box-shadow: 0 14px 30px rgba(70, 100, 156, 0.12);
}

.mascot-brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(175, 193, 225, 0.76);
  box-shadow: 0 16px 30px rgba(69, 100, 158, 0.14);
}

.mascot-brand-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-copy {
  padding: 34px 34px 36px;
}

.about-copy .section-title {
  max-width: 42ch;
}

.about-copy .section-description + .section-description {
  margin-top: 14px;
}

.about-story-grid,
.about-highlight-board {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.about-story-card,
.about-highlight {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.about-story-card h3,
.about-highlight strong {
  color: var(--navy);
}

.about-story-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.about-story-card p,
.about-highlight span {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.72;
}

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

.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pricing-actions .btn {
  flex: 1 1 220px;
}

.web-assistant-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
}

.web-assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(39, 70, 109, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(8, 28, 52, 0.18);
  color: var(--navy);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.web-assistant-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(8, 28, 52, 0.22);
}

.web-assistant-launcher-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(39, 70, 109, 0.98), rgba(13, 155, 120, 0.92));
  color: #ffffff;
  flex: 0 0 auto;
}

.web-assistant-launcher-copy {
  display: grid;
  text-align: left;
}

.web-assistant-launcher-copy strong {
  font-size: 0.96rem;
}

.web-assistant-launcher-copy small {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.web-assistant-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(348px, calc(100vw - 18px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.web-assistant-panel.is-expanded {
  position: fixed;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: min(980px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  transform: translate(-50%, -46%) scale(0.98);
  transform-origin: center;
}

.web-assistant-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.web-assistant-panel.is-expanded.is-open {
  transform: translate(-50%, -50%) scale(1);
}

.web-assistant-card {
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(107, 160, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(13, 155, 120, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 43, 70, 0.1);
  box-shadow: 0 28px 80px rgba(8, 28, 52, 0.24);
  backdrop-filter: blur(22px);
}

.web-assistant-panel.is-expanded .web-assistant-card {
  display: flex;
  flex-direction: column;
  min-height: min(760px, calc(100vh - 56px));
  max-height: calc(100vh - 56px);
  padding: 20px;
  border-radius: 28px;
}

.web-assistant-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.web-assistant-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.web-assistant-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.web-assistant-header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--navy);
}

.web-assistant-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(39, 70, 109, 0.08);
  color: var(--text-soft);
  font-size: 1.4rem;
  cursor: pointer;
}

.web-assistant-expand {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(39, 70, 109, 0.08);
  color: var(--text-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.web-assistant-expand .inline-icon {
  width: 16px;
  height: 16px;
}

.web-assistant-expand:hover,
.web-assistant-close:hover {
  background: rgba(39, 70, 109, 0.14);
  color: var(--navy);
}

.web-assistant-top {
  display: block;
  margin-top: 12px;
}

.web-assistant-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-chip {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(39, 70, 109, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.assistant-chip:hover {
  border-color: rgba(13, 155, 120, 0.38);
  color: var(--accent-dark);
}

.web-assistant-log {
  display: grid;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding: 10px 4px 2px 0;
  margin-top: 12px;
}

.web-assistant-panel.is-expanded .web-assistant-log {
  flex: 1 1 auto;
  max-height: none;
  min-height: 280px;
  padding-right: 8px;
}

.assistant-message {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18, 43, 70, 0.08);
}

.assistant-message-ai {
  background: rgba(255, 255, 255, 0.88);
}

.assistant-message-user {
  margin-left: auto;
  background: rgba(13, 155, 120, 0.09);
}

.assistant-message-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.assistant-message p {
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.5;
}

.assistant-message-pending {
  opacity: 0.96;
}

.assistant-message-pending-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.4;
}

.assistant-message-pending-text {
  color: var(--text);
}

.assistant-message-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.assistant-message-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(39, 70, 109, 0.5);
  animation: assistantDotPulse 1s ease-in-out infinite;
}

.assistant-message-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.assistant-message-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.web-assistant-form {
  margin-top: 12px;
}

.web-assistant-form textarea,
.web-assistant-confirm input,
.web-assistant-confirm select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(18, 43, 70, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.web-assistant-form textarea {
  min-height: 64px;
  padding: 10px 12px;
  resize: vertical;
}

.web-assistant-panel.is-expanded .web-assistant-form textarea {
  min-height: 110px;
}

.web-assistant-panel.is-expanded .web-assistant-header h3 {
  font-size: 1.2rem;
}

.web-assistant-panel.is-expanded .assistant-message {
  max-width: 88%;
}

.web-assistant-panel.is-expanded .assistant-message p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.web-assistant-panel.is-expanded .web-assistant-form-row .btn,
.web-assistant-panel.is-expanded .web-assistant-confirm-row .btn {
  flex: 1 1 180px;
}

.web-assistant-form-row,
.web-assistant-confirm-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.web-assistant-form-row .btn,
.web-assistant-confirm-row .btn {
  flex: 1 1 130px;
  min-height: 44px;
  font-size: 0.9rem;
}

.assistant-send-btn {
  flex: 0 0 48px !important;
  width: 48px;
  min-width: 48px;
  padding: 0;
  justify-content: center;
}

.assistant-send-btn .inline-icon {
  width: 18px;
  height: 18px;
}

.assistant-send-btn.is-loading {
  opacity: 0.7;
}

.assistant-chip:disabled,
.assistant-send-btn:disabled,
.web-assistant-form textarea:disabled {
  cursor: wait;
}

.assistant-chip:disabled {
  opacity: 0.68;
}

.web-assistant-form textarea:disabled {
  opacity: 0.82;
}

.web-assistant-confirm {
  margin-top: 14px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 43, 70, 0.08);
}

.web-assistant-confirm-head {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.web-assistant-confirm-head strong {
  color: var(--navy);
}

@keyframes assistantDotPulse {
  0%,
  80%,
  100% {
    transform: translateY(0) scale(0.9);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-1px) scale(1);
    opacity: 1;
  }
}

.web-assistant-confirm-head span,
.web-assistant-confirm-note {
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.48;
}

.web-assistant-confirm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.web-assistant-confirm label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
}

.web-assistant-confirm input,
.web-assistant-confirm select {
  min-height: 40px;
  padding: 0 12px;
}

.assistant-package-field {
  grid-column: 1 / -1;
}

.web-assistant-confirm-note {
  margin-top: 10px;
}

.about-highlight strong {
  font-size: 1rem;
}

.value-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.56));
}

.value-grid,
.capability-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
}

.value-card,
.capability-card,
.testimonial-card,
.faq-item,
.comparison-card,
.pricing-card,
.system-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 43, 70, 0.08);
  box-shadow: var(--shadow-sm);
}

.value-card,
.capability-card,
.testimonial-card,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 155, 120, 0.12), rgba(200, 154, 75, 0.12));
  color: var(--navy);
}

.ui-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3,
.capability-card h3,
.faq-item h3,
.pricing-card h3,
.comparison-card h3,
.system-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.18rem;
}

.value-card p,
.capability-card p,
.faq-item p,
.comparison-summary,
.system-card li,
.pricing-tier small {
  color: var(--text-soft);
  font-size: 0.95rem;
}

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

.workflow-step {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 32, 54, 0.98), rgba(17, 39, 63, 0.94));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.workflow-step h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.workflow-step p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.showcase-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(243, 247, 252, 0.9));
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 42px;
}

.showcase-row.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.showcase-row.reverse .showcase-media {
  order: 2;
}

.showcase-row.reverse .showcase-copy {
  order: 1;
}

.showcase-media {
  position: relative;
}

.showcase-media img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(18, 43, 70, 0.08);
  box-shadow: var(--shadow-lg);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(4, 10, 18, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(94vw, 1320px);
  max-height: 88vh;
  overflow: hidden;
  padding: 12px;
  cursor: zoom-in;
}

.image-lightbox-stage img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  transform-origin: center center;
  transition: transform 0.12s ease;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

.image-lightbox-toolbar {
  position: absolute;
  top: 22px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.image-lightbox-zoom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(6, 15, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.image-lightbox-zoom-value {
  min-width: 58px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.image-lightbox-icon-btn,
.image-lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.image-lightbox-icon-btn {
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
}

.image-lightbox-icon-btn[disabled] {
  opacity: 0.38;
  cursor: default;
}

.image-lightbox-icon-btn:not([disabled]):hover,
.image-lightbox-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

.image-lightbox-stage.is-draggable {
  cursor: grab;
}

.image-lightbox-stage.is-dragging {
  cursor: grabbing;
}

.showcase-copy {
  padding: 8px 0;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--accent-gold-soft);
  color: #7e5f2b;
  font-size: 0.85rem;
  font-weight: 800;
}

.showcase-copy h3 {
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.1;
  color: var(--navy);
}

.showcase-copy p {
  color: var(--text-soft);
  font-size: 1rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
}

.feature-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.feature-group {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 43, 70, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-group:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.feature-group-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.feature-group-head .icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-group-head h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.35;
}

.feature-detail-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-detail-list li {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-detail-list strong {
  color: var(--navy);
  font-weight: 700;
}

.comparison-section {
  background: linear-gradient(180deg, rgba(8, 24, 42, 0.98), rgba(14, 31, 49, 0.95));
}

.comparison-section .section-kicker,
.comparison-section .section-title,
.comparison-section .section-description {
  color: #fff;
}

.comparison-section .section-description {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

.comparison-card-single {
  width: min(100%, 860px);
  margin: 0 auto;
}

.comparison-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.comparison-card h3 {
  color: #fff;
  font-size: 1.5rem;
}

.comparison-card .comparison-summary,
.comparison-card .comparison-label,
.comparison-card li {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-label {
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.comparison-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.comparison-card.featured,
.pricing-card.featured {
  border-color: rgba(200, 154, 75, 0.44);
  background:
    linear-gradient(180deg, rgba(200, 154, 75, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(194, 144, 58, 0.22), rgba(248, 219, 161, 0.46));
  color: #7a4d06;
  border: 1px solid rgba(194, 144, 58, 0.34);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(244, 247, 251, 0.98));
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.pricing-card-single {
  width: min(100%, 760px);
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
}

.pricing-plan {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-tier {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-tier:last-of-type {
  margin-bottom: 18px;
}

.pricing-tier span {
  color: var(--navy);
  font-weight: 700;
}

.pricing-tier strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.pricing-tier small {
  grid-column: 1 / -1;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  margin: 10px 0 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(13, 155, 120, 0.06);
  border: 1px solid rgba(13, 155, 120, 0.14);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.pricing-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.support-card,
.flow-step-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.support-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(13, 155, 120, 0.08);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-card h3,
.flow-step-card h3 {
  margin: 14px 0 12px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.35;
}

.support-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
}

.support-list .inline-icon {
  flex: 0 0 16px;
  margin-top: 4px;
}

.payment-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.payment-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(200, 154, 75, 0.12);
  border: 1px solid rgba(200, 154, 75, 0.18);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.support-copy {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.payment-flow-section {
  padding-top: 10px;
}

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

.flow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39, 70, 109, 0.12), rgba(13, 155, 120, 0.14));
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.flow-step-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.75), rgba(255, 255, 255, 0.78));
}

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

.testimonial-card {
  position: relative;
  min-height: 250px;
}

.quote-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--accent);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.testimonial-card p {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.98rem;
}

.testimonial-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 0.88rem;
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 246, 252, 0.9));
}

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

.download-section {
  background: linear-gradient(180deg, rgba(7, 20, 33, 0.98), rgba(10, 25, 40, 0.98));
  color: #fff;
}

.download-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.download-section .section-title,
.download-section .section-kicker {
  color: #fff;
}

.download-section .section-description {
  color: rgba(255, 255, 255, 0.74);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.system-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.system-card h3 {
  color: #fff;
}

.system-group + .system-group {
  margin-top: 22px;
}

.system-label {
  margin-bottom: 10px;
  color: var(--accent-gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.system-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.system-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-gold), #f7d99f);
}

.final-cta {
  background:
    radial-gradient(circle at center top, rgba(13, 155, 120, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, #f0f5fb 100%);
  text-align: center;
}

.final-cta h2 {
  max-width: 14ch;
  margin: 0 auto 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.final-cta p {
  max-width: 64ch;
  margin: 0 auto;
  color: var(--text-soft);
}

.site-footer {
  padding: 28px 0 36px;
  background: #eaf0f7;
  border-top: 1px solid rgba(18, 43, 70, 0.08);
}

html[data-theme="dark"] .site-header {
  background: rgba(5, 12, 22, 0.76);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .site-footer {
  background: #07111d;
  border-top-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .hero-noise {
  opacity: 0.12;
}

html[data-theme="dark"] .eyebrow-pill,
html[data-theme="dark"] .hero-panel-main,
html[data-theme="dark"] .hero-panel-floating,
html[data-theme="dark"] .trust-card,
html[data-theme="dark"] .about-visual-card,
html[data-theme="dark"] .about-copy,
html[data-theme="dark"] .about-story-card,
html[data-theme="dark"] .about-highlight,
html[data-theme="dark"] .value-card,
html[data-theme="dark"] .capability-card,
html[data-theme="dark"] .feature-group,
html[data-theme="dark"] .workflow-step,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .system-card,
html[data-theme="dark"] .download-shell,
html[data-theme="dark"] .comparison-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .pricing-plan,
html[data-theme="dark"] .comparison-label,
html[data-theme="dark"] .trust-label,
html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .faq-item p,
html[data-theme="dark"] .about-visual-caption,
html[data-theme="dark"] .about-story-card p,
html[data-theme="dark"] .about-highlight span,
html[data-theme="dark"] .section-description,
html[data-theme="dark"] .hero-description,
html[data-theme="dark"] .value-card p,
html[data-theme="dark"] .capability-card p,
html[data-theme="dark"] .testimonial-card span,
html[data-theme="dark"] .system-card li,
html[data-theme="dark"] .workflow-step p,
html[data-theme="dark"] .floating-list li,
html[data-theme="dark"] .comparison-card .comparison-summary,
html[data-theme="dark"] .comparison-card li,
html[data-theme="dark"] .pricing-tier small,
html[data-theme="dark"] .final-cta p,
html[data-theme="dark"] .pricing-note,
html[data-theme="dark"] .support-list li,
html[data-theme="dark"] .support-copy,
html[data-theme="dark"] .flow-step-card p {
  color: var(--text-soft);
}

html[data-theme="dark"] .showcase-section,
html[data-theme="dark"] .about-section,
html[data-theme="dark"] .pricing-section,
html[data-theme="dark"] .testimonials-section,
html[data-theme="dark"] .faq-section,
html[data-theme="dark"] .download-section,
html[data-theme="dark"] .payment-flow-section {
  background: transparent;
}

html[data-theme="dark"] .showcase-tag,
html[data-theme="dark"] .featured-badge {
  background: linear-gradient(135deg, rgba(122, 86, 25, 0.52), rgba(176, 125, 40, 0.34));
  color: #ffd999;
  border-color: rgba(238, 193, 112, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 235, 196, 0.08);
}

html[data-theme="dark"] .btn-secondary {
  background: rgba(15, 29, 49, 0.82);
  border: 1px solid var(--line);
  color: var(--text);
}

html[data-theme="dark"] .btn-secondary:hover {
  border-color: var(--line-strong);
}

html[data-theme="dark"] .web-assistant-launcher,
html[data-theme="dark"] .web-assistant-card,
html[data-theme="dark"] .assistant-chip,
html[data-theme="dark"] .assistant-message-ai,
html[data-theme="dark"] .web-assistant-visual,
html[data-theme="dark"] .web-assistant-confirm,
html[data-theme="dark"] .web-assistant-form textarea,
html[data-theme="dark"] .web-assistant-confirm input,
html[data-theme="dark"] .web-assistant-confirm select {
  background: rgba(12, 24, 40, 0.92);
  border-color: rgba(150, 181, 214, 0.14);
}

html[data-theme="dark"] .web-assistant-expand,
html[data-theme="dark"] .web-assistant-close {
  background: rgba(150, 181, 214, 0.1);
}

html[data-theme="dark"] .web-assistant-launcher-copy small,
html[data-theme="dark"] .web-assistant-summary p,
html[data-theme="dark"] .web-assistant-confirm-head span,
html[data-theme="dark"] .web-assistant-confirm-note,
html[data-theme="dark"] .assistant-message-label {
  color: var(--text-soft);
}

html[data-theme="dark"] .web-assistant-header h3,
html[data-theme="dark"] .assistant-chip,
html[data-theme="dark"] .assistant-message p,
html[data-theme="dark"] .web-assistant-confirm label,
html[data-theme="dark"] .web-assistant-confirm-head strong {
  color: var(--text);
}

html[data-theme="dark"] .assistant-message-user {
  background: rgba(43, 199, 160, 0.14);
}

html[data-theme="dark"] .support-kicker {
  background: rgba(43, 199, 160, 0.16);
  color: #8ef2d4;
}

html[data-theme="dark"] .payment-tag {
  background: rgba(205, 166, 96, 0.16);
  border-color: rgba(227, 190, 126, 0.26);
  color: #f4d7a1;
}

html[data-theme="dark"] .footer-nav a,
html[data-theme="dark"] .site-nav a,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .brand-mark {
  color: var(--text-soft);
}

html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .footer-nav a:hover,
html[data-theme="dark"] .brand-mark:hover,
html[data-theme="dark"] .theme-toggle:hover {
  color: #ffffff;
}

html[data-theme="dark"] .site-nav a.nav-cta,
html[data-theme="dark"] .site-nav-actions a.nav-cta {
  background: linear-gradient(135deg, #e9f1fb 0%, #b8c9de 100%);
  color: #07111d;
  text-shadow: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .site-nav a.nav-cta:hover,
html[data-theme="dark"] .site-nav-actions a.nav-cta:hover {
  color: #07111d;
  background: linear-gradient(135deg, #ffffff 0%, #d2deee 100%);
}

html[data-theme="dark"] .comparison-section {
  background:
    radial-gradient(circle at top left, rgba(213, 167, 90, 0.2), transparent 26%),
    linear-gradient(135deg, #07121e 0%, #0d1f33 100%);
}

html[data-theme="dark"] .comparison-section .section-kicker,
html[data-theme="dark"] .comparison-section .section-title,
html[data-theme="dark"] .comparison-section .section-description,
html[data-theme="dark"] .comparison-card h3,
html[data-theme="dark"] .comparison-card .comparison-summary,
html[data-theme="dark"] .comparison-card .comparison-label,
html[data-theme="dark"] .comparison-card li {
  color: #edf5ff;
}

html[data-theme="dark"] .pricing-tier strong,
html[data-theme="dark"] .pricing-tier span,
html[data-theme="dark"] .faq-item h3,
html[data-theme="dark"] .about-story-card h3,
html[data-theme="dark"] .about-highlight strong,
html[data-theme="dark"] .value-card h3,
html[data-theme="dark"] .capability-card h3,
html[data-theme="dark"] .section-title,
html[data-theme="dark"] .showcase-copy h3,
html[data-theme="dark"] .feature-group h3,
html[data-theme="dark"] .workflow-step h3,
html[data-theme="dark"] .system-card h3,
html[data-theme="dark"] .testimonial-card strong,
html[data-theme="dark"] .hero-meta-item strong,
html[data-theme="dark"] .trust-value,
html[data-theme="dark"] .floating-header,
html[data-theme="dark"] .floating-list,
html[data-theme="dark"] .final-cta h2,
html[data-theme="dark"] .support-card h3,
html[data-theme="dark"] .flow-step-card h3,
html[data-theme="dark"] .flow-step-number {
  color: var(--text);
}

html[data-theme="dark"] .final-cta {
  background:
    radial-gradient(circle at top, rgba(43, 199, 160, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.72), rgba(8, 17, 29, 0.96));
}

html[data-theme="dark"] .hero-meta-item,
html[data-theme="dark"] .pricing-tier,
html[data-theme="dark"] .system-group + .system-group,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .about-story-card,
html[data-theme="dark"] .about-highlight,
html[data-theme="dark"] .feature-group,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .workflow-step,
html[data-theme="dark"] .download-shell,
html[data-theme="dark"] .support-card,
html[data-theme="dark"] .flow-step-card,
html[data-theme="dark"] .pricing-note {
  border-color: var(--line);
}

html[data-theme="dark"] .panel-chip,
html[data-theme="dark"] .panel-chip-row,
html[data-theme="dark"] .hero-meta-item,
html[data-theme="dark"] .workflow-number {
  background: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .about-visual-label {
  background: rgba(8, 20, 34, 0.72);
  border-color: rgba(145, 170, 214, 0.18);
  color: #c3d7ff;
}

html[data-theme="dark"] .about-visual-glow {
  background: radial-gradient(circle, rgba(110, 143, 255, 0.2), transparent 70%);
}

html[data-theme="dark"] .mascot-head,
html[data-theme="dark"] .mascot-body,
html[data-theme="dark"] .mascot-brand-badge,
html[data-theme="dark"] .mascot-chest-badge,
html[data-theme="dark"] .mascot-top-panel,
html[data-theme="dark"] .mascot-mouth-panel,
html[data-theme="dark"] .mascot-body-panel {
  border-color: rgba(152, 177, 216, 0.22);
}

html[data-theme="dark"] .mascot-head {
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.9), rgba(214, 226, 243, 0.84)),
    linear-gradient(135deg, rgba(117, 150, 255, 0.18), rgba(94, 219, 180, 0.14));
}

html[data-theme="dark"] .mascot-brand-badge {
  background: rgba(15, 28, 46, 0.84);
}


html[data-theme="dark"] .system-card li::before {
  background: var(--accent);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-copy {
  max-width: 520px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--navy);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card,
.capability-card,
.testimonial-card,
.faq-item,
.comparison-card,
.pricing-card,
.hero-panel,
.trust-card,
.about-visual-card,
.about-copy,
.about-story-card,
.about-highlight,
.system-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.value-card:hover,
.capability-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.pricing-card:hover,
.trust-card:hover,
.about-visual-card:hover,
.about-copy:hover,
.about-story-card:hover,
.about-highlight:hover,
.system-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, 24px, 0) scale(1.04);
  }
}

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

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

@keyframes mascotSpark {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.12);
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .about-shell,
  .showcase-row,
  .showcase-row.reverse,
  .download-shell {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-media,
  .showcase-row.reverse .showcase-copy {
    order: initial;
  }

  .hero-panel-floating {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .value-grid,
  .about-story-grid,
  .about-highlight-board,
  .capability-grid,
  .feature-catalog,
  .workflow-board,
  .trust-grid,
  .faq-grid,
  .testimonial-grid,
  .pricing-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .nav-shell,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .footer-nav {
    justify-content: flex-start;
  }

  .hero-section {
    padding-top: 56px;
  }

  .hero-meta,
  .about-story-grid,
  .about-highlight-board,
  .comparison-grid,
  .pricing-grid,
  .pricing-support-grid,
  .payment-flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .hero-title {
    max-width: none;
    font-size: 2.55rem;
  }

  .value-grid,
  .about-story-grid,
  .about-highlight-board,
  .capability-grid,
  .feature-catalog,
  .workflow-board,
  .trust-grid,
  .faq-grid,
  .testimonial-grid,
  .pricing-support-grid,
  .payment-flow-grid {
    grid-template-columns: 1fr;
  }

  .eyebrow-pill,
  .btn,
  .panel-chip,
  .theme-switcher,
  .theme-toggle,
  .site-nav .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .theme-switcher {
    display: flex;
    padding: 0;
  }

  .theme-toggle {
    min-width: 100%;
  }

  .hero-actions,
  .download-actions {
    flex-direction: column;
  }

  .hero-meta-item,
  .trust-card,
  .about-visual-card,
  .about-copy,
  .about-story-card,
  .about-highlight,
  .value-card,
  .capability-card,
  .testimonial-card,
  .faq-item,
  .comparison-card,
  .pricing-card,
  .system-card,
  .hero-panel-main,
  .hero-panel-floating {
    border-radius: 22px;
  }

  .hero-panel-main {
    padding: 16px;
  }

  .hero-panel-floating {
    padding: 18px;
  }

  .about-visual-card,
  .about-copy {
    padding: 22px;
  }

  .metafast-mascot {
    width: 260px;
    height: 300px;
  }

  .web-assistant-top,
  .web-assistant-confirm-grid {
    grid-template-columns: 1fr;
  }

  .web-assistant-panel {
    width: min(318px, calc(100vw - 16px));
  }

  .web-assistant-panel.is-expanded {
    width: min(92vw, calc(100vw - 16px));
    max-height: calc(100vh - 24px);
  }

  .web-assistant-visual {
    display: none;
  }

  .web-assistant-summary p {
    font-size: 0.82rem;
  }

  .assistant-chip {
    font-size: 0.74rem;
  }

  .assistant-package-field {
    grid-column: auto;
  }

  .support-card,
  .flow-step-card {
    padding: 22px;
  }

  .payment-tag-row {
    gap: 8px;
  }

  .web-assistant-dock {
    right: 14px;
    bottom: 14px;
  }

  .web-assistant-launcher {
    padding: 11px 14px;
  }

  .web-assistant-launcher-copy small {
    display: none;
  }

  .assistant-send-btn {
    flex: 0 0 46px !important;
    width: 46px;
    min-width: 46px;
  }
}
