:root {
  --bg: #f8fbfd;
  --bg-2: #eaf3f8;
  --ink: #14314a;
  --ink-2: #244357;
  --ink-3: #0e2539;
  --muted: #587384;
  --line: #c8dbe6;
  --line-strong: #8fb3c6;
  --cyan: #20b8c6;
  --cyan-dark: #18aebb;
  --slate: #245674;
  --paper: #ffffff;
  --shadow: 0 24px 60px rgba(14, 49, 72, 0.14);
  --shadow-soft: 0 14px 32px rgba(14, 49, 72, 0.09);
  --maxw: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 82% 12%, rgba(32, 184, 198, 0.14), transparent 0 24%),
    radial-gradient(circle at 12% 22%, rgba(20, 49, 74, 0.10), transparent 0 20%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .25;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: multiply;
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.15rem 0;
  background: rgba(248, 251, 253, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.nav {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .24em;
  color: var(--ink);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cyan);
}

.nav-links .primary-link {
  background: var(--ink);
  color: var(--paper);
  padding: .68rem 1.35rem;
  border-radius: 3px;
}

.nav-links .primary-link:hover,
.nav-links .primary-link[aria-current="page"] {
  background: var(--cyan);
  color: var(--paper);
}

.split-page,
.section-inner {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
}

.split-page {
  min-height: 100vh;
  padding: 9.5rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.split-page::after,
main > .section:first-child::after {
  content: "plinto";
  position: fixed;
  right: -2rem;
  bottom: -6.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(12rem, 28vw, 32rem);
  font-weight: 800;
  line-height: .82;
  color: rgba(20, 49, 74, 0.055);
  z-index: -1;
  pointer-events: none;
  letter-spacing: -0.06em;
}

.page-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 2rem;
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.page-kicker::before,
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--cyan);
}

.page-title,
.section-heading h1,
.section-heading h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: .95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
}

.page-copy,
.section-heading p {
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 42rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.page-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 1rem 1.45rem;
  border-radius: 3px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(14, 49, 72, .10);
  transition: all .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  color: var(--cyan);
}

.button.primary,
.button.accent {
  background: var(--ink);
  color: var(--paper);
}

.button.primary:hover,
.button.accent:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--paper);
  box-shadow: 0 10px 26px rgba(32, 184, 198, .25);
}

.info-panel {
  background: linear-gradient(135deg, #0f2538 0%, #173550 100%);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(14, 49, 72, .24), 0 1px 0 rgba(255, 255, 255, .08) inset;
  transform: rotate(1.2deg);
}

.release-card {
  background: #071827;
  border: 1px solid rgba(145, 171, 188, .22);
  border-radius: 3px;
  padding: 1.35rem;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.release-card + .release-card {
  margin-top: 1rem;
}

.release-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #64dce7);
}

.release-card h3 {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .75rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
}

.release-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: rgba(255, 255, 255, .95);
  border-radius: 3px;
  padding: .25rem;
}

.release-card p {
  color: #d9ebf3;
  line-height: 1.62;
}

.section {
  padding: 9rem 0 5rem;
}

.section.alt {
  background: var(--bg-2);
}

.pricing-grid,
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.price-card,
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
}

.price-card.highlight {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 24px 60px rgba(14, 49, 72, .18);
}

.price-card h3,
.feature h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.55rem;
  color: inherit;
  margin-bottom: .8rem;
}

.price,
.price-card .price {
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.4rem;
}

.price-card ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: .55rem 0 .55rem 1.3rem;
  color: var(--ink-2);
  position: relative;
  border-bottom: 1px solid var(--line);
}

.price-card.highlight li {
  color: #d9ebf3;
  border-color: rgba(255, 255, 255, .10);
}

.price-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.feature img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: .4rem;
  margin-bottom: 1.1rem;
  border-radius: 3px;
  background: var(--ink);
}

.feature p {
  color: var(--ink-2);
  line-height: 1.62;
}

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 2rem;
}

.footer-inner {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #91abbc;
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer a {
  color: #64dce7;
}

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

  .split-page {
    padding-top: 8rem;
  }

  .nav-links {
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  .nav {
    width: min(var(--maxw), calc(100% - 28px));
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links a:not(.primary-link) {
    display: none;
  }

  .split-page,
  .section-inner,
  .footer-inner {
    width: min(var(--maxw), calc(100% - 28px));
  }
}
