:root {
  --bg: #0d0808;
  --bg-soft: #180f0f;
  --surface: rgba(26, 17, 17, 0.76);
  --surface-strong: rgba(26, 17, 17, 0.94);
  --surface-light: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 94, 0, 0.15);
  --text: #f5ebe6;
  --muted: #c2ada4;
  --heading: #fff6f2;
  --accent: #FF3B30;
  --accent-2: #FF9500;
  --accent-3: #FF5E00;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 149, 0, 0.24), transparent 38%),
    radial-gradient(circle at top right, rgba(255, 59, 48, 0.22), transparent 34%),
    radial-gradient(circle at 50% 60%, rgba(255, 94, 0, 0.10), transparent 48%),
    linear-gradient(180deg, #110a0a 0%, #170e0e 40%, #0a0606 100%);
  line-height: 1.65;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-page="home"] {
  position: relative;
  overflow-x: hidden;
}

body[data-page="home"]::before {
  background-image:
    linear-gradient(rgba(92, 255, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 255, 214, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 86%);
  opacity: 0.7;
}

body[data-page="home"]::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(45, 212, 191, 0.18), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(255, 149, 0, 0.16), transparent 22%),
    radial-gradient(circle at 75% 82%, rgba(255, 59, 48, 0.12), transparent 20%);
  opacity: 0.85;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p,
ul,
ol,
small {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--heading);
  line-height: 1.08;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

@supports (text-wrap: balance) {
  h1,
  h2,
  h3,
  h4,
  .lead,
  .section-heading {
    text-wrap: balance;
  }
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

small {
  font-size: 0.9rem;
}

code {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--heading);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(18, 11, 11, 0.85);
  border-bottom: 1px solid rgba(255, 94, 0, 0.12);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(255, 59, 48, 0.28);
  overflow: hidden;
}

.brand-mark img,
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.brand-text {
  display: grid;
  gap: 0.2rem;
}

.brand-text strong {
  color: var(--heading);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.96rem;
  color: var(--muted);
  padding: 0.78rem 1rem;
  border-radius: 999px;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--heading);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.18), rgba(255, 149, 0, 0.18));
  border: 1px solid rgba(255, 59, 48, 0.22);
  color: var(--heading);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--heading);
  transition: 180ms ease;
}

.nav-toggle:hover span {
  background: #fff;
}

main {
  padding-bottom: 5rem;
}

.hero {
  padding: 5.5rem 0 2.8rem;
}

.hero > .container,
.section-block > .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.hero-subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1.6rem;
  align-items: stretch;
}

.hero-home {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-home::before {
  width: 460px;
  height: 460px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.28), rgba(255, 149, 0, 0.04) 58%, transparent 70%);
  animation: floatGlow 12s ease-in-out infinite;
}

.hero-home::after {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(92, 255, 214, 0.16), rgba(92, 255, 214, 0.03) 58%, transparent 72%);
  animation: floatGlow 14s ease-in-out infinite reverse;
}

.hero-home .hero-grid {
  position: relative;
}

.hero-home .hero-grid::before {
  content: "";
  position: absolute;
  inset: -1rem -2rem auto -2rem;
  height: 220px;
  background:
    linear-gradient(90deg, transparent, rgba(92, 255, 214, 0.09), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 100%);
  opacity: 0.75;
  pointer-events: none;
}

.section-block {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.dashboard-panel,
.surface-card,
.cta-banner,
.table-shell {
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 12ch;
}

.hero-subpage h1 {
  max-width: 11ch;
}

.lead {
  font-size: 1.12rem;
  color: #ffe5d0;
  max-width: 64ch;
}

.eyebrow,
.panel-label,
.project-type,
.price-label,
.step-label {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(255, 59, 48, 0.28);
}

.button-secondary {
  color: var(--heading);
  border: 1px solid rgba(255, 94, 0, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-tags,
.footer-links,
.contact-list,
.signal-list,
.plain-list {
  list-style: none;
  padding: 0;
}

.hero-tags {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-tags li,
.project-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 94, 0, 0.15);
  color: #ffe5d0;
  font-size: 0.92rem;
}

.hero-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-status-item {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(92, 255, 214, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-status-item span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-status-item strong {
  display: block;
  color: var(--heading);
  font-size: 0.96rem;
  line-height: 1.35;
}

.dashboard-panel,
.surface-card,
.table-shell,
.cta-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28, 17, 17, 0.92), rgba(18, 11, 11, 0.88));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.surface-card:hover,
.dashboard-panel:hover {
  border-color: rgba(255, 94, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.52);
}

.dashboard-panel::before,
.surface-card::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.08), transparent 42%, rgba(255, 149, 0, 0.08));
  pointer-events: none;
}

.dashboard-panel,
.surface-card,
.cta-banner {
  padding: 1.6rem;
}

.dashboard-panel {
  background:
    radial-gradient(circle at top right, rgba(92, 255, 214, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(19, 14, 20, 0.96), rgba(10, 12, 18, 0.92));
  border-color: rgba(92, 255, 214, 0.12);
}

.dashboard-panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.panel-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(92, 255, 214, 0.12);
  border: 1px solid rgba(92, 255, 214, 0.18);
  color: #8ff8e2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-panel h2,
.surface-card h3,
.cta-banner h2,
.table-shell h2,
.contact-card h2 {
  margin-bottom: 0.9rem;
}

.signal-list,
.plain-list,
.contact-list {
  display: grid;
  gap: 0.9rem;
}

.signal-list li,
.plain-list li,
.contact-list li {
  position: relative;
  padding-left: 1.1rem;
}

.signal-list li::before,
.plain-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.dashboard-metrics,
.card-grid,
.process-grid,
.footer-grid,
.contact-layout,
.project-grid {
  display: grid;
  gap: 1rem;
}

.dashboard-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.compact-metrics .metric-card {
  min-height: 0;
}

.metric-card {
  min-height: 122px;
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-panel .metric-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 59, 48, 0.12), rgba(92, 255, 214, 0.08));
  border-color: rgba(255, 255, 255, 0.08);
}

.metric-card span {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  color: var(--heading);
  font-size: 1rem;
  line-height: 1.35;
}

.section-block {
  padding: 2rem 0 0.4rem;
}

.section-heading {
  margin-bottom: 1.4rem;
  max-width: 60rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section-heading h2,
.spotlight-copy h2,
.contact-card h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

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

.card-grid.three-up,
.process-grid,
.footer-grid,
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight,
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 1rem;
}

.process-card {
  min-height: 100%;
}

.price-card h3 {
  font-size: 1.9rem;
}

.featured-card {
  transform: translateY(-6px);
  border-color: rgba(255, 59, 48, 0.28);
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 18px, 0) scale(1.05); }
}

.table-shell {
  padding: 0.4rem;
}

.table-shell-tight {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
}

.pricing-table thead {
  background: rgba(255, 255, 255, 0.06);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table th {
  color: var(--heading);
  font-size: 0.92rem;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

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

.project-card {
  min-height: 100%;
}

.project-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.project-card img.project-thumb {
  width: 58px;
  height: 58px;
  min-width: 58px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 94, 0, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.project-card-header .project-topline {
  flex: 1;
  margin-bottom: 0;
}

.review-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.review-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.8rem 0 1rem;
}

.review-item {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-empty {
  margin: 0.2rem 0 0;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px dashed rgba(255, 94, 0, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.review-headline {
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-weight: 700;
}

.review-form .form-field {
  margin-bottom: 0;
}

.review-form textarea,
.review-form input,
.review-form select {
  border-radius: 16px;
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.project-type,
.price-label {
  margin-bottom: 0;
}

.project-meta {
  margin-bottom: 1rem;
  color: #ffe5d0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.text-link:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

.contact-list li {
  padding-left: 0;
  display: grid;
  gap: 0.28rem;
}

.contact-list li::before {
  display: none;
}

.contact-list span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-list a {
  color: var(--heading);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.contact-list a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.project-form {
  padding: 2rem;
}

.project-form form {
  display: grid;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-submit {
  width: fit-content;
  padding: 0.95rem 1.4rem;
  margin-top: 0.5rem;
}

.form-status {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--heading);
}

.form-status[data-state="success"] {
  border-color: rgba(255, 59, 48, 0.22);
  background: rgba(255, 59, 48, 0.08);
}

.form-status[data-state="error"] {
  border-color: rgba(255, 126, 126, 0.25);
  background: rgba(255, 126, 126, 0.08);
}

.empty-state-card {
  text-align: center;
  justify-items: center;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(100, 22, 14, 0.94), rgba(45, 12, 10, 0.96));
  border: 1px solid rgba(255, 94, 0, 0.28);
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-wrap {
  padding-top: 1rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(18, 11, 11, 0.9);
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--heading);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 1rem;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid rgba(92, 255, 214, 0.8);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .hero-subpage-grid,
  .spotlight,
  .contact-layout,
  .footer-grid,
  .project-grid,
  .card-grid.three-up,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-status-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-bar {
    min-height: 74px;
  }

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

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(18, 11, 11, 0.98);
    border: 1px solid rgba(255, 94, 0, 0.15);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .hero-home::before {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -140px;
  }

  .hero-home::after {
    width: 260px;
    height: 260px;
    left: -150px;
    bottom: -140px;
  }

  .dashboard-metrics,
  .card-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr {
    display: block;
    width: 100%;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tr {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pricing-table td {
    padding: 0.45rem 1rem;
    border: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .dashboard-panel,
  .surface-card,
  .cta-banner,
  .footer-grid {
    padding: 1.2rem;
  }

  [data-reveal] {
    transform: translateY(8px);
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
