:root {
  --bg: #08111f;
  --bg-soft: #0d1728;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #aab7c7;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff5a5f;
  --accent-2: #ff8a65;
  --success: #66d19e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1200px;
  /* Sticky bar height (padding + logo); mobile drawer starts below this */
  --nav-sticky-height: 84px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 90, 95, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 138, 101, 0.14), transparent 26%),
    linear-gradient(180deg, #07101d 0%, #091322 42%, #060d18 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

.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;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6, 13, 24, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(255, 90, 95, 0.3);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.brand-mark::after {
  inset: 14px;
  border-radius: 5px;
  opacity: 0.65;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-group {
  position: relative;
  padding-bottom: 8px;
}

.nav-group-trigger {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-group-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  width: min(420px, calc(100vw - 40px));
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0e1930 0%, #0a1427 100%);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 55;
}

.nav-group:hover .nav-group-menu,
.nav-group:focus-within .nav-group-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-group-item {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 9px;
}

.nav-group-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav-group-item strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.nav-group-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 20px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  visibility: hidden;
}

.nav-mobile.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-mobile.is-open .nav-mobile-backdrop {
  opacity: 1;
}

.nav-mobile-sheet {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + var(--nav-sticky-height));
  right: 0;
  bottom: 0;
  width: min(100%, 340px);
  padding: 16px 20px 32px;
  background: linear-gradient(180deg, #0a1525 0%, #060d18 100%);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.nav-mobile.is-open .nav-mobile-sheet {
  transform: translateX(0);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
}

.nav-mobile-link {
  padding: 14px 4px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
}

.nav-mobile-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px;
  margin: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  color: #ffb3a3;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile-group-toggle:hover,
.nav-mobile-group-toggle:focus-visible {
  color: #fff;
  outline: none;
}

.nav-mobile-group-toggle:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.nav-mobile-group-chevron {
  flex-shrink: 0;
  font-size: 10px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease;
}

.nav-mobile-group.is-expanded .nav-mobile-group-chevron {
  transform: rotate(180deg);
}

.nav-mobile-group-panel {
  padding-top: 4px;
}

.nav-mobile-group-panel[hidden] {
  display: none !important;
}

.nav-mobile-sublink {
  border-bottom: 0;
  display: grid;
  gap: 3px;
  padding: 10px 4px;
}

.nav-mobile-sublink strong {
  font-size: 14px;
}

.nav-mobile-sublink span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.nav-mobile-link:hover {
  color: #fff;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.nav-mobile-btn {
  width: 100%;
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
  cursor: pointer;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 18px 40px rgba(255, 90, 95, 0.28);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero {
  padding: 72px 0 44px;
}

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

.kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffb29f, #ff6468);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #ff5a5f, #ff8a65);
  border-radius: 2px;
  opacity: 0.9;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #ffb29f 60%, #ff6468 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtagline {
  margin-top: 16px;
  font-size: 18px;
  color: #e6edf6;
  letter-spacing: -0.01em;
}

.hero-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
  margin: 22px 0 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 32px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #dfe7f1;
  font-size: 13px;
}

.example {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.example:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 90, 95, 0.16), transparent 28%);
  pointer-events: none;
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.mock-title {
  font-size: 15px;
  font-weight: 600;
}

.hero-prompt-input.is-invalid {
  outline: 2px solid rgba(255, 120, 100, 0.75);
  outline-offset: 1px;
  border-color: rgba(255, 120, 100, 0.45);
}

.hero-prompt-error {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #ffb8a8;
}

.mock-badge {
  font-size: 12px;
  color: #ffe0da;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 90, 95, 0.14);
  border: 1px solid rgba(255, 90, 95, 0.24);
}

.flow {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.24), rgba(255, 138, 101, 0.18));
  color: white;
  font-weight: 700;
}

.step-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.step-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

section {
  padding: 34px 0;
}

.section-header {
  margin-bottom: 24px;
  max-width: 720px;
}

.section-label {
  color: #ffb3a3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.24), rgba(255, 138, 101, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.copy-block > h3 {
  margin: 0 0 10px;
}

.copy-block > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

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

.contrast-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.contrast-card small {
  display: block;
  color: #ffb3a3;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 11px;
}

.contrast-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.contrast-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  font-size: 14px;
}

.platform {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.platform-main {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
}

.platform-main h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.platform-main p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: #e8eef6;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-row:first-child {
  border-top: 0;
}

.feature-row span {
  color: var(--success);
  font-weight: 700;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.mini-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.mini-card.highlight {
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.18), rgba(255, 138, 101, 0.12));
  border: 1px solid rgba(255, 90, 95, 0.4);
  box-shadow: 0 20px 50px rgba(255, 90, 95, 0.15);
}

.mini-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

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

.audience-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.audience-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.footer-cta {
  margin: 36px 0 56px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.16), rgba(255, 138, 101, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-cta h3 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.footer-cta p {
  margin: 0;
  color: #e6edf6;
  max-width: 700px;
  line-height: 1.6;
}

/* —— Site footer (global, data from site.json) —— */
.site-footer {
  flex-shrink: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.97), #03060c);
  color: var(--muted);
  font-size: 14px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 36px 40px;
  padding: 48px 0 40px;
}

@media (max-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }
}

.site-footer-heading {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d0dae6;
}

.site-footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-list li {
  margin: 0 0 10px;
}

.site-footer-list a {
  color: #c5d0de;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.15s ease;
}

.site-footer-list a:hover {
  color: #ff8a65;
}

.footer-company-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 12px;
  margin-bottom: 14px;
}

.footer-company-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.38), rgba(255, 138, 101, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-company-name {
  font-size: 15px;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-company-line {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 340px;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 36px;
}

.site-footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.simple-page {
  padding: 72px 0 120px;
}

.simple-page h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 16px;
}

.simple-page .back {
  margin-top: 28px;
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
}

.simple-page .back:hover {
  color: var(--text);
}

/* —— Page: AI (uses shared tokens from :root) —— */
.inpage-nav-wrap {
  border-bottom: 1px solid var(--line);
  background: rgba(6, 13, 24, 0.35);
}

.inpage-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding: 12px 0 14px;
  font-size: 13px;
  color: var(--muted);
}

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

.page-ai .hero-grid--split {
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
}

.page-ai .hero h1 {
  font-size: clamp(44px, 6vw, 68px);
  max-width: 700px;
}

.page-ai .hero-copy {
  max-width: 620px;
}

.hero-card--flush {
  max-width: none;
  margin: 0;
}

.page-ai .panel-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.page-ai .pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.page-ai .pipe-card {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 140px;
}

.page-ai .pipe-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.page-ai .pipe-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.page-ai .pipe-arrow {
  color: #ffb3a3;
  font-size: 22px;
  font-weight: 700;
}

.page-ai .mini-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.page-ai .mini-item {
  font-size: 12px;
  color: #dfe7f1;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-ai .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.page-ai .card--feature h3 {
  font-size: 20px;
}

.page-ai .card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.page-ai .centerpiece {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.16), rgba(255, 138, 101, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-ai .centerpiece h2 {
  margin-bottom: 12px;
}

.page-ai .centerpiece p {
  margin: 0;
  color: #e6edf6;
  font-size: 18px;
  line-height: 1.7;
}

/* —— Page: Platform —— */
.page-platform section:not(.hero) {
  padding: 38px 0;
}

.page-platform .hero-grid--split {
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
}

.page-platform .hero h1 {
  font-size: clamp(46px, 6vw, 72px);
  max-width: 760px;
}

.page-platform .hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
}

.page-platform-panel-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.page-platform .platform-flow {
  display: grid;
  gap: 12px;
}

.page-platform .flow-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.page-platform .flow-card {
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 92px;
}

.page-platform .flow-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.page-platform .flow-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.page-platform .flow-center {
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.16), rgba(255, 138, 101, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.page-platform .platform-highlight {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.16), rgba(255, 138, 101, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.page-platform .platform-highlight h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-platform .platform-highlight-lead {
  margin: 0;
  color: #e6edf6;
  max-width: 840px;
  line-height: 1.7;
  font-size: 17px;
}

.page-platform .platform-highlight-note {
  margin: 10px 0 0;
  color: #ffb3a3;
  font-size: 17px;
  line-height: 1.65;
  max-width: 840px;
}

.page-platform .platform-foundation-grid {
  margin-top: 18px;
}

.page-platform .platform-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-platform .platform-strip-card {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.page-platform .platform-strip-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.page-platform .platform-strip-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.page-platform .platform-layer-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
}

.page-platform .platform-layer-arrow {
  color: #ffb3a3;
}

.page-platform .platform-components-grid {
  align-items: start;
}

.page-platform .platform-component-group-label {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #ffb3a3;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 14px 0 -8px;
}

.page-platform .platform-components-grid > .platform-component-group-label:first-of-type {
  margin-top: 0;
}

.page-platform .card-expandable {
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-platform .card-expandable:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.page-platform .card-expand {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-platform .card-expandable.is-open .card-expand {
  display: block;
}

.page-platform .card-expand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.page-platform .card-expand p + p {
  margin-top: 10px;
}

.page-platform .platform-included-grid {
  margin-top: 18px;
}

.page-platform .platform-included-grid .card p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .platform,
  .grid-4,
  .grid-3,
  .contrast-grid,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .page-ai .hero-grid--split,
  .page-ai .pipeline,
  .page-ai .grid-2,
  .page-ai .grid-3 {
    grid-template-columns: 1fr;
  }

  .page-ai .pipeline {
    gap: 10px;
  }

  .page-ai .pipe-arrow {
    display: none;
  }

  .page-ai .centerpiece {
    grid-template-columns: 1fr;
  }

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

  .page-platform .platform-strip,
  .page-platform .flow-row {
    grid-template-columns: 1fr 1fr;
  }

  .page-partners .page-partners-grid-2,
  .page-partners .page-partners-compare,
  .page-partners .page-partners-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero-grid,
  .platform,
  .grid-4,
  .grid-3,
  .contrast-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .footer-cta h3 {
    font-size: 28px;
  }
  .page-ai h1 {
    font-size: 40px;
  }

  .page-platform .hero-grid--split,
  .page-platform .platform-strip,
  .page-platform .flow-row,
  .page-partners .page-partners-grid-2,
  .page-partners .page-partners-compare,
  .page-partners .page-partners-grid-4 {
    grid-template-columns: 1fr;
  }

  .page-platform h1 {
    font-size: 42px;
  }
}


/* —— Page: Partners —— */
.page-partners .hero {
  padding-top: 90px;
}

.page-partners .hero-copy {
  max-width: 760px;
  margin-bottom: 0;
}

.page-partners .partners-hero-cta {
  margin-top: 20px;
}

.page-partners-gap {
  margin-top: 20px;
}

.page-partners-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-partners-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.page-partners-highlight-card {
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.15), rgba(255, 138, 101, 0.12));
  border: 1px solid var(--line);
}

.page-partners-compare {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-partners-compare-box {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.page-partners-compare-box h3 {
  margin: 0 0 8px;
}

.page-partners-compare-box p {
  margin: 0;
}

.page-partners-compare-box.page-partners-highlight-card {
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.15), rgba(255, 138, 101, 0.12));
  border: 1px solid var(--line);
}


.page-partners-highlight-wrap {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.16), rgba(255, 138, 101, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.page-partners-highlight-wrap h2 {
  margin-bottom: 12px;
}

.page-partners-highlight-wrap p {
  margin: 0;
  color: #e6edf6;
}


/* —— Page: Pricing —— */
.page-pricing .hero-copy {
  max-width: 920px;
}

.page-pricing .pricing-switch-section {
  padding: 8px 0 16px;
}

.page-pricing .pricing-switch-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.page-pricing .currency-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.page-pricing .currency-switch-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  min-width: 40px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-pricing .currency-switch-btn:hover {
  color: var(--text);
}

.page-pricing .currency-switch-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.page-pricing .pricing-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.page-pricing .pricing-switch-tab {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-pricing .pricing-switch-tab:hover {
  color: var(--text);
}

.page-pricing .pricing-switch-tab.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.page-pricing .pricing-section-note {
  margin: 12px 0 0;
}

.page-pricing .platform-packages {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.page-pricing .platform-packages--4 {
  grid-template-columns: repeat(4, 1fr);
}

.page-pricing .platform-packages--3 {
  grid-template-columns: repeat(3, 1fr);
}

.page-pricing .platform-package-card.is-recommended {
  border-color: rgba(255, 90, 95, 0.5);
  background: linear-gradient(180deg, rgba(255, 90, 95, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 50px rgba(255, 90, 95, 0.1);
}

.page-pricing .platform-package-badge {
  color: #ffe8e4;
  background: rgba(255, 90, 95, 0.18);
  border-color: rgba(255, 90, 95, 0.38);
}

.page-pricing .platform-package-card .platform-feature-label {
  font-weight: 700;
  color: #e8edf5;
  font-size: 13px;
}

.page-pricing .platform-package-card .smartsuite-package-features li::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

@media (max-width: 1200px) {
  .page-pricing .platform-packages--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .page-pricing .platform-packages--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-pricing .platform-packages--4 {
    grid-template-columns: 1fr;
  }
}

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

.page-pricing .smartsuite-package-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.page-pricing .smartsuite-package-card.is-recommended {
  border-color: rgba(114, 90, 255, 0.55);
  background: linear-gradient(180deg, rgba(114, 90, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 50px rgba(114, 90, 255, 0.12);
}

.page-pricing .smartsuite-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.page-pricing .smartsuite-package-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #e8e0ff;
  background: rgba(114, 90, 255, 0.22);
  border: 1px solid rgba(114, 90, 255, 0.35);
}

.page-pricing .smartsuite-package-rec {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b8ff;
}

.page-pricing .smartsuite-package-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.page-pricing .smartsuite-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.page-pricing .smartsuite-price-amount {
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-pricing .smartsuite-price-amount--contact {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  line-height: 1.35;
}

.page-pricing .smartsuite-price-unit {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.page-pricing .smartsuite-package-subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: #c8d4e4;
  font-weight: 600;
}

.page-pricing .smartsuite-package-features {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.page-pricing .smartsuite-package-features li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.page-pricing .smartsuite-package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b7cff, #5b4ad6);
}

.page-pricing .smartsuite-package-cta {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

@media (max-width: 1080px) {
  .page-pricing .smartsuite-packages {
    grid-template-columns: 1fr;
  }
}

.page-pricing .pricing-card {
  overflow: hidden;
}

.page-pricing .pricing-card-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-pricing .pricing-card-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
}

.page-pricing .pricing-badge,
.page-pricing .pricing-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 95, 0.28);
  background: rgba(255, 90, 95, 0.12);
  color: #ffd7d8;
  font-size: 12px;
  font-weight: 700;
}

.page-pricing .pricing-pill {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #d8e2f0;
}

.page-pricing .pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-pricing .pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.page-pricing .pricing-table th,
.page-pricing .pricing-table td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
  white-space: nowrap;
}

.page-pricing .pricing-table thead th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  text-align: left;
}

.page-pricing .pricing-table tbody th {
  font-weight: 700;
  white-space: normal;
}

.page-pricing .pricing-table tbody tr:last-child td,
.page-pricing .pricing-table tbody tr:last-child th {
  border-bottom: 0;
}


.page-pricing .pricing-table thead th:first-child,
.page-pricing .pricing-table tbody th:first-child,
.page-pricing .pricing-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #0b1526;
}

.page-pricing .pricing-table thead th:first-child {
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
}

.page-pricing .pricing-cta {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 90, 95, 0.6);
  color: #ffd7d8;
  font-weight: 800;
  font-size: 13px;
}

.page-pricing .pricing-cta.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}

.page-pricing .page-pricing-split {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.page-pricing .pricing-card-body {
  padding: 14px 16px;
}

.page-pricing .pricing-card-body p {
  margin: 0 0 10px;
}

.page-pricing .pricing-card-body p:last-child {
  margin-bottom: 0;
}


.page-pricing .pricing-info-card .pricing-card-head {
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.page-pricing .pricing-info-card .pricing-card-title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.page-pricing .pricing-info-card .pricing-card-body {
  padding: 0;
}

.page-pricing .pricing-info-card .pricing-card-body p,
.page-pricing .pricing-info-card .pricing-card-body li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.page-pricing .pricing-info-card .pricing-card-body p {
  margin: 0 0 14px;
}

.page-pricing .pricing-info-card .pricing-card-body p:last-child {
  margin-bottom: 0;
}

.page-pricing .pricing-info-card .pricing-card-body ul {
  margin: 0;
  padding-left: 22px;
}

.page-pricing .pricing-info-card .pricing-card-body li {
  margin: 8px 0;
}

.page-pricing #principles,
.page-pricing #addons {
  margin-top: 14px;
}

.page-pricing .pricing-compact-list-card .pricing-card-title {
  margin-bottom: 8px;
}

.page-pricing .pricing-compact-list-card .pricing-card-body ul {
  column-count: 2;
  column-gap: 28px;
  padding-left: 18px;
}

.page-pricing .pricing-compact-list-card .pricing-card-body li {
  break-inside: avoid;
  margin: 6px 0;
}

.page-pricing .pricing-card-body ul {
  margin: 0;
  padding-left: 20px;
}

.page-pricing .pricing-card-body li {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #d7deea;
}

@media (max-width: 1080px) {
  .page-pricing .page-pricing-split {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 720px) {
  .page-pricing .pricing-table {
    min-width: 680px;
  }

  .page-pricing .pricing-table th,
  .page-pricing .pricing-table td {
    font-size: 13px;
    padding: 10px 8px;
  }

  .page-pricing .pricing-compact-list-card .pricing-card-body ul {
    column-count: 1;
  }
}

/* —— Page: About —— */
.page-about .hero {
  padding-top: 90px;
}

.page-about .hero-copy {
  max-width: 760px;
  margin-bottom: 0;
}

.page-about section:not(.hero) {
  padding: 28px 0;
}

.page-about-copy {
  max-width: 860px;
  display: grid;
  gap: 12px;
}

.page-about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.page-about-leadership {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-about-person {
  text-align: left;
}

.page-about-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffe3de;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.22), rgba(255, 138, 101, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-about-person h3 {
  margin-bottom: 8px;
}

.page-about-person p {
  margin: 0;
}

@media (max-width: 1080px) {
  .page-about-leadership {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .page-about .hero {
    padding-top: 56px;
  }

  .page-about-leadership {
    grid-template-columns: 1fr;
  }
}

/* —— Page: Onedb Smartsuite —— */
.page-smartsuite .hero {
  padding-top: 90px;
}

.page-smartsuite .hero-copy {
  max-width: 860px;
}

.page-smartsuite section:not(.hero) {
  padding: 32px 0;
}

.page-smartsuite-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: start;
}

.page-smartsuite-visual {
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.14), rgba(255, 138, 101, 0.1));
}

.page-smartsuite-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-smartsuite-band {
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(114, 90, 255, 0.4), rgba(91, 74, 224, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  justify-items: start;
}

.page-smartsuite-band-label {
  font-size: 13px;
  color: #efeaff;
  font-weight: 700;
}

.page-smartsuite-band-title {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.page-smartsuite-feature {
  margin-bottom: 20px;
}

.page-smartsuite-deep-text {
  padding: 4px 0 0;
}

.page-smartsuite-deep-text h3 {
  margin: 0 0 10px;
}

.page-smartsuite-deep-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.page-smartsuite-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-smartsuite-deep-row {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
  margin-bottom: 10px;
}

.page-smartsuite-modules {
  margin-top: 20px;
}

.page-smartsuite-module-list {
  column-count: 2;
  column-gap: 28px;
}

.page-smartsuite-module-list p {
  margin: 0;
  break-inside: avoid;
  padding-bottom: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.page-smartsuite-module-list strong {
  color: var(--text);
}

@media (max-width: 1080px) {
  .page-smartsuite-split,
  .page-smartsuite-capabilities,
  .page-smartsuite-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-smartsuite-module-list {
    column-count: 1;
  }
}

@media (max-width: 720px) {
  .page-smartsuite .hero {
    padding-top: 56px;
  }
}

/* —— Page: Resources —— */
.page-resources .hero-copy {
  max-width: 760px;
}

.page-resources-grid .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-resources-grid .back {
  margin-top: auto;
}

/* —— Page: FAQ —— */
.page-faq .hero-copy {
  max-width: 820px;
}

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

.faq-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 138, 101, 0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.1), rgba(255, 138, 101, 0.08));
}

.faq-search-input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(5, 10, 18, 0.45);
  color: var(--text);
  padding: 12px 14px;
  font-size: 15px;
}

.faq-search-input::placeholder {
  color: var(--muted);
}

.faq-search-input:focus {
  outline: 2px solid rgba(255, 138, 101, 0.6);
  outline-offset: 1px;
}

.faq-search-clear {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #ffb3a3;
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 14px 18px 16px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.page-faq mark {
  background: rgba(255, 138, 101, 0.32);
  color: #fff3ee;
  padding: 0 2px;
  border-radius: 4px;
}

/* —— Page: Careers —— */
.page-careers .hero-copy {
  max-width: 820px;
}

/* —— Page: Terms —— */
.page-terms .hero-copy {
  max-width: 820px;
}

.page-terms-main {
  padding-bottom: 56px;
}

.page-terms-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

@media (min-width: 960px) {
  .page-terms-columns {
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    gap: 36px;
  }
}

.page-terms-toc {
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + var(--nav-sticky-height) + 14px);
  z-index: 1;
}

@media (max-width: 959px) {
  .page-terms-toc {
    position: static;
  }
}

.page-terms-toc-card {
  padding: 18px 20px 20px;
}

.page-terms-toc-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 600;
}

.page-terms-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.page-terms-toc-list li {
  margin: 8px 0;
  padding-left: 0;
}

.page-terms-toc-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.page-terms-toc-list a:hover {
  color: #ff8a65;
}

.page-terms-article {
  scroll-margin-top: calc(env(safe-area-inset-top, 0px) + var(--nav-sticky-height) + 12px);
}

.page-terms-h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 0 0 16px;
  font-weight: 650;
  color: var(--text);
}

.page-terms-article + .page-terms-article {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.page-terms-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.page-terms-body p:last-child {
  margin-bottom: 0;
}

.page-terms-body strong {
  color: #e8edf5;
}

.page-careers-intro-block h2 {
  margin: 0 0 12px;
}

.page-careers-copy {
  display: grid;
  gap: 10px;
}

.page-careers-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.page-careers-intro-block h3 {
  margin: 18px 0 10px;
}

.page-careers-intro-block > ul {
  margin: 0;
  padding-left: 20px;
}

.page-careers-intro-block > ul > li {
  margin: 8px 0;
  color: #d7deea;
  line-height: 1.6;
}

.page-careers-highlight {
  margin-top: 26px;
  padding: 22px 22px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 90, 95, 0.22);
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.12), rgba(255, 138, 101, 0.08));
}

.page-careers-highlight h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.page-careers-highlight > p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.page-careers-highlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 18px;
}

.page-careers-highlight-list li {
  margin: 0;
  padding-left: 14px;
  position: relative;
  color: #e8edf5;
  font-size: 14px;
  line-height: 1.5;
}

.page-careers-highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 138, 101, 0.85);
}

@media (max-width: 900px) {
  .page-careers-highlight-list {
    grid-template-columns: 1fr;
  }
}

.page-careers-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 1080px) {
  .page-careers-benefits {
    grid-template-columns: 1fr;
  }
}

.page-careers-inquiry-cta h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.page-careers-inquiry-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

/* —— Inquiry form (Contact / Support / Careers inquiry) —— */
.page-inquiry .hero-copy {
  max-width: 720px;
}

.page-inquiry-section {
  padding-bottom: 56px;
}

.page-inquiry-inner {
  max-width: 640px;
}

.inquiry-form {
  padding: 26px 24px 28px;
}

.inquiry-form-header {
  margin-bottom: 22px;
}

.inquiry-form-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 650;
  color: var(--text);
}

.inquiry-form-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.inquiry-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

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

@media (max-width: 640px) {
  .inquiry-form-fields {
    grid-template-columns: 1fr;
  }
}

.inquiry-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.inquiry-req {
  color: #ff8a65;
}

.inquiry-input,
.inquiry-textarea,
.inquiry-select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(5, 10, 18, 0.45);
  color: var(--text);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
}

.inquiry-textarea {
  resize: vertical;
  min-height: 140px;
}

.inquiry-input:focus,
.inquiry-textarea:focus,
.inquiry-select:focus {
  outline: 2px solid rgba(255, 138, 101, 0.6);
  outline-offset: 1px;
}

.inquiry-select {
  cursor: pointer;
}

.inquiry-form-actions {
  margin-top: 22px;
}

.inquiry-form-feedback {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: #e8edf5;
  line-height: 1.5;
  outline: none;
}

.inquiry-form-feedback.is-success {
  border-color: rgba(120, 200, 160, 0.45);
  background: rgba(80, 160, 120, 0.12);
  color: #d8f0e4;
}

.inquiry-form-feedback.is-error {
  border-color: rgba(255, 120, 100, 0.5);
  background: rgba(255, 90, 95, 0.1);
  color: #ffe8e4;
}

.inquiry-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.faq-empty {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

/* Home storyboard animation */
.section-storyboard .storyboard {
  padding: 20px;
}

.section-storyboard .storyboard-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a1322;
  height: clamp(330px, 40vw, 490px);
  width: 100%;
}

.section-storyboard .storyboard-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.42s ease;
}

.section-storyboard .storyboard-image-button {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
  position: absolute;
  inset: 0;
}

.section-storyboard .storyboard-image-button:focus-visible {
  outline: 2px solid rgba(255, 90, 95, 0.7);
  outline-offset: 4px;
  border-radius: 12px;
}

.section-storyboard .storyboard-meta {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: min(680px, 95%);
  background: rgba(10, 18, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(5px);
}

.section-storyboard .storyboard-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 19, 34, 0.05) 0%,
    rgba(10, 19, 34, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.section-storyboard .storyboard-step {
  display: inline-block;
  margin-bottom: 6px;
  color: #ffb3a3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-storyboard .storyboard-meta h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.section-storyboard .storyboard-meta p {
  margin: 0;
  color: #d5e0ef;
  font-size: 14px;
  line-height: 1.5;
}

.section-storyboard .storyboard-meta {
  transition: opacity 0.42s ease;
}

.section-storyboard .storyboard.is-fading-out .storyboard-image,
.section-storyboard .storyboard.is-fading-out .storyboard-meta {
  opacity: 0.24;
}

.section-storyboard .storyboard-controls {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-storyboard .storyboard-dot {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.section-storyboard .storyboard-dot.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: scaleX(1.15);
}

.section-storyboard .storyboard-note {
  margin: 10px 0 2px;
  text-align: center;
  font-size: 12px;
  color: #9fb0c6;
}

.section-storyboard .storyboard.is-intro .storyboard-image-button {
  opacity: 0;
  pointer-events: none;
}

.section-storyboard .storyboard.is-intro .storyboard-meta {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  padding: 0;
}

.section-storyboard .storyboard.is-intro .storyboard-meta h3 {
  font-size: clamp(22px, 3.2vw, 32px);
}

.section-storyboard .storyboard-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.section-storyboard .storyboard-modal[hidden] {
  display: none !important;
}

.section-storyboard .storyboard-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8edf5;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.section-storyboard .storyboard-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-storyboard .storyboard-modal-image {
  max-width: 96vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.section-storyboard .storyboard-modal-meta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: min(980px, 92vw);
  padding: 14px 16px;
  background: rgba(10, 18, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #e8edf5;
  backdrop-filter: blur(6px);
}

.section-storyboard .storyboard-modal-meta .storyboard-step {
  display: inline-block;
  margin-bottom: 6px;
}

.section-storyboard .storyboard-modal-meta h3 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.section-storyboard .storyboard-modal-meta p {
  margin: 0;
  color: #d5e0ef;
  line-height: 1.5;
  font-size: 14px;
}

@media (max-width: 820px) {
  .section-storyboard .storyboard-meta {
    position: static;
    max-width: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    backdrop-filter: none;
  }
}
