/* ════════════════════════════════════════════════
   TOKENS & CSS VARIABLES
════════════════════════════════════════════════ */
:root {
  --clr-bg:       #faf7f3;
  --clr-surface:  #ffffff;
  --clr-ink:      #1c1410;
  --clr-ink2:     #5c4e3d;
  --clr-ink3:     #9c8a75;
  --clr-red:      #d93025;
  --clr-red-h:    #b8271e;
  --clr-blue:     #1565c0;
  --clr-border:   #e8ddd0;
  --clr-border2:  #d0c4b4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --ease:         cubic-bezier(.34,1.56,.64,1);
  --ease-out:     cubic-bezier(.16,1,.3,1);
}

/* ════════════════════════════════════════════════
   BASE RESET
════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-ink);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ════════════════════════════════════════════════
   COMMON HEADER / NAV
════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 68px;
  background: rgba(250,247,243,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-ink);
  line-height: 1.2;
}
.nav-logo-text span {
  color: var(--clr-red);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--clr-red);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  padding: .55rem 1.4rem;
  border-radius: 9999px;
  transition: background .2s, transform .15s var(--ease), box-shadow .15s;
  box-shadow: 0 2px 0 rgba(0,0,0,.18), 3px 4px 0 rgba(0,0,0,.1);
}
.nav-cta:hover {
  background: var(--clr-red-h);
  transform: translate(-2px,-2px);
  box-shadow: 0 2px 0 rgba(0,0,0,.18), 5px 6px 0 rgba(0,0,0,.1);
}

/* Legal Nav Variant (Sticky instead of Fixed) */
.nav-legal {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem,5vw,4rem);
  height: 64px;
  background: rgba(250,247,243,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--clr-ink2);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover {
  color: var(--clr-red);
}
.nav-links a.active {
  color: var(--clr-red);
  font-weight: 600;
}
.btn-login {
  display: inline-flex;
  align-items: center;
  background: var(--clr-red);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  padding: .45rem 1.2rem;
  border-radius: 9999px;
  transition: background .15s;
}
.btn-login:hover {
  background: #b8271e;
}

/* ════════════════════════════════════════════════
   COMMON FOOTER
════════════════════════════════════════════════ */
footer {
  background: var(--clr-ink);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
footer a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .8rem;
  transition: color .15s;
}
footer a:hover {
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* ════════════════════════════════════════════════
   LANDING PAGE (PUBLIC) STYLES
════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-left {
  position: relative; z-index: 1;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--clr-red); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--clr-red); border-radius: 1px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--clr-ink);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--clr-red);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 4px;
  background: var(--clr-red); opacity: .25; border-radius: 2px;
}
.hero-desc {
  font-size: 1.05rem; color: var(--clr-ink2);
  max-width: 460px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-btns {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--clr-red); color: #fff;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: .75rem 2rem; border-radius: 9999px;
  transition: background .18s, transform .15s var(--ease), box-shadow .15s;
  box-shadow: 0 2px 0 rgba(0,0,0,.18), 4px 5px 0 rgba(0,0,0,.12);
}
.btn-primary:hover {
  background: var(--clr-red-h);
  transform: translate(-2px,-2px);
  box-shadow: 0 2px 0 rgba(0,0,0,.18), 6px 7px 0 rgba(0,0,0,.12);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--clr-ink2); text-decoration: none;
  font-weight: 500; font-size: .95rem;
  padding: .75rem 1.5rem;
  border: 1.5px solid var(--clr-border2); border-radius: 9999px;
  transition: border-color .15s, color .15s, background .15s;
}
.btn-secondary:hover {
  border-color: var(--clr-ink); color: var(--clr-ink);
  background: rgba(28,20,16,.04);
}
.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--clr-ink);
  background-image: url('/assets/img/background.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-mockup {
  width: 100%; max-width: 440px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  animation: float-mock 6s ease-in-out infinite;
}
@keyframes float-mock {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.mock-topbar {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mock-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--clr-red);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.mock-user { flex: 1; }
.mock-user-name { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9); }
.mock-user-role { font-size: .7rem; color: rgba(255,255,255,.4); }
.mock-badge {
  font-size: .65rem; font-weight: 700; padding: 2px 8px;
  border-radius: 9999px; text-transform: uppercase; letter-spacing: .05em;
}
.mock-badge-green  { background: rgba(59,178,115,.2); color: #7ee4a0; }
.mock-badge-orange { background: rgba(244,162,97,.2); color: #fac97e; }
.mock-badge-red    { background: rgba(217,48,37,.2);  color: #ff8a80; }

.mock-title { font-size: .72rem; font-weight: 700; text-transform: uppercase;
              letter-spacing: .09em; color: rgba(255,255,255,.35);
              margin-bottom: .65rem; }
.mock-hw-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: .65rem .85rem;
  margin-bottom: .5rem;
  display: flex; align-items: center; gap: .75rem;
  animation: slide-in .4s var(--ease-out) both;
}
.mock-hw-item:nth-child(1) { animation-delay: .1s; }
.mock-hw-item:nth-child(2) { animation-delay: .2s; }
.mock-hw-item:nth-child(3) { animation-delay: .3s; }
@keyframes slide-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mock-hw-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-hw-content { flex: 1; min-width: 0; }
.mock-hw-name { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85);
                white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-hw-sub  { font-size: .68rem; color: rgba(255,255,255,.4); margin-top: 1px; }

.mock-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: .5rem; margin-top: 1rem;
}
.mock-stat {
  background: rgba(255,255,255,.05);
  border-radius: 10px; padding: .6rem;
  text-align: center;
}
.mock-stat-num { font-size: 1.3rem; font-weight: 700; color: #fff; line-height: 1; }
.mock-stat-lbl { font-size: .62rem; color: rgba(255,255,255,.35);
                 text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* FEATURES SECTION */
.section {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px; margin: 0 auto;
}
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--clr-red);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--clr-red); border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -.02em; color: var(--clr-ink);
  margin-bottom: 1rem; max-width: 640px;
}
.section-sub {
  font-size: 1rem; color: var(--clr-ink2);
  max-width: 560px; line-height: 1.75; margin-bottom: 3.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,20,16,.1);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-red), #f97316);
  opacity: 0; transition: opacity .25s;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(217,48,37,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--clr-ink); margin-bottom: .5rem;
}
.feature-desc {
  font-size: .9rem; color: var(--clr-ink2); line-height: 1.65;
}

/* ROLES SECTION */
.roles-section {
  background: var(--clr-ink);
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}
.roles-inner {
  max-width: 1200px; margin: 0 auto;
}
.roles-section .section-label { color: rgba(255,255,255,.4); }
.roles-section .section-label::before { background: rgba(255,255,255,.4); }
.roles-section .section-title { color: #fff; }
.roles-section .section-sub  { color: rgba(255,255,255,.5); }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.role-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.75rem 1.5rem;
  transition: background .2s, transform .25s var(--ease);
}
.role-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
}
.role-emoji { font-size: 2rem; margin-bottom: .75rem; }
.role-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; color: #fff;
  margin-bottom: .5rem;
}
.role-desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.65; }
.role-perms {
  margin-top: 1rem; display: flex; flex-direction: column; gap: .3rem;
}
.role-perm {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.55);
}
.role-perm::before {
  content: '✓'; color: #7ee4a0;
  font-weight: 700; font-size: .7rem;
  flex-shrink: 0;
}

/* ABOUT STRIP */
.about-strip {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  align-items: center; gap: 4rem;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.about-logo-wrap {
  flex-shrink: 0;
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--clr-border2);
  box-shadow: 0 8px 32px rgba(28,20,16,.1);
}
.about-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--clr-red);
  margin-bottom: 1rem;
}
.about-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--clr-red); border-radius: 1px;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; line-height: 1.2;
  letter-spacing: -.02em; color: var(--clr-ink);
  margin-bottom: .75rem;
}
.about-text { font-size: .95rem; color: var(--clr-ink2); line-height: 1.75; max-width: 560px; }

/* ════════════════════════════════════════════════
   LEGAL STRIPS & PAGES STYLES (legal.php & datenschutz.php)
════════════════════════════════════════════════ */
.page-hero {
  background: var(--clr-ink);
  padding: 4rem clamp(1.5rem,5vw,4rem) 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.page-hero-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--clr-red); border-radius: 1px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -.02em;
}

/* TAB SWITCHER */
.tab-bar {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 0 clamp(1.5rem,5vw,4rem);
  display: flex; gap: 0;
  max-width: 100%;
}
.tab-link {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: 1rem 1.5rem;
  font-size: .9rem; font-weight: 600;
  color: var(--clr-ink3); text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.tab-link:hover { color: var(--clr-ink); }
.tab-link.active {
  color: var(--clr-red);
  border-bottom-color: var(--clr-red);
}

/* GENERAL WRAPPERS & CARDS */
.page-wrapper {
  max-width: 780px; margin: 0 auto;
  padding: clamp(3rem,8vw,6rem) clamp(1.5rem,5vw,2rem) 5rem;
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--clr-red);
  margin-bottom: 1rem;
}
.page-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--clr-red); border-radius: 1px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.02em; color: var(--clr-ink);
  margin-bottom: 2.5rem;
}

.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem,5vw,2rem) 6rem;
}
.content-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: clamp(1.75rem,4vw,3rem);
  margin-bottom: 1.5rem;
  scroll-margin-top: 80px;
}
.content-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--clr-ink);
  margin-bottom: 1rem; padding-bottom: .6rem;
  border-bottom: 2px solid var(--clr-border);
  display: flex; align-items: center; gap: .6rem;
}
.content-card h2 .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(217,48,37,.1); color: var(--clr-red);
  font-size: .78rem; font-weight: 800; flex-shrink: 0;
}
.content-card h3 {
  font-size: .95rem; font-weight: 700;
  color: var(--clr-ink); margin: 1.25rem 0 .4rem;
}
.content-card p {
  font-size: .92rem; color: var(--clr-ink2);
  margin-bottom: .75rem; line-height: 1.75;
}
.content-card p:last-child { margin-bottom: 0; }
.content-card ul {
  padding-left: 1.25rem; margin-bottom: .75rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.content-card ul li { font-size: .92rem; color: var(--clr-ink2); line-height: 1.65; }
.content-card a {
  color: var(--clr-red); text-decoration: none; font-weight: 500;
}
.content-card a:hover { text-decoration: underline; }

/* LEGAL SECTIONS */
.legal-section { margin-bottom: 3rem; }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--clr-ink); margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--clr-border);
  display: flex; align-items: center; gap: .5rem;
}
.legal-section h2::before {
  content: ''; display: block;
  width: 4px; height: 1.2em;
  background: var(--clr-red); border-radius: 2px;
  flex-shrink: 0;
}
.legal-section h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--clr-ink); margin: 1.5rem 0 .4rem;
}
.legal-section p {
  color: var(--clr-ink2); margin-bottom: .75rem; font-size: .95rem;
}
.legal-section ul {
  color: var(--clr-ink2); padding-left: 1.25rem;
  margin-bottom: .75rem; font-size: .95rem;
}
.legal-section ul li { margin-bottom: .3rem; }

/* UTILITY MODULES */
.contact-box {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 1.25rem 0;
  font-size: .95rem; color: var(--clr-ink2);
  line-height: 2;
}
.contact-box strong { color: var(--clr-ink); }

.placeholder {
  display: inline-block;
  background: rgba(217,48,37,.08);
  color: var(--clr-red);
  border: 1px dashed rgba(217,48,37,.35);
  border-radius: 4px;
  padding: 0 .4rem; font-size: .88em;
  font-style: italic;
}

.info-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(217,48,37,.06);
  border: 1px solid rgba(217,48,37,.15);
  border-radius: 9999px;
  padding: .3rem .9rem;
  font-size: .8rem; font-weight: 600; color: var(--clr-red);
  margin-bottom: 1.5rem;
}

/* TOC Table of Contents */
.toc {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 16px; padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.toc h2 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--clr-ink);
  margin-bottom: .75rem;
}
.toc ol {
  padding-left: 1.25rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.toc a {
  font-size: .88rem; color: var(--clr-ink2); text-decoration: none;
  transition: color .15s;
}
.toc a:hover { color: var(--clr-red); }

/* BOXES */
.highlight-box {
  background: rgba(217,48,37,.05);
  border: 1px solid rgba(217,48,37,.18);
  border-radius: 10px; padding: 1rem 1.25rem;
  font-size: .88rem; color: var(--clr-ink2);
  margin: .75rem 0; line-height: 1.65;
}
.highlight-box strong { color: var(--clr-ink); }

.info-box {
  background: rgba(217,48,37,.05);
  border: 1px solid rgba(217,48,37,.2);
  border-radius: 10px; padding: 1rem 1.25rem;
  font-size: .9rem; color: var(--clr-ink2);
  margin-top: 1rem; line-height: 1.65;
}
.info-box strong { color: var(--clr-ink); }

/* ════════════════════════════════════════════════
   SCROLL & MICRO ANIMATIONS
════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   MEDIA QUERIES (RESPONSIVE DESIGN)
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    clip-path: none;
    min-height: auto;
    padding: 3rem 1.5rem 4rem;
  }
  .hero-mockup { max-width: 360px; }
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-logo-wrap { margin: 0 auto; }
  .about-eyebrow { justify-content: center; }
}

@media (max-width: 600px) {
  .nav-links a:not(.active):not(:last-child) { display: none; }
  .nav-logo-text { display: none; }
  .tab-link { padding: .85rem 1rem; font-size: .82rem; }
}

@media (max-width: 480px) {
  .nav-logo-text { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
}
