/* ============================================================
   SGRID — styles.css
   Structure: Reset → Variables → Base → Layout → Navbar →
              Footer → Buttons → Forms → Home → Interior Pages → Responsive
   ============================================================ */


/* ========================
   1. RESET
   ======================== */

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}


/* ========================
   2. VARIABLES
   ======================== */

:root {
  /* Colors — dark mode (default) */
  --color-bg:           #0a0a0a;
  --color-surface:      #141414;
  --color-surface-2:    #1f1f1f;
  --color-text:         #f0f0f0;
  --color-text-muted:   #888888;
  --color-accent:       #009933;
  --color-accent-dark:  #007a28;
  --color-border:       #2a2a2a;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Layout */
  --max-width:  1200px;
  --radius:     8px;
  --radius-lg:  16px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.25rem;
  --text-lg:   1.75rem;
  --text-xl:   2.5rem;
  --text-2xl:  3.5rem;
  --text-3xl:  4.5rem;
}


/* ========================
   2b. DARK MODE OVERRIDES
   ======================== */

[data-theme="light"] {
  --color-bg:           #f4f4f4;
  --color-surface:      #ffffff;
  --color-surface-2:    #eaeaea;
  --color-text:         #111111;
  --color-text-muted:   #555555;
  --color-border:       #d4d4d4;
}

/* Grid rails — full grid pattern in margin strips on both sides */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: max(0px, calc(50vw - 600px));
  background-image:
    linear-gradient(rgba(0, 153, 51, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 51, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

body::before { left: 0; }
body::after  { right: 0; }

[data-theme="light"] body::before,
[data-theme="light"] body::after {
  background-image:
    linear-gradient(rgba(0, 153, 51, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 51, 0.09) 1px, transparent 1px);
}



/* ========================
   3. BASE
   ======================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ========================
   4. LAYOUT UTILITIES
   ======================== */

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

.section__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: clamp(var(--text-lg), 4vw, var(--text-xl));
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.section__sub {
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-size: var(--text-base);
}


/* ========================
   5. NAVBAR
   ======================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-text);
  flex-shrink: 0;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

.nav__cta {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: var(--radius);
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.nav__cta:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.25s, opacity 0.25s;
}

/* Theme toggle */
.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 64px;
  height: 32px;
  padding: 4px;
  border-radius: 9999px;
  cursor: pointer;
  background: #000000;
  border: 1px solid var(--color-border);
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

[data-theme="light"] .theme-toggle {
  background: #ffffff;
}

.theme-toggle__knob {
  position: absolute;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #27272a;
  color: #ffffff;
  transition: transform 0.3s ease, background 0.3s, color 0.3s;
  transform: translateX(0);
}

[data-theme="light"] .theme-toggle__knob {
  background: #e4e4e7;
  color: #3f3f46;
  transform: translateX(32px);
}

.theme-toggle__passive {
  position: absolute;
  right: 8px;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #6b7280;
  transition: left 0.3s, right 0.3s;
}

[data-theme="light"] .theme-toggle__passive {
  right: auto;
  left: 8px;
  color: #9ca3af;
}

/* Icon visibility — dark mode defaults */
.theme-toggle__knob .theme-toggle__moon   { display: block; }
.theme-toggle__knob .theme-toggle__sun    { display: none; }
.theme-toggle__passive .theme-toggle__sun  { display: block; }
.theme-toggle__passive .theme-toggle__moon { display: none; }

/* Icon visibility — light mode */
[data-theme="light"] .theme-toggle__knob .theme-toggle__moon   { display: none; }
[data-theme="light"] .theme-toggle__knob .theme-toggle__sun    { display: block; }
[data-theme="light"] .theme-toggle__passive .theme-toggle__sun  { display: none; }
[data-theme="light"] .theme-toggle__passive .theme-toggle__moon { display: block; }


/* ========================
   6. FOOTER
   ======================== */

.footer {
  border-top: 1px solid var(--color-border);
}

.footer__top {
  padding-block: var(--space-xl) var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: var(--space-lg) var(--space-md);
  align-items: start;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: var(--space-xs);
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer__col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

.footer__col-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.footer__newsletter-form {
  display: flex;
  margin-bottom: var(--space-sm);
}

.footer__newsletter-input {
  flex: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--color-text);
  font-size: var(--text-sm);
  padding: 0.6rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer__newsletter-input::placeholder {
  color: var(--color-text-muted);
}

.footer__newsletter-input:focus {
  border-color: var(--color-accent);
}

.footer__newsletter-btn {
  background: var(--color-accent);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  transition: background 0.2s;
}

.footer__newsletter-btn:hover {
  background: var(--color-accent-dark);
}

.footer__col-contact {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 2;
}

.footer__col-contact a {
  transition: color 0.2s;
}

.footer__col-contact a:hover {
  color: var(--color-text);
}

.footer__wordmark {
  line-height: 0;
  position: relative;
  z-index: 2;
  background: radial-gradient(ellipse at 0% 100%, rgba(0, 153, 51, 0.2) 0%, transparent 58%);
}

.footer__wordmark-svg {
  width: 100%;
  display: block;
}

.footer__bar {
  position: relative;
  z-index: 2;
  padding-block: var(--space-md);
}

.footer__bar-inner {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.footer__social-link {
  display: flex;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

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

.footer__wm-base {
  fill: none;
  stroke: none;
}

.footer__wm-draw,
.footer__wm-color {
  stroke-width: 1.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.footer__wm-draw {
  fill: var(--color-bg);
  stroke: #009933;
  paint-order: stroke fill;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: wm-draw 4s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes wm-draw {
  to { stroke-dashoffset: 0; }
}

.footer__wm-color {
  display: none;
}



/* ========================
   7. BUTTONS
   ======================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-base);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.btn--primary {
  background-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 153, 51, 0.25), 0 0 40px rgba(0, 153, 51, 0.08);
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  box-shadow: 0 0 24px rgba(0, 153, 51, 0.4), 0 0 60px rgba(0, 153, 51, 0.14);
}

.btn--outline {
  background-color: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-text-muted);
}


/* ========================
   8. FORMS
   ======================== */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.form__input,
.form__textarea {
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}


/* ========================
   HOME — HERO
   ======================== */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-lines {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(0px, calc(50vw - 600px));
  right: max(0px, calc(50vw - 600px));
  pointer-events: none;
  z-index: 0;
}

@keyframes hero-line-h {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1580; }
}

@keyframes hero-line-v {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -880; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  align-items: center;
}

.hero__content {
  min-width: 0;
  margin-left: -3.5rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  white-space: nowrap;
}

.hero__headline {
  font-size: clamp(1.6rem, 3vw, var(--text-xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.hero__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.hero__phone {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 0 14px rgba(0, 153, 51, 0.2);
  white-space: nowrap;
}

.hero__phone:hover {
  color: var(--color-text);
  text-shadow: 0 0 18px rgba(0, 153, 51, 0.35);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.trust-text {
  animation: trust-text-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-check {
  animation: trust-check-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-item:nth-child(1) .trust-text  { animation-delay: 1.5s; }
.trust-item:nth-child(1) .trust-check { animation-delay: 1.7s; }
.trust-item:nth-child(2) .trust-text  { animation-delay: 1.8s; }
.trust-item:nth-child(2) .trust-check { animation-delay: 2s; }
.trust-item:nth-child(3) .trust-text  { animation-delay: 2.1s; }
.trust-item:nth-child(3) .trust-check { animation-delay: 2.3s; }

@keyframes trust-text-in {
  0%   { opacity: 0; transform: translateX(-14px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes trust-check-in {
  0%   { opacity: 0; transform: scale(0) rotate(-30deg); color: var(--color-accent); }
  50%  { opacity: 1; transform: scale(1.3) rotate(8deg);  color: var(--color-accent); }
  70%  { transform: scale(1) rotate(0deg);                color: var(--color-accent); }
  100% { opacity: 1; transform: scale(1);                 color: var(--color-text-muted); }
}

/* Browser mockup */
.hero__visual {
  position: relative;
  padding-left: 13rem;
}

.mockup-browser {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.05);
  overflow: hidden;
  width: calc(100% + 6rem);
}

.mockup-browser__bar {
  background: var(--color-bg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--color-border);
}

.mockup-browser__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
}

.mockup-browser__url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-radius: 20px;
  padding: 2px 12px;
  border: 1px solid var(--color-border);
}

.mockup-browser__screen {
  padding: 24px;
}

.mockup-screen__nav {
  height: 32px;
  background: var(--color-bg);
  border-radius: 4px;
  margin-bottom: 20px;
}

.mockup-screen__hero-area {
  background: var(--color-surface-2);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin-bottom: 20px;
}

.mockup-screen__line {
  height: 11px;
  border-radius: 3px;
  background: var(--color-text);
  opacity: 0.15;
  margin-bottom: 9px;
}

.mockup-screen__line--title {
  width: 65%;
  height: 18px;
  opacity: 0.25;
}

.mockup-screen__line--sub {
  width: 90%;
  opacity: 0.1;
}

.mockup-screen__line--short {
  width: 60%;
}

.mockup-screen__cta {
  height: 30px;
  width: 120px;
  background: var(--color-accent);
  border-radius: 5px;
  margin-top: 18px;
  opacity: 0.85;
}

.mockup-screen__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-screen__card {
  height: 80px;
  background: var(--color-surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.mockup-screen__footer {
  height: 20px;
  background: var(--color-bg);
  border-radius: 4px;
  opacity: 0.6;
}

/* Evervault hover effect */
.mockup-evervault {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 5;
  border-radius: inherit;
}

/* Bar — same structure/bg as .mockup-browser__bar, replaces it completely */
.mockup-ev__bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-ev__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0,153,51,0.4);
  flex-shrink: 0;
}

.mockup-ev__url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--color-accent);
  background: var(--color-surface);
  border-radius: 20px;
  padding: 2px 12px;
  border: 1px solid rgba(0,153,51,0.4);
  animation: ev-url-glow 4s ease-in-out infinite;
}

@keyframes ev-url-glow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 6px rgba(0,153,51,0.4); }
}

/* Screen — same padding as .mockup-browser__screen */
.mockup-ev__screen {
  padding: 24px;
}

.mockup-ev__nav {
  height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mockup-ev__hero {
  background: rgba(0,153,51,0.07);
  border: 1px solid rgba(0,153,51,0.18);
  border-radius: var(--radius);
  height: 200px;
  margin-bottom: 20px;
  position: relative;
}

.mockup-ev__nummer {
  position: absolute;
  bottom: 36px;
  left: 28px;
  width: 120px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mockup-ev__sparkle {
  display: inline-block;
  font-size: 0.45rem;
  color: var(--color-accent);
  margin-left: 3px;
  vertical-align: middle;
  animation: ev-twinkle 3s ease-in-out infinite;
}

@keyframes ev-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(180deg); text-shadow: 0 0 8px rgba(0,153,51,0.6); }
}

.mockup-ev__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-ev__footer {
  height: 20px;
  background: rgba(0,153,51,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(0,153,51,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mockup-ev__cards > div {
  height: 80px;
  background: rgba(0,153,51,0.07);
  border: 1px solid rgba(0,153,51,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.6;
}


/* Hint cursor for mockup hover demo */
.mockup-hint-cursor {
  position: absolute;
  width: 16px;
  height: 20px;
  pointer-events: none;
  z-index: 30;
  opacity: 0;
  filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.4));
}

/* Floating PageSpeed badge */
.mockup-badge {
  position: absolute;
  bottom: -14px;
  right: calc(-6rem - 14px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mockup-badge__score {
  position: relative;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.mockup-badge__score::after {
  content: '✦';
  position: absolute;
  top: -6px;
  left: -10px;
  font-size: 0.62rem;
  color: var(--color-accent);
  text-shadow: 0 0 6px rgba(0,153,51,0.8), 0 0 16px rgba(0,153,51,0.4);
  animation: badge-spin 7s linear infinite;
}

@keyframes badge-spin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

.mockup-badge__label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}


/* ========================
   HOME — SERVICES TEASER
   ======================== */

.services-teaser {
  background-color: var(--color-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  border-color: var(--color-accent);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.service-card__title {
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.service-card__link:hover {
  gap: 0.6rem;
}


/* ========================
   HOME — DIFFERENTIATORS
   ======================== */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.diff-item {
  padding: var(--space-md);
  border-left: 3px solid var(--color-accent);
}

.diff-item__title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.diff-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ========================
   HOME — ABOUT TEASER
   ======================== */

.about-teaser {
  background-color: var(--color-surface);
}

.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-teaser__photo {
  aspect-ratio: 4/5;
  background-color: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  overflow: hidden;
}

.about-teaser__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========================
   HOME — PROOF / STATS
   ======================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__number {
  font-size: clamp(var(--text-xl), 5vw, var(--text-2xl));
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}


/* ========================
   HOME — CONTACT SECTION
   ======================== */

.contact {
  background-color: var(--color-surface);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__phone-block {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact__phone-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact__phone-number {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.2s;
}

.contact__phone-number:hover {
  color: var(--color-accent);
}


/* ========================
   INTERIOR — PAGE HERO
   ======================== */

.page-hero {
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.page-hero__title {
  font-size: clamp(var(--text-xl), 5vw, var(--text-2xl));
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.page-hero__sub {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.7;
}


/* ========================
   LEISTUNGEN PAGE
   ======================== */

.leistungen-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.leistung-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.leistung-block__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  margin-bottom: var(--space-sm);
}

.leistung-block__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.leistung-block__desc {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.leistung-block__includes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.leistung-block__includes li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.leistung-block__includes li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.leistung-block__right-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.process-step {
  text-align: center;
  padding: var(--space-md);
}

.process-step__num {
  width: 52px;
  height: 52px;
  background-color: var(--color-accent);
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-sm);
}

.process-step__title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: var(--text-md);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ========================
   ÜBER MICH PAGE
   ======================== */

.about-page__intro {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-page__photo {
  aspect-ratio: 3/4;
  background-color: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.about-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page__headline {
  font-size: clamp(var(--text-xl), 4vw, var(--text-2xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.about-page__lead {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-section {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
}

.about-section__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.about-section__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 70ch;
}

.about-section__text + .about-section__text {
  margin-top: var(--space-sm);
}

.about-highlight-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ========================
   KONTAKT PAGE
   ======================== */

.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.kontakt__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.kontakt__info-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.kontakt__info-value {
  font-size: var(--text-md);
  font-weight: 600;
  transition: color 0.2s;
}

.kontakt__info-value:hover {
  color: var(--color-accent);
}

.kontakt__response {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  line-height: 1.6;
  margin-top: var(--space-md);
}


/* ========================
   INLINE CTA BLOCK (reusable)
   ======================== */

.cta-block {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.cta-block__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.cta-block__sub {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.cta-block__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


/* ========================
   RESPONSIVE
   ======================== */

/* ========================
   GRID LINE SYSTEM
   ======================== */

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

footer.footer {
  overflow: hidden;
}

/* Base pseudo-element slot — used by hero grid and section separators */
section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Hero grid — full section, viewport-anchored (matches body side rails) */
.hero::before {
  background-image:
    linear-gradient(rgba(0, 153, 51, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 51, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  background-attachment: fixed;
}

[data-theme="light"] .hero::before {
  background-image:
    linear-gradient(rgba(0, 153, 51, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 51, 0.09) 1px, transparent 1px);
}

/* Section separators — 3 horizontal grid lines at section boundaries */
section + section::before {
  inset: unset;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 153, 51, 0.22);
  box-shadow: 0 56px 0 rgba(0, 153, 51, 0.13), 0 112px 0 rgba(0, 153, 51, 0.07);
  z-index: 1;
}

[data-theme="light"] section + section::before {
  background: rgba(0, 153, 51, 0.18);
  box-shadow: 0 56px 0 rgba(0, 153, 51, 0.10), 0 112px 0 rgba(0, 153, 51, 0.06);
}

/* Content floats above the grid pseudo-elements */
.container {
  position: relative;
  z-index: 2;
}

/* Bolt SVGs are injected by JS — no CSS needed here */


/* ========================
   GLOWING BORDER EFFECT
   ======================== */

/* Conic-gradient border masked to border ring only, rotates toward cursor */
.service-card::after,
.leistung-block::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from calc((var(--glow-angle, 0) - 25) * 1deg) at 50% 50%,
    transparent 0deg,
    rgba(0, 153, 51, 0.9),
    transparent 50deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: var(--glow-visible, 0);
  transition: opacity 0.4s ease;
  z-index: 2;
}


/* ========================
   HOME — TESTIMONIALS
   ======================== */

.testimonials__columns {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  max-height: 680px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
}

.testimonials__col {
  flex: 0 0 280px;
  overflow: hidden;
}

.testimonials__col--md { display: none; }
.testimonials__col--lg { display: none; }

@media (min-width: 768px)  { .testimonials__col--md { display: block; } }
@media (min-width: 1024px) { .testimonials__col--lg { display: block; } }

.testimonials__col-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  animation: testimonials-scroll 20s linear infinite;
}

.testimonials__col-inner--slow { animation-duration: 27s; }
.testimonials__col-inner--mid  { animation-duration: 23s; }

@keyframes testimonials-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  width: 280px;
  flex-shrink: 0;
}

/* skeleton lines */
.t-line {
  background: var(--color-surface-2);
  border-radius: 4px;
  height: 11px;
  margin-bottom: 9px;
  position: relative;
  overflow: hidden;
}

.t-line--full  { width: 100%; }
.t-line--mid   { width: 76%; }
.t-line--short { width: 50%; }
.t-line--name  { width: 108px; height: 10px; }
.t-line--role  { width: 74px;  height: 9px; margin-bottom: 0; opacity: 0.6; }

.t-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 50%, transparent);
  animation: t-shimmer 2.4s ease-in-out infinite;
}

@keyframes t-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.t-author {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.t-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-surface-2);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.t-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 50%, transparent);
  animation: t-shimmer 2.4s ease-in-out infinite;
}

.t-author__meta { flex: 1; }

/* CTA card */
.testimonial-card--cta {
  border-color: var(--color-accent);
  border-style: dashed;
}

.cta--hidden {
  display: none;
}

.testimonial-card__spark {
  display: block;
  font-size: 0.65rem;
  color: var(--color-accent);
  text-shadow: 0 0 6px rgba(0,153,51,0.8), 0 0 16px rgba(0,153,51,0.4);
  animation: badge-spin 7s linear infinite;
  margin-bottom: var(--space-xs);
  width: fit-content;
}

.testimonial-card__cta-quote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.t-avatar--cta {
  border: 1px dashed var(--color-border);
}

.t-avatar--cta::after { display: none; }

.testimonial-card__cta-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.testimonial-card__cta-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.3;
}

.testimonial-card__cta-link:hover { opacity: 0.8; }

/* real testimonial card (future use) */
.testimonial-card__quote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.testimonial-card__role {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.3;
}

.testimonial-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-surface-2);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========================
   FAQ
   ======================== */

.faq__list {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-size: var(--text-md);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding-bottom: var(--space-md);
  color: var(--color-text-muted);
  max-width: 720px;
  line-height: 1.7;
}

.faq__pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.faq__pricing-option {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
}

.faq__pricing-option--featured {
  border-color: var(--color-accent);
}

.faq__pricing-badge {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  position: relative;
  min-height: 1.3em;
}

.faq__pricing-badge--empty {
  visibility: hidden;
}

.faq__pricing-option--featured .faq__pricing-badge::before {
  content: '✦';
  position: absolute;
  top: -3px;
  left: -12px;
  font-size: 0.55rem;
  color: var(--color-accent);
  text-shadow: 0 0 6px rgba(0,153,51,0.8), 0 0 16px rgba(0,153,51,0.4);
  animation: badge-spin 7s linear infinite;
}

.faq__pricing-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.faq__pricing-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.faq__pricing-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.faq__pricing-plus {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.faq__pricing-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.faq__pricing-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq__pricing {
    grid-template-columns: 1fr;
  }
}


/* ========================
   LEGAL PAGES
   ======================== */

.legal {
  max-width: 720px;
}

.legal h2 {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

.legal h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.legal li {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 0.25rem;
}

.legal a {
  color: var(--color-accent);
}

.legal a:hover {
  text-decoration: underline;
}

.legal__meta {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}


/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 5rem;
  }

  /* Mobile nav */
  .nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md);
    gap: var(--space-sm);
    z-index: 99;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav {
    position: sticky;
    overflow: visible;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  /* Single column layouts */
  .about-teaser__inner,
  .contact__inner,
  .leistung-block,
  .about-page__intro,
  .kontakt__inner,
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: unset;
  }

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

  .hero__content {
    margin-left: 0;
  }

  .hero__visual {
    padding-left: 0;
    margin-top: var(--space-md);
  }

  .mockup-browser {
    width: 100%;
  }

  .mockup-badge {
    display: none;
  }

  .mockup-hint-cursor {
    display: none;
  }

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

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__wordmark-svg {
    max-height: 100px;
  }

  .footer__bar-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .about-page__photo {
    aspect-ratio: 1/1;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 4rem;
  }

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

  .footer__wordmark-svg {
    max-height: 80px;
  }

  .footer__bar-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

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

  .cta-block__actions {
    flex-direction: column;
  }
}
