/* Fonts loaded via <link> in HTML */

/* ===== DESIGN SYSTEM IFTTD MCP ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #191919;
  --bg-dark: #0e0e0e;
  --bg-black: #0a0a0a;
  --panel: #222222;
  --border: #303030;
  --orange: #ee7548;
  --blue: #5684f2;
  --green: #5faf74;
  --amber: #ffab40;
  --cyan: #4dd0e1;
  --text: #f0f0f0;
  --muted: #999;
  --dim: #555;
  --font-title: "IBM Plex Sans", sans-serif;
  --font-mono: "Fira Mono", monospace;
  --radius: 8px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-title);
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.site-header {
  background: rgba(25, 25, 25, 0.96);
  border-bottom: 1px solid var(--border);
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
}
.nav-logo span {
  color: var(--blue);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--muted);
  text-decoration: none;
}
.btn-nav {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 7px 16px !important;
  border-radius: 6px;
  font-size: 12px !important;
  font-weight: 500;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.btn-nav:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  text-decoration: none;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 580px;
  height: 580px;
  background: radial-gradient(
    circle,
    rgba(238, 117, 72, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(86, 132, 242, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-title);
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 680px;
}
.hero-h1 .c-orange {
  color: var(--orange);
}
.hero-h1 .c-blue {
  color: var(--blue);
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-sub strong {
  color: #ddd;
  font-weight: 500;
}
.hero-sub .c-orange {
  color: var(--orange);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(238, 117, 72, 0.28);
  text-decoration: none;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--dim);
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: #555;
  color: var(--muted);
  text-decoration: none;
}

.hero-experts {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
}
.avatars {
  display: flex;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.avatars .avatar:first-child {
  margin-left: 0;
}
.experts-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}
.experts-text strong {
  color: #bbb;
  font-weight: 500;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #141414;
  border-top: 1px solid var(--border);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 24px 32px;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat-val {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-val .unit {
  color: var(--orange);
  font-size: 20px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ===== INSTALL ===== */
.install-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
  user-select: none;
}
.tab:hover {
  color: var(--muted);
}
.tab.active {
  color: var(--text);
  border-bottom-color: var(--orange);
}
.tab-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tab-claude {
  background: #b8702d;
}
.tab-cursor {
  background: var(--blue);
}
.tab-wind {
  background: #09b6a2;
}

.code-wrap {
  background: var(--bg-black);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.code-panel {
  display: none;
  padding: 22px 26px;
}
.code-panel.active {
  display: block;
}
pre {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  white-space: pre;
  overflow-x: auto;
}
.cc {
  color: #444;
}
.cp {
  color: var(--orange);
  font-weight: 500;
}
.cm {
  color: var(--green);
}
.cf {
  color: var(--blue);
}
.cv {
  color: var(--orange);
}
.cs {
  color: var(--green);
}
.ck {
  color: var(--blue);
}
.cstr {
  color: var(--orange);
}

/* ===== TOOLS ===== */
.tools-section {
  background: #1c1c1c;
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
.tools-header {
  margin-bottom: 40px;
}
.tools-title {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.tools-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tool-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.tool-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.tool-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.tool-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.icon-plan {
  background: rgba(238, 117, 72, 0.12);
}
.icon-search {
  background: rgba(86, 132, 242, 0.12);
}
.icon-ep {
  background: rgba(95, 175, 116, 0.12);
}
.tool-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-go {
  background: rgba(95, 175, 116, 0.12);
  color: var(--green);
  border: 1px solid rgba(95, 175, 116, 0.2);
}
.badge-cite {
  background: rgba(86, 132, 242, 0.12);
  color: var(--blue);
  border: 1px solid rgba(86, 132, 242, 0.2);
}
.badge-ep {
  background: rgba(238, 117, 72, 0.12);
  color: var(--orange);
  border: 1px solid rgba(238, 117, 72, 0.2);
}
.tool-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.tool-headline {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.tool-desc {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.tool-example {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  line-height: 1.6;
}
.ex-label {
  color: var(--orange);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ex-text {
  color: #bbb;
}

/* ===== PRICING ===== */
.pricing-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
.pricing-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.pricing-title {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pricing-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}
.plan-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-suffix {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}
.plan-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.check {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.btn-pricing {
  display: block;
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(238, 117, 72, 0.28);
  text-decoration: none;
}
.pricing-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  text-align: center;
  margin-top: 14px;
}

/* ===== QUOTE ===== */
.quote-section {
  background: #1a1a1a;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.quote-section .container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.quote-bar {
  width: 3px;
  min-height: 72px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}
.quote-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #aaa;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 10px;
}
.quote-author {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
}
.quote-author strong {
  color: var(--orange);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--orange);
}
.footer-logo span {
  color: var(--blue);
}
.footer-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  margin-top: 3px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--muted);
}

/* ===== LOGIN ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-box {
  background: var(--panel);
  padding: 48px 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  max-width: 400px;
  width: 100%;
}
.login-box h2 {
  font-family: var(--font-mono);
  margin-bottom: 6px;
}
.login-box p {
  color: var(--dim);
  margin-bottom: 28px;
  font-size: 14px;
}
.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg);
  margin-bottom: 10px;
  transition: border-color 0.2s;
  color: var(--text);
  text-decoration: none;
}
.oauth-btn:hover {
  border-color: var(--orange);
  text-decoration: none;
}
.oauth-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== DASHBOARD ===== */
.dashboard {
  min-height: 100vh;
  display: flex;
}
.dash-sidebar {
  width: 220px;
  background: var(--bg-dark);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
}
.dash-sidebar h2 {
  font-family: var(--font-mono);
  font-size: 14px;
  margin-bottom: 24px;
}
.dash-sidebar h2 .l-ifttd,
.dash-sidebar h2 .l-orange {
  color: var(--orange);
}
.dash-sidebar h2 .l-mcp,
.dash-sidebar h2 .l-blue {
  color: var(--blue);
}
.dash-sidebar a {
  display: block;
  color: var(--dim);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 3px;
  text-decoration: none;
}
.dash-sidebar a:hover,
.dash-sidebar a.active {
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}
.dash-main {
  flex: 1;
  padding: 32px;
  background: var(--bg);
}

/* ===== CARDS ===== */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  margin-bottom: 12px;
}
.api-key-box {
  background: var(--bg-black);
  color: var(--green);
  padding: 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  word-break: break-all;
  position: relative;
  border: 1px solid var(--border);
}
.api-key-box .copy-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  background: var(--panel);
  color: var(--muted);
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-family: var(--font-mono);
}
.usage-bar {
  height: 6px;
  background: var(--panel);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
  margin-bottom: 14px;
}
.usage-bar .fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s;
  background: var(--orange);
}
.usage-bar .fill.ok {
  background: var(--green);
}

/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
th,
td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
}
th {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
}
.badge.starter {
  background: rgba(238, 117, 72, 0.15);
  color: var(--orange);
}
.badge.free {
  background: var(--panel);
  color: var(--dim);
}
.badge.active {
  background: rgba(95, 175, 116, 0.15);
  color: var(--green);
}
.badge.suspended {
  background: rgba(238, 68, 68, 0.15);
  color: #ef4444;
}
.badge.done {
  background: rgba(95, 175, 116, 0.15);
  color: var(--green);
}
.badge.failed {
  background: rgba(238, 68, 68, 0.15);
  color: #ef4444;
}
.badge.queued {
  background: rgba(86, 132, 242, 0.15);
  color: var(--blue);
}
.badge.running {
  background: rgba(255, 171, 64, 0.15);
  color: var(--amber);
}

/* ===== BUTTONS ===== */
button {
  font-family: var(--font-mono);
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(238, 117, 72, 0.25);
}
button.secondary {
  background: var(--panel);
  color: var(--muted);
}
textarea {
  width: 100%;
  min-height: 200px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-dark);
  color: var(--text);
}
input[type="text"],
input[type="number"],
input[type="password"] {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-mono);
}

/* ===== DOCS PAGE ===== */
.docs-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
}
.docs-page h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.docs-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--orange);
}
.docs-page h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
}
.docs-page p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.docs-page ul,
.docs-page ol {
  color: var(--muted);
  margin-bottom: 16px;
  padding-left: 24px;
  line-height: 1.7;
}
.docs-page code {
  font-family: var(--font-mono);
  background: var(--bg-dark);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
}
.docs-page pre {
  background: var(--bg-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  overflow-x: auto;
}
.docs-page pre code {
  background: none;
  padding: 0;
}
.docs-page a {
  color: var(--orange);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .hero-experts {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .pricing-card {
    padding: 28px 24px;
  }
  .dashboard {
    flex-direction: column;
  }
  .dash-sidebar {
    width: 100%;
  }
}
