/* Aave DeFi Watcher — marketing site
   Design tokens match styles/theme.css in the extension. */

:root {
  --bg: #0a0e17;
  --surface: #12182a;
  --surface-2: #171f36;
  --surface-hover: #1d2743;
  --border: #232c47;
  --border-subtle: #1a2138;
  --text: #f2f4fa;
  --text-muted: #8994ab;
  --text-faint: #576079;

  --accent: #34d3e0;
  --accent-rgb: 52, 211, 224;
  --accent-strong: #5be1ec;
  --accent-dim: rgba(52, 211, 224, 0.14);
  --on-accent: #04222a;

  --danger: #f5455c;
  --danger-bg: rgba(245, 69, 92, 0.13);
  --warning: #ffb545;
  --warning-rgb: 255, 181, 69;
  --warning-bg: rgba(255, 181, 69, 0.13);
  --safe: #2ee6a0;
  --safe-bg: rgba(46, 230, 160, 0.13);
  --neutral: #6b7690;
  --neutral-bg: rgba(107, 118, 144, 0.13);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1120px;
  --nav-height: 64px;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #f4f6fb;
    --surface: #ffffff;
    --surface-2: #f0f2f7;
    --surface-hover: #e7eaf2;
    --border: #dde1eb;
    --border-subtle: #e8ebf2;
    --text: #12182a;
    --text-muted: #5b6478;
    --text-faint: #8991a3;
    --accent: #0c8f9c;
    --accent-rgb: 12, 143, 156;
    --accent-strong: #0aa5b3;
    --accent-dim: rgba(12, 143, 156, 0.1);
    --on-accent: #ffffff;
    --danger: #dc2626;
    --danger-bg: rgba(220, 38, 38, 0.09);
    --warning: #b45309;
    --warning-rgb: 180, 83, 9;
    --warning-bg: rgba(180, 83, 9, 0.09);
    --safe: #15803d;
    --safe-bg: rgba(21, 128, 61, 0.09);
    --neutral: #64748b;
    --neutral-bg: rgba(100, 116, 139, 0.09);
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.14);
  }
}

:root[data-theme="light"] {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-2: #f0f2f7;
  --surface-hover: #e7eaf2;
  --border: #dde1eb;
  --border-subtle: #e8ebf2;
  --text: #12182a;
  --text-muted: #5b6478;
  --text-faint: #8991a3;
  --accent: #0c8f9c;
  --accent-rgb: 12, 143, 156;
  --accent-strong: #0aa5b3;
  --accent-dim: rgba(12, 143, 156, 0.1);
  --on-accent: #ffffff;
  --danger: #dc2626;
  --danger-bg: rgba(220, 38, 38, 0.09);
  --warning: #b45309;
  --warning-rgb: 180, 83, 9;
  --warning-bg: rgba(180, 83, 9, 0.09);
  --safe: #15803d;
  --safe-bg: rgba(21, 128, 61, 0.09);
  --neutral: #64748b;
  --neutral-bg: rgba(100, 116, 139, 0.09);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI Variable", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 120ms var(--ease);
}

a:hover {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  color: var(--text);
  transition: background 120ms var(--ease), color 120ms var(--ease), transform 120ms var(--ease),
    border-color 120ms var(--ease), box-shadow 120ms var(--ease);
}

button:active {
  transform: scale(0.97);
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: radial-gradient(circle at 30% 30%, var(--accent-strong), #0e2a30 75%);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.3) inset;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 18px;
  height: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.25);
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: var(--on-accent);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.35);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border);
  color: var(--text);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-muted);
}

.btn-icon:hover {
  background: var(--surface-hover);
  color: var(--text);
  border-color: var(--border);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid var(--border-subtle);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 520px;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), 0.18), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--safe);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-faint);
}

.preview-wrap {
  position: relative;
}

.preview-glow {
  position: absolute;
  inset: 10% -10% -10%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.12), transparent 70%);
  pointer-events: none;
}

.preview-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.preview-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-subtle);
}

.preview-dots {
  display: flex;
  gap: 6px;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.preview-dots span:nth-child(1) {
  background: #f5455c;
}
.preview-dots span:nth-child(2) {
  background: #ffb545;
}
.preview-dots span:nth-child(3) {
  background: #2ee6a0;
}

.preview-url {
  flex: 1;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-faint);
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.preview-body {
  padding: 20px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}

.ext-panel {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  font-size: 13px;
}

.ext-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06), transparent);
}

.ext-header .logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.ext-header .logo-mark svg {
  width: 13px;
}

.ext-title {
  font-weight: 700;
  font-size: 14px;
}

.ext-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ext-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--safe-bg);
  color: var(--safe);
  font-size: 11px;
  font-weight: 700;
}

.ext-content {
  padding: 12px;
}

.portfolio-summary {
  position: relative;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 14px 14px 17px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.portfolio-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--warning);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-label {
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.metric-value {
  font-weight: 600;
  margin-top: 3px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 14px 14px 17px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--warning);
}

.card[data-risk="safe"]::before {
  background: var(--safe);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.net-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(98, 126, 234, 0.6);
}

.card-label {
  font-weight: 600;
}

.card-sub {
  font-size: 11px;
  color: var(--text-faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  margin-top: 2px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 13px;
}

.hf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
}

.hf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  background: var(--warning-bg);
  color: var(--warning);
  border: 1px solid rgba(var(--warning-rgb), 0.25);
}

.hf-pill.safe {
  background: var(--safe-bg);
  color: var(--safe);
  border-color: rgba(46, 230, 160, 0.25);
}

.sparkline-wrap {
  color: var(--warning);
}

.sparkline {
  width: 64px;
  height: 20px;
}

.buffer-text {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.updated-text {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-faint);
}

section {
  padding: 80px 0;
}

section.alt {
  background: var(--surface);
  border-block: 1px solid var(--border-subtle);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .section-lead {
  margin-inline: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms var(--ease), transform 160ms var(--ease);
}

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

.feature-card:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.chains-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  font-weight: 600;
}

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

.chain-pill .net-dot {
  margin-top: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

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

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.trust-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--safe-bg);
  color: var(--safe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-list .check svg {
  width: 13px;
  height: 13px;
}

.trust-panel {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.trust-panel h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.permission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}

.permission-row:last-child {
  border-bottom: none;
}

.permission-row span:last-child {
  color: var(--safe);
  font-weight: 600;
  font-size: 13px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--text-faint);
  font-size: 20px;
  font-weight: 400;
  transition: transform 160ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.cta-band {
  padding: 64px 0;
}

.cta-inner {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), rgba(var(--accent-rgb), 0.04));
  border: 1px solid rgba(var(--accent-rgb), 0.25);
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-inner p {
  margin: 0 0 24px;
  color: var(--text-muted);
}

.cta-inner .hero-cta {
  justify-content: center;
}

.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-faint);
  font-size: 13px;
}

.disclaimer {
  max-width: 640px;
  line-height: 1.5;
}

.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
}

.legal-content {
  padding: 48px 0 80px;
}

.legal-content .container {
  max-width: 720px;
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
}

.mobile-menu a:hover {
  background: var(--surface-2);
}

.mobile-menu .btn {
  margin-top: 8px;
  width: 100%;
}

@media (max-width: 960px) {
  .hero-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-preview {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .features-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0 56px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}
