:root {
  --bg: #131313;
  --bg-low: #1b1b1b;
  --text: #f3f3f1;
  --text-soft: #cbc9c3;
  --text-dim: #9a9892;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.07);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Sans SC", "Inter", sans-serif;
  background:
    radial-gradient(900px 520px at 85% 0%, rgba(255, 255, 255, 0.07), transparent 60%),
    radial-gradient(700px 480px at 0 100%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, #0f0f10 0%, #131313 40%, #171717 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button {
  transition:
    transform 240ms var(--ease),
    background-color 240ms var(--ease),
    border-color 240ms var(--ease),
    opacity 240ms var(--ease),
    color 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.liquid-glass {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0.12) 28%,
    rgba(255, 255, 255, 0.02) 52%,
    rgba(255, 255, 255, 0.16) 80%,
    rgba(255, 255, 255, 0.32)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.94), rgba(19, 19, 19, 0.58));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(214, 214, 214, 0.88));
  color: #111;
  font: 800 14px/1 "Inter", sans-serif;
  letter-spacing: -0.04em;
  box-shadow:
    0 12px 30px rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.1));
}

.brand-name {
  font: 800 22px/1 "Inter", sans-serif;
  letter-spacing: -0.05em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font: 600 12px/1 "Inter", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-cta,
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font: 800 12px/1 "Inter", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-cta,
.btn-primary,
.copy-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(214, 214, 214, 0.88));
  color: #111;
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.12);
}

.btn-secondary,
.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.nav-cta:hover,
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.copy-btn:hover {
  transform: translateY(-1px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font: 700 12px/1 "Inter", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span:first-child,
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

.page-title {
  margin: 24px 0 14px;
  font: 800 clamp(2.9rem, 6vw, 5.2rem) / 0.96 "Inter", sans-serif;
  letter-spacing: -0.06em;
}

.page-title .serif {
  display: block;
  font: 500 clamp(2.4rem, 5vw, 4rem) / 0.96 "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: -0.03em;
  opacity: 0.92;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}

.footer {
  margin-top: 18px;
  padding: 24px 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 13px;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-low {
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.92), rgba(14, 14, 14, 0.96));
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--text-dim);
  font: 700 12px/1 "Inter", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 820px;
  font: 800 clamp(2.2rem, 4.6vw, 4rem) / 1.02 "Inter", sans-serif;
  letter-spacing: -0.05em;
}

.section-title .serif {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.9;
}

@media (max-width: 820px) {
  .topbar {
    position: static;
  }

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

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
  }
}

@media (max-width: 720px) {
  .footer {
    border-radius: 26px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav-cta,
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .copy-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(94vw, 1240px);
  }
}
