:root {
  --bg: #07141f;
  --bg-mid: #0b1e2b;
  --bg-deep: #102738;
  --bg-card: rgba(17, 40, 56, 0.72);
  --bg-card-hover: rgba(22, 50, 69, 0.84);
  --glass: rgba(9, 24, 35, 0.78);
  --glass-strong: rgba(9, 24, 35, 0.96);
  --border: rgba(151, 190, 213, 0.2);
  --border-strong: rgba(151, 190, 213, 0.38);
  --border-hover: rgba(92, 202, 210, 0.55);
  --text: #eef6fb;
  --text-subtle: #b6c8d5;
  --text-muted: #8ea3b2;
  --text-dim: #738a9d;
  --accent: #2fc4b5;
  --accent-light: #88e2da;
  --accent-dark: #1b9f97;
  --accent-alt: #ff9b5f;
  --accent-cool: #73bdff;
  --accent-glow: rgba(47, 196, 181, 0.26);
  --accent-2-glow: rgba(255, 155, 95, 0.22);
  --green: #5fd486;
  --orange: #ffb067;
  --magenta: #ff9bc3;
  --cyan: #73bdff;
  --red: #ff7f87;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --transition: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  --font: 'Sora', 'Avenir Next', 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'JetBrains Mono', monospace;
  --max-width: 1120px;
  --nav-height: 66px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 620px at 12% -8%, rgba(47, 196, 181, 0.22), transparent 62%),
    radial-gradient(1000px 540px at 90% 4%, rgba(255, 155, 95, 0.16), transparent 60%),
    linear-gradient(150deg, var(--bg) 0%, var(--bg-mid) 48%, var(--bg-deep) 100%);
  color: var(--text);
  line-height: 1.68;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 58px,
      rgba(183, 215, 235, 0.03) 58px,
      rgba(183, 215, 235, 0.03) 59px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 58px,
      rgba(183, 215, 235, 0.02) 58px,
      rgba(183, 215, 235, 0.02) 59px
    );
  mask-image: radial-gradient(circle at 50% 15%, black 38%, transparent 82%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 280 280' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

main,
footer {
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
  min-width: 0;
}

.container,
.cards,
.card,
.two-col,
.two-col > *,
.code-block,
.terminal {
  min-width: 0;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  width: 118px;
  height: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-subtle);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(115, 189, 255, 0.12);
}

.nav-links a.active {
  border: 1px solid rgba(115, 189, 255, 0.4);
}

.nav-github {
  border: 1px solid var(--border) !important;
  padding: 10px 16px !important;
  gap: 8px;
}

.nav-github:hover {
  border-color: var(--border-hover) !important;
  background: rgba(47, 196, 181, 0.12) !important;
  transform: translateY(-1px);
}

.nav-menu-btn {
  display: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(14, 33, 47, 0.88);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

.nav-menu-btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.hero {
  padding: 124px 24px 92px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow,
.hero-glow-2 {
  position: absolute;
  pointer-events: none;
}

.hero-glow {
  top: -38%;
  left: 50%;
  transform: translateX(-50%);
  width: 980px;
  height: 720px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 68%);
}

.hero-glow-2 {
  top: -2%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(ellipse at center, var(--accent-2-glow) 0%, transparent 65%);
}

h1 {
  font-size: clamp(2.8rem, 7.1vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4.9vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(125deg, var(--accent-light) 0%, var(--accent-cool) 45%, var(--accent-alt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent-light);
}

.hero p {
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--text-subtle);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  color: #f4fbff;
  background: linear-gradient(130deg, #2caea7 0%, #2aa9ba 48%, #3f8fd2 100%);
  box-shadow: 0 16px 34px rgba(24, 102, 142, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(24, 102, 142, 0.45);
}

.btn-outline {
  color: var(--text);
  background: rgba(10, 26, 37, 0.54);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  background: rgba(16, 38, 54, 0.72);
}

section {
  padding: 88px 24px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.section-lead {
  margin-bottom: 58px;
  max-width: 680px;
  color: var(--text-subtle);
  font-size: 1.03rem;
}

.cards {
  display: grid;
  gap: 18px;
}

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

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(160deg, rgba(19, 44, 61, 0.92), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 189, 255, 0.16), transparent 66%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: linear-gradient(160deg, rgba(24, 54, 74, 0.94), var(--bg-card-hover));
  box-shadow: 0 16px 34px rgba(1, 9, 14, 0.32);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(136, 226, 218, 0.28);
  background: linear-gradient(135deg, rgba(47, 196, 181, 0.26), rgba(115, 189, 255, 0.17));
}

.card-icon.blue {
  border-color: rgba(115, 189, 255, 0.3);
  background: linear-gradient(135deg, rgba(115, 189, 255, 0.24), rgba(142, 163, 178, 0.2));
}

.card-icon.green {
  border-color: rgba(95, 212, 134, 0.35);
  background: linear-gradient(135deg, rgba(95, 212, 134, 0.22), rgba(47, 196, 181, 0.18));
}

.card-icon.orange {
  border-color: rgba(255, 176, 103, 0.34);
  background: linear-gradient(135deg, rgba(255, 176, 103, 0.24), rgba(255, 155, 95, 0.17));
}

.card-icon.pink {
  border-color: rgba(255, 155, 195, 0.32);
  background: linear-gradient(135deg, rgba(255, 155, 195, 0.2), rgba(255, 155, 95, 0.2));
}

.card p {
  color: var(--text-subtle);
  font-size: 0.91rem;
}

.code-block,
.terminal {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 14, 20, 0.94), rgba(7, 17, 25, 0.97));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.code-block {
  font-family: var(--mono);
  font-size: 0.81rem;
}

.code-header,
.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(158, 191, 213, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.code-dots,
.terminal-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-dots span,
.terminal-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.38);
}

.code-dots span:nth-child(1),
.terminal-dots span:nth-child(1) {
  background: linear-gradient(180deg, #ff7f78, #ff5f57);
}

.code-dots span:nth-child(2),
.terminal-dots span:nth-child(2) {
  background: linear-gradient(180deg, #ffd074, #ffbd2e);
}

.code-dots span:nth-child(3),
.terminal-dots span:nth-child(3) {
  background: linear-gradient(180deg, #67de88, #28c840);
}

.code-title,
.terminal-title {
  margin-right: auto;
  font-family: var(--mono);
  font-size: 0.71rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--text-dim);
}

.copy-btn {
  border: 1px solid rgba(151, 190, 213, 0.33);
  color: var(--text-subtle);
  background: rgba(13, 35, 48, 0.84);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.copy-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateY(-1px);
}

.copy-btn.copied {
  color: var(--green);
  border-color: rgba(95, 212, 134, 0.48);
}

pre {
  margin: 0;
  padding: 24px 22px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  line-height: 1.82;
  tab-size: 2;
}

code {
  font-family: var(--mono);
}

pre code {
  display: block;
  width: max-content;
  min-width: 100%;
}

code:not(pre code) {
  font-size: 0.82em;
  color: var(--accent-light);
  background: rgba(47, 196, 181, 0.13);
  border: 1px solid rgba(115, 189, 255, 0.24);
  border-radius: 7px;
  padding: 2px 7px;
  overflow-wrap: anywhere;
}

.t-kw {
  color: #ff9bc3;
  font-weight: 600;
}

.t-str {
  color: #a7ebcb;
}

.t-fn {
  color: #8dcfff;
}

.t-cls {
  color: #ffd487;
}

.t-cm {
  color: #8fa1b0;
  font-style: italic;
}

.t-num {
  color: #ffb08f;
}

.t-op {
  color: #7de7d3;
}

.t-var {
  color: #c3e1ff;
}

.t-pm {
  color: #84e9a8;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(151, 190, 213, 0.18);
}

.compare-table th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.compare-table td:first-child {
  color: var(--text-subtle);
}

.compare-table td:last-child {
  color: var(--text);
}

.compare-table tr:hover td {
  background: rgba(115, 189, 255, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 11px;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge-purple {
  color: #b7d8ff;
  border-color: rgba(115, 189, 255, 0.3);
  background: rgba(115, 189, 255, 0.15);
}

.badge-blue {
  color: #a5efff;
  border-color: rgba(91, 213, 235, 0.3);
  background: rgba(91, 213, 235, 0.15);
}

.badge-green {
  color: #9ff0b6;
  border-color: rgba(95, 212, 134, 0.35);
  background: rgba(95, 212, 134, 0.16);
}

.eco-group {
  margin-bottom: 34px;
}

.eco-group-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--accent-light);
}

.eco-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eco-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-subtle);
  border: 1px solid var(--border);
  background: rgba(18, 44, 61, 0.52);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.eco-item:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(24, 55, 75, 0.7);
  transform: translateY(-1px);
}

.eco-item .check {
  color: var(--green);
  font-weight: 700;
  font-size: 0.78rem;
}

.cta-banner {
  border-radius: 26px;
  border: 1px solid rgba(136, 226, 218, 0.24);
  background:
    radial-gradient(800px 280px at 10% -10%, rgba(47, 196, 181, 0.2), transparent 62%),
    radial-gradient(720px 250px at 90% 100%, rgba(255, 155, 95, 0.16), transparent 65%),
    rgba(14, 34, 49, 0.82);
  padding: 64px 52px;
  text-align: center;
  box-shadow: 0 20px 42px rgba(3, 12, 18, 0.34);
}

.cta-banner h2 {
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--text-subtle);
  margin-bottom: 30px;
}

.page-header {
  padding: 106px 24px 78px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header-glow {
  position: absolute;
  pointer-events: none;
  top: -38%;
  left: 50%;
  transform: translateX(-50%);
  width: 840px;
  height: 620px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 64%);
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  margin-bottom: 18px;
}

.page-header p {
  max-width: 680px;
  color: var(--text-subtle);
}

.terminal {
  font-family: var(--mono);
  font-size: 0.81rem;
}

.terminal-body {
  padding: 24px 22px;
  line-height: 2;
}

.t-prompt {
  color: var(--green);
  font-weight: 600;
}

.t-cmd {
  color: var(--text);
}

.t-output {
  color: var(--text-subtle);
}

.t-success {
  color: var(--green);
}

.t-info {
  color: var(--accent-cool);
}

.t-highlight {
  color: var(--accent-alt);
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 22px;
  padding-bottom: 34px;
  position: relative;
}

.step:last-child {
  padding-bottom: 0;
}

.step::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(136, 226, 218, 0.35), rgba(136, 226, 218, 0));
}

.step:last-child::before {
  display: none;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(136, 226, 218, 0.22), rgba(115, 189, 255, 0.14));
  border: 1px solid rgba(136, 226, 218, 0.36);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.step-content {
  padding-top: 3px;
}

.step-content p {
  color: var(--text-subtle);
  font-size: 0.91rem;
}

.cmd-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 0.83rem;
  color: var(--text);
  background: rgba(17, 43, 59, 0.64);
  transition: border-color var(--transition), transform var(--transition);
}

.cmd-pill:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.cmd-pill .prompt {
  color: var(--accent-light);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.highlight-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  font-size: 1.45rem;
}

.highlight-text strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}

.highlight-text span {
  color: var(--text-subtle);
  font-size: 0.82rem;
}

.scroll-hint {
  margin-top: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.77rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scroll-hint .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(136, 226, 218, 0.5);
  border-bottom: 2px solid rgba(136, 226, 218, 0.5);
  transform: rotate(45deg);
  animation: bounce 2.4s infinite;
}

footer {
  border-top: 1px solid var(--border);
  padding: 44px 24px 34px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-image {
  width: 106px;
}

.footer-brand-name {
  font-size: 0.97rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--text-subtle);
  font-size: 0.86rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-credit {
  color: var(--text-subtle);
  font-size: 0.82rem;
}

.footer-credit a {
  color: var(--accent-light);
  font-weight: 600;
}

.divider {
  width: min(var(--max-width), calc(100% - 48px));
  height: 1px;
  margin: 0 auto;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(4px);
  }
}

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

  .two-col {
    gap: 34px;
  }
}

@media (max-width: 768px) {
  nav {
    height: var(--nav-height);
  }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 16px;
    gap: 8px;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--glass-strong), rgba(8, 20, 28, 0.98));
    backdrop-filter: blur(16px);
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 88px 16px 68px;
  }

  section {
    padding: 68px 16px;
  }

  .page-header {
    padding: 88px 16px 62px;
  }

  .two-col,
  .cards-2,
  .cards-3,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 42px 24px;
    border-radius: 22px;
  }

  .card {
    padding: 24px;
  }

  pre,
  .terminal-body {
    padding: 18px 16px;
  }

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