@font-face {
  font-family: "Hedvig";
  src: url("./assets/hedvig-serif-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/inter-400-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/inter-500-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/inter-700-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: #121212;
  --panel-strong: #191919;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f5;
  --muted: #8c8c8c;
  --muted-strong: #bdbdbd;
  --white: #fff;
  --green: #aebd68;
  --radius: 20px;
  --max: 1136px;
  --header-h: 78px;
  --serif: "Hedvig", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--white);
  color: #111;
  padding: 10px 14px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px clamp(18px, 7vw, 152px);
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  height: 56px;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--text);
  pointer-events: auto;
  transition: background 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .nav-shell,
.menu-open .nav-shell {
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.15);
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  color: var(--text);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links {
  justify-content: center;
}

.nav-actions {
  justify-content: flex-end;
  gap: 30px;
}

.nav-links a,
.nav-actions a:not(.button) {
  opacity: 0.92;
  transition: opacity 160ms ease;
}

.nav-links a:hover,
.nav-actions a:hover {
  opacity: 1;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: #262626;
}

.button-muted {
  background: rgba(245, 245, 245, 0.13);
  border-color: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
}

.button-muted:hover {
  background: rgba(245, 245, 245, 0.18);
}

.button-small {
  min-height: 32px;
  padding: 8px 14px;
}

.button-wide {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  place-items: center;
  padding: 0;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 24px 90px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(9, 30, 34, 0.2) 0%, rgba(10, 10, 10, 0) 44%, rgba(8, 8, 8, 0.94) 100%),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.28), rgba(8, 8, 8, 0.38) 54%, rgba(8, 8, 8, 0.9) 100%);
}

.hero-content {
  width: min(100%, 1120px);
  margin-top: 80px;
  text-align: center;
}

.hero h1,
.section-heading h2,
.story-title,
.bottom-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero p {
  max-width: 850px;
  margin: 22px auto 30px;
  color: rgba(245, 245, 245, 0.88);
  font-size: 18px;
}

.logo-row {
  position: absolute;
  left: 50%;
  bottom: 46px;
  display: flex;
  width: min(850px, calc(100% - 48px));
  justify-content: center;
  gap: clamp(24px, 5vw, 70px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  transform: translateX(-50%);
}

.logo-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  will-change: transform, opacity, filter;
}

.js .hero-media {
  opacity: 0.82;
  filter: brightness(0.72) contrast(1.08);
  transform: scale(1.055);
}

.js .nav-shell {
  opacity: 0;
  transform: translateY(-12px);
}

.js .hero-word,
.js [data-hero-subtitle],
.js [data-hero-cta],
.js [data-hero-logos] li {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
}

.mini-glyph {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.96;
  vertical-align: middle;
}

.diamond {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.sparkle {
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
}

.sun {
  background:
    repeating-conic-gradient(currentColor 0 10deg, transparent 10deg 20deg),
    radial-gradient(circle, currentColor 0 42%, transparent 43%);
}

.loop {
  border: 4px solid currentColor;
  background: transparent;
}

.section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 128px 24px;
}

.section-spacious {
  padding-top: 170px;
}

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

.section-heading h2 {
  color: #efefef;
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 21px;
}

.feature-stack {
  display: grid;
  gap: 48px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
}

.feature-card-reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.feature-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 16px;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.82);
}

.feature-visual::after,
.quote-card::after,
.research-preview::after,
.bottom-cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 48%, rgba(8, 8, 8, 0.78) 100%);
  pointer-events: none;
}

.glass-window {
  position: absolute;
  left: 12%;
  bottom: 28%;
  width: min(76%, 410px);
  min-height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(38, 38, 38, 0.58);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  padding: 28px 22px 18px;
  color: rgba(245, 245, 245, 0.6);
}

.glass-window-right {
  left: auto;
  right: 12%;
  bottom: 26%;
}

.window-dots,
.window-dots::before,
.window-dots::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.window-dots {
  left: 20px;
  top: 16px;
}

.window-dots::before,
.window-dots::after {
  content: "";
  top: 0;
}

.window-dots::before {
  left: 16px;
}

.window-dots::after {
  left: 32px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip-row span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(245, 245, 245, 0.78);
}

.window-icons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 28px;
}

.window-icons b {
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.8);
  color: #222;
  font-size: 22px;
  font-weight: 700;
}

.orb {
  background: radial-gradient(circle at 36% 32%, #fff, #c9c9c9 35%, #565656 76%) !important;
}

.floating-photo {
  position: absolute;
  left: 22%;
  top: -42px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: linear-gradient(120deg, #3b3b3b, #cfcfcf 42%, #555 43%, #2a2a2a);
  transform: rotate(-3deg);
}

.avatar-dot {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9c3aa, #668a8d);
  vertical-align: middle;
}

.feature-copy {
  max-width: 460px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: #777;
  font-size: 17px;
  font-weight: 700;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.05;
}

.feature-copy p:not(.kicker) {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #e5e5e5;
}

.lightning::before {
  content: "↯";
  font-size: 28px;
}

.orbit::before {
  content: "◎";
  font-size: 26px;
}

.network::before {
  content: "⌬";
  font-size: 26px;
}

.sparkle-icon::before {
  content: "✧";
  font-size: 27px;
}

.check::before {
  content: "✓";
  font-size: 20px;
}

.loop-icon::before {
  content: "○";
  font-size: 25px;
}

.star::before {
  content: "✦";
  font-size: 22px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.78fr;
  grid-auto-rows: 380px;
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.quote-card,
.logo-tile,
.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)), var(--quote-bg);
  background-position: center;
  background-size: cover;
}

.quote-card h3 {
  margin: 0;
  color: rgba(245, 245, 245, 0.86);
  font-size: 18px;
  font-weight: 700;
}

.quote-card p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0;
  color: rgba(245, 245, 245, 0.92);
  font-size: 23px;
  line-height: 1.38;
}

.brand-spinner,
.brand-knot {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.brand-spinner {
  background: repeating-conic-gradient(#efefef 0 14deg, transparent 14deg 28deg);
}

.brand-knot {
  border: 6px double #efefef;
}

.logo-tile {
  display: grid;
  place-items: center;
}

.chain-logo,
.ring-logo {
  width: 64px;
  height: 38px;
  border-radius: 999px;
  background: #eee;
}

.chain-logo {
  clip-path: polygon(0 30%, 35% 30%, 45% 45%, 85% 45%, 100% 62%, 82% 82%, 45% 82%, 35% 67%, 0 67%);
}

.ring-logo {
  width: 54px;
  height: 54px;
  border: 8px solid #eee;
  background: transparent;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
}

.portrait-card strong {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
}

.pricing-section {
  overflow: hidden;
}

.pricing-haze {
  position: absolute;
  top: 96px;
  left: 50%;
  width: min(900px, 82vw);
  opacity: 0.45;
  transform: translateX(-50%);
  filter: blur(4px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.price-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 30px;
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -15% -10%;
  height: 190px;
  background: radial-gradient(circle at 50% 0, rgba(175, 189, 104, 0.18), transparent 65%);
  pointer-events: none;
}

.price-card-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.price-card h3 {
  margin: 0 0 10px;
  color: #d9d9d9;
  font-size: 18px;
}

.price {
  margin: 0 0 12px;
  color: #9e9e9e;
  font-size: 18px;
  font-weight: 700;
}

.price span {
  color: #e7e7e7;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
}

.price-card > p:not(.price):not(.billing) {
  margin: 0 0 26px;
  color: var(--muted);
}

.billing {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  margin: 0 0 24px;
  padding: 14px 0;
  color: #9e9e9e;
  font-weight: 700;
}

.billing span {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 16px 0 0 rgba(255, 255, 255, 0.92);
}

.price-card h4 {
  margin: 0 0 14px;
  color: #555;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  color: #8f8f8f;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 12px;
}

.price-card li::before {
  content: "✓";
  color: #e5e5e5;
}

.price-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
}

.compare {
  width: min(100%, var(--max));
  margin: 126px auto 0;
}

.compare h2 {
  margin: 0 0 44px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  text-align: center;
}

.compare-table {
  border-radius: 18px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #949494;
}

.compare-row > div {
  padding: 14px 26px;
  text-align: center;
}

.compare-row > div:first-child {
  text-align: left;
  color: #d8d8d8;
}

.compare-row > div:nth-child(3) {
  background: rgba(255, 255, 255, 0.055);
  color: #e7e7e7;
}

.compare-head {
  color: #f0f0f0;
  font-weight: 500;
}

.story-section {
  overflow: hidden;
  text-align: center;
}

.story-glow {
  width: min(760px, 72vw);
  height: 210px;
  margin: 0 auto 86px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.36;
  filter: blur(18px) brightness(0.85);
}

.story-title {
  width: min(100%, 1000px);
  margin: 0 auto;
  font-size: clamp(45px, 5.4vw, 74px);
  line-height: 1.13;
  text-wrap: balance;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 80px auto 24px;
}

.tabs button {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #aaa;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
}

.tabs button.active {
  background: #f4f4f4;
  color: #242424;
}

.research-preview {
  position: relative;
  width: min(820px, 100%);
  aspect-ratio: 1.7;
  margin: 0 auto 78px;
  overflow: hidden;
  border-radius: 14px;
  background: #181818;
}

.research-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.76) saturate(0.82);
}

.assistant-orb {
  position: absolute;
  left: 50%;
  top: 28%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 30%, #fff, #c8c8c8 38%, #6d6d6d 72%);
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
}

.assistant-card {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(390px, 78%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(38, 38, 38, 0.7);
  padding: 40px 24px 22px 88px;
  text-align: left;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.assistant-avatar {
  position: absolute;
  left: 24px;
  top: 38px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6c0aa, #6f9295);
}

.assistant-card strong span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e5e5e5;
  color: #333;
  font-size: 12px;
}

.assistant-card p {
  margin: 2px 0 0;
  color: #909090;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 72px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.capability {
  text-align: center;
}

.capability .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.capability h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.capability p {
  max-width: 340px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.article-card {
  display: grid;
  gap: 16px;
}

.article-card a {
  display: grid;
  gap: 16px;
}

.article-card img:first-child {
  width: 100%;
  aspect-ratio: 1.815;
  border-radius: 14px;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.9);
}

.article-card h3 {
  margin: 0;
  color: #f0f0f0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.article-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.article-card p img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.bottom-cta {
  padding: 42px 24px 120px;
}

.bottom-cta-inner {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #111;
  text-align: center;
}

.bottom-cta-inner > div {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 74px 24px 34px;
}

.bottom-cta h2 {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.04;
}

.bottom-cta p {
  margin: 16px auto 26px;
  color: var(--muted);
  font-size: 19px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bottom-cta img {
  width: min(800px, 86%);
  margin: 0 auto;
  border-radius: 14px 14px 0 0;
  filter: saturate(0.8) brightness(0.76);
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 58px 24px 34px;
  background: #070707;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-brand {
  max-width: 260px;
  color: #f5f5f5;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 52px;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #e5e5e5;
  font-size: 14px;
}

.footer-word {
  width: min(100%, 1136px);
  margin: 40px auto 24px;
  background: linear-gradient(0deg, rgba(250, 250, 250, 0.1), rgba(250, 250, 250, 0.03));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(120px, 26vw, 430px);
  line-height: 0.7;
  text-align: center;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.crafted,
.crafted a,
.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.crafted a {
  color: #e5e5e5;
}

.crafted img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.socials a {
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.992);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 20px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    padding: 0 12px;
  }

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

  .menu-button {
    display: grid;
    gap: 5px;
  }

  .mobile-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(12, 12, 12, 0.92);
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(16px);
  }

  .mobile-menu a {
    border-radius: 10px;
    padding: 12px;
    color: #e5e5e5;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    min-height: 820px;
    padding-top: 108px;
  }

  .hero-content {
    margin-top: 20px;
  }

  .logo-row {
    flex-wrap: wrap;
    gap: 14px 24px;
    font-size: 15px;
  }

  .feature-card,
  .feature-card-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-card-reverse .feature-copy {
    order: 2;
  }

  .feature-card-reverse .feature-visual {
    order: 1;
  }

  .testimonial-grid,
  .pricing-grid,
  .article-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-auto-rows: auto;
  }

  .quote-card,
  .logo-tile,
  .portrait-card {
    min-height: 310px;
  }

  .quote-card p {
    font-size: 20px;
  }

  .compare-table {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .compare-row {
    min-width: 760px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
    padding: 110px 20px 86px;
  }

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

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 84px 20px;
  }

  .section-spacious {
    padding-top: 88px;
  }

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

  .section-heading h2,
  .compare h2,
  .story-title,
  .bottom-cta h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .section-heading p,
  .feature-copy p:not(.kicker),
  .capability p,
  .bottom-cta p {
    font-size: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-visual,
  .feature-visual img {
    min-height: 300px;
  }

  .glass-window {
    left: 8%;
    width: 84%;
    min-height: 130px;
    padding: 26px 16px 14px;
  }

  .floating-photo {
    width: 116px;
    height: 116px;
  }

  .price-card {
    min-height: 0;
  }

  .tabs {
    margin-top: 42px;
  }

  .research-preview {
    aspect-ratio: 0.95;
  }

  .research-preview img {
    height: 100%;
  }

  .assistant-card {
    top: 50%;
    padding-left: 76px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-word {
    font-size: clamp(110px, 42vw, 170px);
  }
}
