:root {
  --bg: #030303;
  --panel: #070708;
  --panel-2: #0d0d10;
  --text: #f5f5f5;
  --muted: #9b9ba3;
  --line: rgba(255, 255, 255, 0.11);
  --orange: #ff8a1f;
  --orange-soft: #c66a1e;
  --orange-dim: rgba(255, 138, 31, 0.16);
  --green: #ff8a1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  pointer-events: none;
}

.nav-pill {
  display: grid;
  width: min(100% - 32px, 980px);
  height: 42px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 10px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 8px 0 12px;
  background: rgba(8, 8, 10, 0.72);
  color: white;
  pointer-events: auto;
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.logo-row,
.hero-actions,
.billing-toggle {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.brand-dot {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 138, 31, 0.1);
}

.brand-dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, opacity 180ms ease, transform 140ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.96);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:active {
  transform: translateY(1px);
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255, 138, 31, 0.18);
}

.header-actions {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.language-menu {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  min-width: 68px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.language-toggle-label {
  line-height: 1;
}

.language-toggle-arrow {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.language-menu.open .language-toggle-arrow {
  transform: rotate(180deg);
}

.language-toggle:hover,
.language-menu.open .language-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.language-toggle:hover .language-toggle-arrow,
.language-menu.open .language-toggle-arrow {
  color: rgba(255, 255, 255, 0.7);
}

.language-toggle:active {
  transform: translateY(1px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 132px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(10, 10, 12, 0.96);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 220ms;
}

.language-menu.open .language-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.language-option {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  padding: 0 10px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 140ms ease;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.language-option:active {
  transform: translateY(1px);
}

.ghost-link {
  color: rgba(255, 255, 255, 0.82);
}

.signup-button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  background: white;
  color: black;
}

.hero {
  position: relative;
  display: grid;
  place-items: start center;
  overflow: hidden;
  padding: 118px 24px 0;
  text-align: center;
}

.starfield {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.3px),
    radial-gradient(circle, rgba(255, 138, 31, 0.38) 0 1px, transparent 1.4px);
  background-position:
    12px 18px,
    80px 120px;
  background-size:
    210px 220px,
    340px 360px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, black 0 70%, transparent);
}

.aurora {
  position: absolute;
  inset: 220px -12vw auto;
  height: 780px;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(255, 138, 31, 0.26), transparent 58%),
    radial-gradient(ellipse at 48% 76%, rgba(255, 138, 31, 0.18), transparent 64%);
  filter: blur(62px);
  opacity: 0.38;
  pointer-events: none;
}

.announcement {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.announcement::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 34%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 28%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.03) 72%,
    transparent 100%
  );
  transform: skewX(-24deg);
  pointer-events: none;
}

.pill-icon,
.pill-arrow,
.download-section-icon,
.download-card-kicker-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.pill-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 183, 94, 0.95);
}

.pill-arrow {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.42);
}

.announcement-copy {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 24px auto 0;
  background: linear-gradient(135deg, #fff 0 32%, rgba(255, 255, 255, 0.42) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(44px, 5.45vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  margin: 24px auto 0;
  color: rgb(156, 163, 175);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.48;
}

.hero-actions {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: 36px;
}

.primary-action {
  display: inline-flex;
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  background: white;
  color: black;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 22px 60px rgba(255, 255, 255, 0.1);
}

.secondary-action {
  display: inline-flex;
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.hero-image-shell {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100vw - 48px));
  margin-top: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
  box-shadow:
    0 -60px 180px rgba(255, 138, 31, 0.1),
    0 80px 170px rgba(0, 0, 0, 0.7);
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, var(--bg) 30%, transparent);
  pointer-events: none;
}

.hero-image-shell img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
}

.border-beam {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
}

.border-beam::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-soft), transparent);
  offset-path: rect(0 auto auto 0 round 14px);
  animation: borderBeam 7s linear infinite;
}

.trusted {
  padding: 56px 20px 0;
  text-align: center;
}

.trusted p {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px clamp(26px, 4vw, 46px);
  margin-top: 24px;
}

.logo-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 800;
}

.plans-section {
  position: relative;
  overflow: hidden;
  padding: 0 20px 140px;
}

.arc-line {
  width: min(1440px, 190vw);
  height: 800px;
  margin: -300px auto -360px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 0 0;
  opacity: 0.8;
  box-shadow: 0 -120px 220px rgba(255, 138, 31, 0.12);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.5;
}

.billing-toggle {
  width: max-content;
  margin: 28px auto 32px;
  gap: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.billing-toggle::before {
  content: "";
  width: 28px;
  height: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.billing-toggle b {
  border-radius: 999px;
  padding: 5px 10px;
  background: white;
  color: black;
  font-size: 10px;
}

.pricing-grid {
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.pricing-card {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 24px 16px 20px;
  background: rgba(3, 3, 3, 0.76);
}

.pricing-card.featured {
  border: 2px solid rgba(255, 138, 31, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 138, 31, 0.2), 0 0 58px rgba(255, 138, 31, 0.08);
}

.pricing-card h3 {
  margin: 0 0 6px;
}

.pricing-card p {
  min-height: 42px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-card strong {
  display: block;
  margin: 32px 0 22px;
  font-size: 40px;
}

.pricing-card strong span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.pricing-card a {
  display: grid;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: white;
  color: black;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.pricing-card a::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -22px;
  width: 18px;
  height: 90px;
  background: rgba(0, 0, 0, 0.12);
  transform: rotate(18deg);
  transition: transform 900ms ease;
}

.pricing-card a:hover::after {
  transform: translateX(-360px) rotate(18deg);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.pricing-card li::before {
  content: "✓";
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--green);
  color: black;
  font-size: 11px;
  font-weight: 900;
}

.feature-cloud {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 80px 20px 120px;
}

.icon-matrix {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 0 auto;
  mask-image: linear-gradient(180deg, black 0 58%, transparent);
}

.icon-matrix span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.42);
  font-size: 28px;
}

.icon-matrix span:nth-child(4n) {
  color: rgba(255, 138, 31, 0.72);
  background: rgba(255, 138, 31, 0.06);
}

.icon-matrix span:nth-child(5n) {
  color: rgba(255, 138, 31, 0.58);
  background: rgba(255, 138, 31, 0.045);
}

.cloud-cta {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin: -150px auto 0;
  text-align: center;
}

.mark-large {
  display: grid;
  width: 112px;
  height: 88px;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(8, 8, 9, 0.76);
  color: white;
  font-size: 54px;
  font-weight: 900;
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.08);
}

.cloud-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
}

.cloud-cta p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.75);
}

.cloud-cta a {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 17px;
  font-size: 12px;
  font-weight: 800;
}

.faq-section {
  display: grid;
  width: min(1050px, calc(100% - 40px));
  grid-template-columns: 0.55fr 1fr;
  gap: 60px;
  margin: 0 auto;
  padding: 40px 0 130px;
}

.faq-section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.faq-section > div > p {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.faq-item {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: white;
  cursor: pointer;
  text-align: left;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item span {
  font-weight: 800;
}

.faq-item b {
  transition: transform 180ms ease;
}

.faq-item p {
  grid-column: 1 / -1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  opacity: 0;
  transition: max-height 240ms ease, opacity 200ms ease, margin 200ms ease;
}

.faq-item.open p {
  max-height: 140px;
  margin-top: 2px;
  opacity: 1;
}

.faq-item.open b {
  transform: rotate(45deg);
}

.site-footer {
  display: grid;
  width: min(1220px, calc(100% - 40px));
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin: 0 auto;
  padding: 120px 0 70px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer p {
  margin: 16px 0 0;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: 14px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-footer small {
  grid-column: 1 / -1;
  justify-self: end;
}

.tiptap-section {
  background: #f7f7f8;
  color: #111116;
  padding: 112px 24px;
}

.rounded-top {
  margin-top: 120px;
  border-radius: 44px 44px 0 0;
}

.tiptap-heading {
  width: min(800px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.tiptap-heading p {
  margin: 0 0 10px;
  color: #7d7400;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tiptap-heading h2 {
  margin: 0;
  color: #111116;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.tiptap-heading span {
  display: block;
  width: min(640px, 100%);
  margin: 18px auto 0;
  color: #666674;
  font-size: 16px;
  line-height: 1.65;
}

.feature-stats {
  display: grid;
  width: min(640px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 54px;
  text-align: center;
}

.feature-stats strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.feature-stats span {
  display: block;
  margin-top: 8px;
  color: #747480;
  font-size: 13px;
  font-weight: 800;
}

.extension-wall {
  display: grid;
  width: min(1240px, 100%);
  grid-template-columns: repeat(16, minmax(42px, 1fr));
  gap: 12px;
  margin: 0 auto 115px;
  perspective: 900px;
  transform: rotateX(54deg) translateY(-22px);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, black 0 72%, transparent);
}

.extension-wall span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(17, 17, 22, 0.09);
  border-radius: 9px;
  background: white;
  color: #111116;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(17, 17, 22, 0.08);
}

.extension-wall span:nth-child(3n) {
  background: #111116;
  color: var(--orange);
}

.extension-wall span:nth-child(5n) {
  transform: translateY(24px);
}

.extension-wall span:nth-child(7n) {
  transform: translateY(-18px);
}

.split-row {
  display: grid;
  width: min(1040px, 100%);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin: 0 auto 86px;
}

.split-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-row h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.split-row p {
  margin: 18px 0;
  color: #696978;
  line-height: 1.65;
}

.split-row a,
.docs-card a {
  color: #111116;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.image-card {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 14px;
  background: white;
  box-shadow: 0 28px 70px rgba(17, 17, 22, 0.12);
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.mini-grid-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-height: 360px;
  align-content: center;
  justify-content: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 45% 75%, rgba(255, 138, 31, 0.24), transparent 42%),
    #ececf1;
  padding: 58px;
}

.mini-grid-visual span {
  aspect-ratio: 1;
  border-radius: 12px;
  background: #111116;
  box-shadow: 0 16px 34px rgba(17, 17, 22, 0.15);
}

.code-visual,
.code-preview,
.dark-preview {
  min-height: 330px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 42% 88%, rgba(255, 138, 31, 0.18), transparent 48%),
    #09090b;
  box-shadow: 0 28px 70px rgba(17, 17, 22, 0.16);
}

.code-visual,
.code-preview {
  display: grid;
  align-content: center;
  padding: 34px;
}

.code-visual pre,
.code-preview pre {
  margin: 0;
  color: #f6f6e6;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 16px;
  line-height: 1.8;
}

.front-end-block {
  margin-top: 70px;
  padding-top: 30px;
}

.showcase-grid {
  display: grid;
  width: min(900px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 auto 96px;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 14px;
  background: white;
  box-shadow: 0 22px 56px rgba(17, 17, 22, 0.1);
}

.showcase-card img {
  display: block;
  width: 100%;
  height: auto;
}

.docs-card {
  display: grid;
  width: min(1040px, 100%);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #e2e2e8;
  border-radius: 12px;
  background: white;
  padding: 28px;
}

.docs-card h3 {
  margin: 0;
  font-size: 28px;
}

.docs-card p {
  color: #6b6b78;
  line-height: 1.6;
}

.docs-card img {
  width: 100%;
  border-radius: 10px;
  opacity: 0.9;
}

.tiptap-faq {
  background: #f7f7f8;
  color: #111116;
  margin: 0;
  width: 100%;
  max-width: none;
  padding: 70px max(24px, calc((100vw - 1040px) / 2)) 120px;
}

.tiptap-faq h2 {
  color: #111116;
  line-height: 0.95;
}

.tiptap-faq h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.tiptap-faq .faq-item {
  border-top-color: #dcdcE4;
  color: #111116;
}

.tiptap-faq .faq-item:last-child {
  border-bottom-color: #dcdcE4;
}

.tiptap-faq .faq-item p {
  color: #676775;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 24px 170px;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 138, 31, 0.28), transparent 34%),
    #050506;
  text-align: center;
}

.cta-logo-wrap {
  display: grid;
  width: 102px;
  height: 102px;
  place-items: center;
  margin: 0 auto 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 50px rgba(255, 138, 31, 0.14);
}

.cta-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
}

.final-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 6vw, 74px);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.final-cta h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.final-cta a {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  margin-top: 26px;
  border-radius: 8px;
  padding: 0 18px;
  background: white;
  color: black;
  font-size: 13px;
  font-weight: 900;
}

.download-page {
  padding: 112px 24px 120px;
}

.download-hero {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 90%, rgba(255, 138, 31, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(7, 7, 8, 0.92);
  padding: 88px 28px 64px;
  text-align: center;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.download-eyebrow {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-version-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.download-version-pill strong {
  color: white;
  font-weight: 800;
}

.download-copy {
  max-width: 760px;
}

.download-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.download-hint {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.download-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.download-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 229, 196, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card-kicker-icon {
  width: 15px;
  height: 15px;
  color: rgba(255, 183, 94, 0.95);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.download-links {
  width: min(1120px, 100%);
  margin: 56px auto 0;
}

.download-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 0 4px;
}

.download-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.download-section-icon {
  width: 18px;
  height: 18px;
  margin-top: -1px;
  color: rgba(255, 183, 94, 0.95);
}

.download-section-label strong {
  display: block;
  color: white;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.download-section-label span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.25;
}

.download-section-link {
  display: inline-flex;
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

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

.download-card {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  padding: 24px;
}

.download-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.download-card-meta {
  min-height: 44px;
  font-size: 13px;
}

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

.download-link {
  display: inline-flex;
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0 16px;
  background: white;
  color: black;
  font-size: 13px;
  font-weight: 900;
}

.download-link.is-disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
}

.download-link.is-disabled::before,
.download-link.is-disabled::after {
  opacity: 0;
  animation: none;
}

.primary-action::before,
.secondary-action::before,
.signup-button::before,
.download-link::before,
.download-section-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    45deg,
    #6f6dff,
    #a96dff,
    #ff7b4d,
    #d9ff63,
    #5dffd6,
    #6f6dff,
    #ff7b4d,
    #6f6dff
  );
  background-size: 400% 100%;
  background-position: 0 50%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 240ms ease;
  z-index: -1;
}

.primary-action::after,
.secondary-action::after,
.signup-button::after,
.download-link::after,
.download-section-link::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(
    45deg,
    rgba(111, 109, 255, 0.96),
    rgba(169, 109, 255, 0.94),
    rgba(255, 123, 77, 0.96),
    rgba(217, 255, 99, 0.9),
    rgba(93, 255, 214, 0.96),
    rgba(111, 109, 255, 0.96),
    rgba(255, 123, 77, 0.96),
    rgba(111, 109, 255, 0.96)
  );
  background-size: 400% 100%;
  background-position: 0 50%;
  opacity: 0.18;
  filter: blur(16px);
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 240ms ease, filter 240ms ease, transform 240ms ease;
  z-index: -2;
}

.download-card h3 {
  margin: 12px 0 10px;
  color: white;
  letter-spacing: -0.03em;
}

.download-card-meta,
.download-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.85, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.primary-action,
.signup-button,
.language-toggle,
.language-option,
.secondary-action,
.pricing-card,
.cloud-cta a,
.announcement,
.image-card,
.showcase-card,
.docs-card img,
.download-card,
.download-section-link,
.download-link,
.text-link {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.primary-action:hover,
.signup-button:hover,
.language-toggle:hover,
.secondary-action:hover,
.pricing-card:hover,
.cloud-cta a:hover,
.announcement:hover,
.image-card:hover,
.showcase-card:hover,
.docs-card img:hover,
.download-card:hover,
.download-section-link:hover,
.download-link:hover,
.text-link:hover {
  transform: none;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.primary-action:hover,
.secondary-action:hover,
.signup-button:hover,
.download-link:hover,
.download-section-link:hover {
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 10px 28px rgba(0, 0, 0, 0.28);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

.primary-action:hover::before,
.secondary-action:hover::before,
.signup-button:hover::before,
.download-link:hover::before,
.download-section-link:hover::before {
  opacity: 0.98;
}

.primary-action:hover::after,
.secondary-action:hover::after,
.signup-button:hover::after,
.download-link:hover::after,
.download-section-link:hover::after {
  opacity: 0.95;
  filter: blur(24px);
  transform: translateY(10px) scale(1);
}

.primary-action:hover,
.download-link:hover,
.signup-button:hover {
  background: rgba(18, 18, 20, 0.96);
  color: white;
}

.secondary-action:hover,
.download-section-link:hover {
  background: rgba(18, 18, 20, 0.88);
  color: white;
}

@media (prefers-reduced-motion: no-preference) {
  .announcement::after {
    animation: announcementSweep 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .primary-action::before,
  .secondary-action::before,
  .signup-button::before,
  .download-link::before,
  .download-section-link::before,
  .primary-action::after,
  .secondary-action::after,
  .signup-button::after,
  .download-link::after,
  .download-section-link::after {
    animation: steam 20s linear infinite;
  }

  .primary-action:hover::after,
  .secondary-action:hover::after,
  .signup-button:hover::after,
  .download-link:hover::after,
  .download-section-link:hover::after {
    animation: steam 9s linear infinite, neonGlowPulse 1.8s ease-in-out infinite alternate;
  }

  .aurora {
    animation: auroraPulse 9s ease-in-out infinite alternate;
  }

  .starfield {
    animation: starSlide 28s linear infinite;
  }

  .hero-image-shell {
    animation: previewRise 900ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
  }

  .icon-matrix span {
    animation: iconFloat 5s ease-in-out infinite;
  }

  .icon-matrix span:nth-child(2n) {
    animation-delay: -0.8s;
  }

  .icon-matrix span:nth-child(3n) {
    animation-delay: -1.6s;
  }
}

@keyframes auroraPulse {
  from {
    transform: translateY(0) scaleX(1);
    opacity: 0.72;
  }
  to {
    transform: translateY(24px) scaleX(1.06);
    opacity: 1;
  }
}

@keyframes neonGlowPulse {
  from {
    filter: blur(20px);
    transform: translateY(8px) scale(0.97);
  }
  to {
    filter: blur(28px);
    transform: translateY(11px) scale(1.02);
  }
}

@keyframes steam {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 400% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes announcementSweep {
  0%,
  18% {
    transform: translateX(0) skewX(-24deg);
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  55% {
    transform: translateX(460%) skewX(-24deg);
    opacity: 0.88;
  }
  100% {
    transform: translateX(460%) skewX(-24deg);
    opacity: 0;
  }
}

@keyframes starSlide {
  to {
    background-position: 222px 238px, 420px 480px;
  }
}

@keyframes previewRise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes borderBeam {
  to {
    offset-distance: 100%;
  }
}

@media (max-width: 920px) {
  .nav-links,
  .ghost-link {
    display: none;
  }

  .nav-pill {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-image-shell {
    margin-top: 90px;
  }

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

  .icon-matrix {
    grid-template-columns: repeat(6, 1fr);
  }

  .faq-section,
  .site-footer,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .download-section-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-stats,
  .split-row,
  .split-row.reverse,
  .showcase-grid,
  .docs-card {
    grid-template-columns: 1fr;
  }

  .extension-wall {
    grid-template-columns: repeat(8, minmax(34px, 1fr));
    gap: 8px;
    margin-bottom: 72px;
  }

  .tiptap-faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .nav-pill {
    width: calc(100% - 18px);
  }

  .download-page {
    padding-inline: 18px;
  }

  .signup-button {
    display: none;
  }

  .hero {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.8vw, 56px);
  }

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

  .logo-row {
    flex-wrap: wrap;
  }

  .tiptap-section {
    padding-inline: 18px;
  }

  .extension-wall {
    grid-template-columns: repeat(6, minmax(34px, 1fr));
    transform: rotateX(48deg) translateY(-12px);
  }

  .feature-stats {
    grid-template-columns: 1fr;
  }

  .mini-grid-visual {
    padding: 34px;
    min-height: 280px;
  }

  .final-cta {
    padding-block: 96px 120px;
  }

  .download-hero {
    padding: 78px 18px 46px;
  }

  .download-card h3 {
    font-size: 22px;
  }
}
