/* ============================================
   CASA CARE — Design tokens (2026 dark glass refresh)
   ============================================ */
:root{
  --color-bg:         #1B241D;
  --color-bg-alt:      #212B23;
  --color-bg-elevated: #283428;
  --color-text:       #FAF6EC;
  --color-text-soft:  rgba(250,246,236,0.76);
  --color-text-dim:   rgba(250,246,236,0.5);

  --color-moss:       #7FA571;
  --color-moss-deep:  #324A2C;
  --color-moss-light: #B0CD9F;
  --color-terracotta: #E98F52;
  --color-terracotta-light: #F8BC85;
  --color-ochre:      #EDBE66;
  --color-ochre-light:#FFDE9E;

  --color-border:     rgba(255,255,255,0.14);
  --color-border-soft:rgba(255,255,255,0.08);

  /* glass */
  --glass-bg:         rgba(255,255,255,0.075);
  --glass-bg-strong:  rgba(255,255,255,0.13);
  --glass-border:     rgba(255,255,255,0.20);
  --glass-blur: 30px;
  --shadow-glass: 0 1px 0 rgba(255,255,255,0.09) inset, 0 26px 50px -22px rgba(0,0,0,0.6);
  --shadow-glass-lg: 0 1px 0 rgba(255,255,255,0.11) inset, 0 40px 76px -26px rgba(0,0,0,0.7);
  --glow-ochre: 0 0 70px -14px rgba(237,190,102,0.6);
  --glow-moss: 0 0 70px -14px rgba(127,165,113,0.55);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1180px;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 30px;
  --radius-xl: 40px;

  --ease: cubic-bezier(.22,.68,0,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  overflow-x:clip;
  width:100%;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--color-bg);
  color:var(--color-text);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  position:relative;
  overflow-x:clip;
  width:100%;
}

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 32px; position:relative; }
.mono{ font-family:var(--font-mono); font-feature-settings:"tnum" 1; }

/* ============================================
   Ambient gradient mesh + grain
   ============================================ */
/* Fixed to the viewport (not the document) so the glow travels WITH the
   user as they scroll — every section passes through the same handful of
   soft, continuous light pools instead of each getting its own hard-edged
   clipped blob (that boxy look is exactly what we're avoiding here). */
.mesh-bg{
  position:fixed; inset:0; z-index:-2; overflow:hidden; pointer-events:none;
}
.mesh-bg span{
  position:absolute; border-radius:50%; filter:blur(120px); opacity:0.5;
  animation:drift 26s ease-in-out infinite alternate;
}
.mesh-bg span:nth-child(1){ width:50vw; height:50vw; top:-14vw; left:-14vw; background:radial-gradient(circle, var(--color-moss-light), transparent 70%); animation-duration:30s; }
.mesh-bg span:nth-child(2){ width:44vw; height:44vw; top:-6vw; right:-16vw; background:radial-gradient(circle, var(--color-ochre-light), transparent 70%); animation-duration:24s; animation-delay:-6s; }
.mesh-bg span:nth-child(3){ width:42vw; height:42vw; bottom:-16vw; left:10vw; background:radial-gradient(circle, var(--color-terracotta-light), transparent 70%); opacity:0.4; animation-duration:34s; animation-delay:-12s; }
.mesh-bg span:nth-child(4){ width:38vw; height:38vw; bottom:-14vw; right:-10vw; background:radial-gradient(circle, var(--color-moss-light), transparent 70%); opacity:0.38; animation-duration:28s; animation-delay:-18s; }
.mesh-bg span:nth-child(5){ width:34vw; height:34vw; top:32vh; left:36vw; background:radial-gradient(circle, var(--color-ochre-light), transparent 70%); opacity:0.28; animation-duration:22s; animation-delay:-9s; }
@keyframes drift{
  0%{ transform:translate(0,0) scale(1); }
  100%{ transform:translate(3vw,4vw) scale(1.14); }
}
@media (prefers-reduced-motion: reduce){ .mesh-bg span{ animation:none; } }

.grain-overlay{
  position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity:0.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   Glass surfaces (shared) — real transparent, blurred glass
   ============================================ */
.glass{
  background:
    linear-gradient(155deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 55%, rgba(231,182,92,0.05) 100%),
    var(--glass-bg);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter:blur(var(--glass-blur)) saturate(180%);
  box-shadow:var(--shadow-glass);
  position:relative;
}
.glass::before{
  content:""; position:absolute; inset:0; border-radius:inherit; padding:1px;
  background:linear-gradient(160deg, rgba(255,255,255,0.55), rgba(255,255,255,0) 40%, rgba(255,255,255,0.14) 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none;
}
.glass-strong{ background:var(--glass-bg-strong); }

/* ============================================
   Typography
   ============================================ */
h1,h2,h3{ font-family:var(--font-display); color:var(--color-text); margin:0 0 0.4em; letter-spacing:-0.01em; }
p{ margin:0 0 1em; color:var(--color-text-soft); max-width:62ch; }
a{ color:var(--color-ochre-light); }
a:hover{ color:var(--color-terracotta-light); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--color-ochre-light);
  margin:0 0 14px;
}
.eyebrow::before{ content:""; width:16px; height:1.5px; background:var(--color-ochre); border-radius:2px; }

.display-xl{ font-size:clamp(2.7rem, 5.8vw, 4.8rem); font-weight:600; line-height:1.02; color:var(--color-text); }
.display-lg{ font-size:clamp(1.9rem, 3.4vw, 2.7rem); font-weight:600; line-height:1.1; }
.section-intro{ font-size:1.1rem; max-width:68ch; color:var(--color-text-soft); }

.gradient-text{
  background:linear-gradient(100deg, var(--color-ochre-light) 10%, var(--color-terracotta-light) 50%, var(--color-moss-light) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.claim{
  font-family:var(--font-display); font-style:italic; font-weight:500;
  font-size:1.05rem; color:var(--color-text); margin:0 0 1.2em;
}
.claim span{ color:var(--color-ochre-light); font-style:normal; font-weight:600; }

/* ============================================
   Buttons
   ============================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-body); font-weight:600; font-size:15px;
  padding:14px 26px; border-radius:999px; border:1px solid transparent; cursor:pointer;
  text-decoration:none; white-space:nowrap;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-primary{
  background:linear-gradient(135deg, var(--color-ochre-light), var(--color-terracotta));
  color:#241305; box-shadow:0 12px 32px -10px rgba(231,182,92,0.55), var(--glow-ochre);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 40px -12px rgba(231,182,92,0.7), var(--glow-ochre); }
.btn-ghost{
  background:var(--glass-bg); color:var(--color-text); border-color:var(--glass-border);
  backdrop-filter:blur(var(--glass-blur)); -webkit-backdrop-filter:blur(var(--glass-blur));
}
.btn-ghost:hover{ background:var(--glass-bg-strong); transform:translateY(-2px); border-color:var(--color-moss-light); }
.btn-large{ padding:17px 34px; font-size:16px; width:100%; }
.btn-small{ padding:10px 20px; font-size:14px; }
.btn-icon{ width:18px; height:18px; flex-shrink:0; }

/* ============================================
   Header — floating glass dock
   ============================================ */
.site-header{
  position:sticky; top:14px; z-index:100;
  padding:0 20px;
}
.header-inner{
  display:flex; align-items:center; gap:28px; position:relative;
  padding:10px 18px; border-radius:999px;
  background:var(--glass-bg-strong);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter:blur(var(--glass-blur)) saturate(180%);
  box-shadow:var(--shadow-glass);
  transition:box-shadow .3s var(--ease), background .3s var(--ease);
  max-width:var(--wrap); margin:0 auto;
}
.site-header.is-scrolled .header-inner{ box-shadow:var(--shadow-glass-lg); }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--color-text); margin-right:auto; }
.brand-mark{ width:34px; height:34px; display:inline-flex; flex-shrink:0; filter:drop-shadow(0 4px 10px rgba(231,182,92,0.35)); }
.brand-mark img{ width:100%; height:100%; object-fit:contain; }
.brand-name{ font-family:var(--font-display); font-weight:600; font-size:1.15rem; }
.main-nav{ display:flex; gap:26px; }
.main-nav a{ color:var(--color-text-soft); text-decoration:none; font-size:14.5px; font-weight:500; position:relative; padding:4px 0; }
.main-nav a::after{ content:""; position:absolute; left:0; right:100%; bottom:0; height:1.5px; background:var(--color-ochre-light); transition:right .28s var(--ease); }
.main-nav a:hover::after{ right:0; }
.main-nav a:hover{ color:var(--color-text); }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:22px; height:2px; margin:5px 0; background:var(--color-text); border-radius:2px; }

/* ============================================
   Hero
   ============================================ */
.hero{ padding:52px 0 60px; overflow:visible; }
.hero-inner{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center; }
.hero-sub{ font-size:1.18rem; max-width:48ch; }
.hero-actions{ display:flex; gap:14px; margin:28px 0 22px; flex-wrap:wrap; }
.founders-chip{
  display:flex; align-items:center; gap:14px; font-size:14px; color:var(--color-text-soft);
  max-width:48ch; padding:10px 16px 10px 10px; border-radius:999px;
  width:fit-content;
}
.avatar-stack{ display:flex; flex-shrink:0; }
.avatar{
  width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:11px; font-weight:600;
  background:linear-gradient(135deg, var(--color-moss-light), var(--color-moss)); color:#101a0d; border:2px solid var(--color-bg);
}
.avatar + .avatar{ margin-left:-10px; background:linear-gradient(135deg, var(--color-ochre-light), var(--color-terracotta)); color:#241305; }

/* pillar card (Haus / Garten / Alltag interactive 3D diorama) */
.pillar-card{
  border-radius:var(--radius-l); padding:28px 30px 32px;
}
.pillar-tabs{ display:flex; gap:6px; background:rgba(255,255,255,0.06); border-radius:999px; padding:5px; margin-bottom:22px; }
.pillar-tab{
  flex:1; border:none; background:transparent; padding:10px 14px; border-radius:999px;
  font-family:var(--font-body); font-weight:600; font-size:14px; color:var(--color-text-soft);
  cursor:pointer; transition:background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.pillar-tab.is-active{ background:linear-gradient(135deg, var(--color-moss-light), var(--color-moss)); color:#0f180d; box-shadow:0 8px 20px -8px rgba(110,148,99,0.7); }

/* ---- Glow orb — the hero "wow" centerpiece --------------------------
   A pulsing glass sphere with three Saturn-style rings. Built from
   plain 2D transforms only (scaleY to flatten into an ellipse, rotate
   for the orbiting light) — deliberately NOT using perspective/rotateX,
   which render inconsistently across browsers and knocked the icon and
   rings out of alignment. Each ring is two nested elements: an outer,
   never-rotating ellipse (the visible border) and an inner element that
   spins continuously and carries the little orbiting light.
------------------------------------------------------------------ */
.orb-stage{
  display:flex; align-items:center; justify-content:center;
  padding:34px 0 24px;
}
.orb-wrap{ position:relative; width:230px; height:230px; flex-shrink:0; }

.orb-core{
  position:absolute; top:50%; left:50%; z-index:3;
  width:118px; height:118px; margin:-59px 0 0 -59px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 34% 28%, var(--color-ochre-light), var(--color-terracotta) 58%, var(--color-moss-deep) 130%);
  box-shadow:
    0 0 50px 6px rgba(237,190,102,0.55),
    0 0 120px 30px rgba(233,143,82,0.28),
    inset -10px -12px 26px rgba(0,0,0,0.35),
    inset 8px 8px 18px rgba(255,255,255,0.35);
  animation:orbPulse 6s ease-in-out infinite;
  transition:background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
@keyframes orbPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.045); }
}
.orb-icon{
  font-size:44px; line-height:1; filter:drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  transition:opacity .3s var(--ease), transform .3s var(--ease);
}

.orb-ellipse{
  position:absolute; top:50%; left:50%; border-radius:50%;
  border:1.5px solid rgba(237,190,102,0.5);
  pointer-events:none;
}
.orb-spin{
  position:absolute; inset:0; border-radius:50%;
  animation:spin 16s linear infinite;
}
.orb-spin::before{
  content:""; position:absolute; top:-3px; left:50%; margin-left:-3px;
  width:6px; height:6px; border-radius:50%;
  background:var(--color-ochre-light); box-shadow:0 0 10px 3px var(--color-ochre-light);
}
@keyframes spin{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }

.orb-ellipse--1{ width:190px; height:190px; margin:-95px 0 0 -95px; transform:scaleY(0.34); }
.orb-ellipse--2{ width:230px; height:230px; margin:-115px 0 0 -115px; border-color:rgba(176,205,159,0.45); transform:scaleY(0.38); }
.orb-ellipse--2 .orb-spin{ animation-duration:22s; animation-direction:reverse; }
.orb-ellipse--2 .orb-spin::before{ background:var(--color-moss-light); box-shadow:0 0 10px 3px var(--color-moss-light); }
.orb-ellipse--3{ width:268px; height:268px; margin:-134px 0 0 -134px; border-color:rgba(248,188,133,0.4); transform:scaleY(0.3); }
.orb-ellipse--3 .orb-spin{ animation-duration:28s; }
.orb-ellipse--3 .orb-spin::before{ background:var(--color-terracotta-light); box-shadow:0 0 10px 3px var(--color-terracotta-light); }

@media (prefers-reduced-motion: reduce){
  .orb-core, .orb-spin{ animation:none; }
}

.pillar-copy{ text-align:center; margin-top:14px; }
.pillar-heading{ font-size:1.3rem; margin-bottom:6px; }
.pillar-desc{ margin:0 auto; max-width:36ch; }

/* ============================================
   Sections
   ============================================ */
.section{ padding:100px 0; position:relative; }
.section-tint{ position:relative; }
.section-tint::before{
  content:""; position:absolute; inset:0 0 0 0; z-index:-1;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 12%, rgba(255,255,255,0.03) 88%, rgba(255,255,255,0) 100%);
}

/* icon tiles (used across cards instead of bare emoji) */
.icon-tile{
  display:inline-flex; align-items:center; justify-content:center;
  width:52px; height:52px; border-radius:16px; font-size:24px;
  background:linear-gradient(150deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border:1px solid var(--glass-border);
  box-shadow:0 10px 22px -10px rgba(0,0,0,0.6);
  margin-bottom:16px;
}

/* target / zielgruppe */
.target-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; margin-top:44px; }
.target-card{
  border-radius:var(--radius-m); padding:30px 26px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.target-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-glass-lg), var(--glow-ochre); border-color:rgba(255,255,255,0.3); }
.target-card h3{ font-size:1.1rem; margin:0 0 8px; }

/* leistungen */
.use-grid{
  list-style:none; margin:44px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
}
.use-card{
  position:relative;
  border-radius:var(--radius-m); padding:28px 24px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.use-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-glass-lg), var(--glow-moss); border-color:rgba(255,255,255,0.3); }
.use-card h3{ font-family:var(--font-body); font-weight:600; font-size:1.05rem; margin:0 0 8px; color:var(--color-text); }
.use-card p{ font-size:14.5px; margin:0; }
.use-card-soon{ opacity:0.85; }
.use-tag{
  position:absolute; top:22px; right:22px;
  font-family:var(--font-mono); font-size:10.5px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  background:var(--color-moss-light); color:#122010; padding:4px 10px; border-radius:999px;
}

/* values */
.values-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; margin-top:44px; }
.value-item{ padding:26px 22px; border-radius:var(--radius-m); transition:border-color .3s var(--ease), transform .3s var(--ease); }
.value-item:hover{ transform:translateY(-4px); border-color:rgba(255,255,255,0.28); }
.value-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background:linear-gradient(135deg, var(--color-moss-light), var(--color-moss));
  color:#0f180d; font-weight:700; font-size:15px; margin-bottom:16px;
  box-shadow:0 8px 18px -8px rgba(110,148,99,0.7);
}
.value-item h3{ font-size:1.08rem; margin-bottom:6px; }
.value-item p{ font-size:14.5px; margin:0; }

/* founders */
.founder-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:44px; }
.founder-card{
  border-radius:var(--radius-m); padding:36px 32px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.founder-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-glass-lg); border-color:rgba(255,255,255,0.3); }
.founder-avatar{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:600; font-size:16px;
  background:linear-gradient(135deg, var(--color-moss-light), var(--color-moss)); color:#0f180d; margin-bottom:18px;
  box-shadow:0 10px 22px -8px rgba(110,148,99,0.6);
}
.founder-card:nth-child(2) .founder-avatar{ background:linear-gradient(135deg, var(--color-ochre-light), var(--color-terracotta)); color:#241305; box-shadow:0 10px 22px -8px rgba(231,182,92,0.6); }
.founder-card h3{ font-size:1.3rem; margin-bottom:2px; }
.founder-age{ font-family:var(--font-mono); font-size:13px; color:var(--color-ochre-light); margin-bottom:14px; }

.claim-banner{
  margin-top:36px; padding:22px 26px; border-radius:var(--radius-m);
  display:flex; align-items:center; gap:16px;
}
.claim-banner .claim{ margin:0; font-size:1.15rem; }
.claim-flag{ font-size:22px; flex-shrink:0; }

/* ablauf / steps */
.steps-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin-top:48px; counter-reset:step; }
.step-item{ position:relative; padding:28px 26px; border-radius:var(--radius-m); transition:transform .3s var(--ease), border-color .3s var(--ease); }
.step-item:hover{ transform:translateY(-4px); border-color:rgba(255,255,255,0.28); }
.step-number{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:12px;
  font-size:14px; font-weight:600; color:#2a1608; margin-bottom:16px;
  background:linear-gradient(135deg, var(--color-terracotta-light), var(--color-terracotta));
  box-shadow:0 10px 20px -8px rgba(228,137,79,0.65);
}
.step-item h3{ font-size:1.15rem; margin-bottom:8px; }

/* KONTAKT */
.cta-section{
  position:relative; overflow:hidden;
  border-radius:var(--radius-xl); margin:0 20px; width:auto;
  background:linear-gradient(150deg, var(--color-bg-elevated), var(--color-bg) 65%);
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-glass-lg);
}
.cta-section::after{
  content:""; position:absolute; inset:0; border-radius:inherit; z-index:0; pointer-events:none;
  background:
    radial-gradient(60% 90% at 10% 0%, rgba(231,182,92,0.24), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(110,148,99,0.28), transparent 60%);
}
.cta-section .wrap{ z-index:1; padding:82px 40px; }
.kontakt-inner{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:start; }
.kontakt-copy h2{ color:var(--color-text); }
.kontakt-copy p{ color:var(--color-text-soft); }
.kontakt-facts{ display:flex; flex-direction:column; gap:18px; margin-top:28px; }
.kontakt-facts > div{ display:flex; flex-direction:column; gap:3px; }
.kontakt-label{ font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--color-ochre-light); }
.kontakt-facts a, .kontakt-facts span{ color:var(--color-text); text-decoration:none; font-size:15.5px; display:inline-flex; align-items:center; gap:8px; width:fit-content; }
.kontakt-facts a:hover{ color:var(--color-ochre-light); }
.kontakt-icon{ width:18px; height:18px; flex-shrink:0; opacity:0.85; }

.kontakt-form{
  border-radius:var(--radius-m); padding:32px;
  display:flex; flex-direction:column; gap:18px;
  background:var(--glass-bg-strong);
  backdrop-filter:blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter:blur(var(--glass-blur)) saturate(180%);
}
.form-row{ display:flex; flex-direction:column; gap:6px; }
.form-row-split{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-row label{ font-size:13px; font-weight:600; color:var(--color-text); }
.form-row input, .form-row select, .form-row textarea{
  font-family:var(--font-body); font-size:15px; padding:12px 14px;
  border:1px solid var(--color-border); border-radius:var(--radius-s);
  background:rgba(255,255,255,0.06); color:var(--color-text); resize:vertical;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-row input::placeholder, .form-row textarea::placeholder{ color:var(--color-text-dim); }
.form-row select{ color-scheme:dark; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color:var(--color-ochre-light); box-shadow:0 0 0 3px rgba(231,182,92,0.18); background:rgba(255,255,255,0.1);
}
.form-submit{ margin-top:4px; }
.form-note{ font-size:12.5px; color:var(--color-text-dim); margin:-8px 0 0; }
.form-feedback{ font-size:13.5px; color:var(--color-ochre-light); min-height:18px; margin:0; }

/* closing footer */
.site-footer{ padding:56px 20px 40px; text-align:center; }
.footer-glass{ border-radius:var(--radius-l); padding:44px 32px 34px; }
.footer-brand{ justify-content:center; margin-bottom:14px; }
.footer-inner p{ margin:0 auto 10px; max-width:52ch; font-size:13.5px; color:var(--color-text-soft); }
.footer-social{ display:flex; justify-content:center; gap:14px; margin:18px 0; }
.footer-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,0.06); border:1px solid var(--glass-border);
  color:var(--color-text); transition:transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.footer-social a:hover{ transform:translateY(-3px); background:rgba(255,255,255,0.14); box-shadow:var(--glow-ochre); }
.footer-social svg{ width:19px; height:19px; }
.footer-nav{ display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin-bottom:14px; }
.footer-nav a{ font-size:13.5px; color:var(--color-text-soft); text-decoration:none; }
.footer-nav a:hover{ color:var(--color-ochre-light); }
.footer-fine{ font-size:12px; color:var(--color-text-dim); }

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal{
  opacity:0; transform:translateY(18px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay:var(--delay, 0ms);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--color-ochre-light); outline-offset:3px; border-radius:4px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; gap:48px; }
  .founder-grid{ grid-template-columns:1fr; }
  .target-grid{ grid-template-columns:1fr; }
  .use-grid{ grid-template-columns:repeat(2, 1fr); }
  .values-grid{ grid-template-columns:repeat(2, 1fr); }
  .steps-grid{ grid-template-columns:1fr; gap:20px; }
  .kontakt-inner{ grid-template-columns:1fr; }
  .main-nav{ display:none; }
}

@media (max-width: 640px){
  .wrap{ padding:0 20px; }
  .site-header{ padding:0 12px; top:10px; }
  .header-inner{ padding:8px 14px; position:relative; }
  .section{ padding:72px 0; }
  .header-inner .btn-small{ display:none; }
  .nav-toggle{ display:block; }
  .use-grid{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .form-row-split{ grid-template-columns:1fr; }
  .cta-section{ margin:0 10px; }
  .cta-section .wrap{ padding:56px 22px; }
  .site-footer{ padding:56px 10px 40px; }
  .footer-glass{ padding:36px 22px 28px; }
  .claim-banner{ flex-direction:column; text-align:center; }
  .display-xl{ font-size:2.5rem; }
  .pillar-card{ padding:24px 18px 28px; }
}

@media (max-width: 380px){
  .orb-wrap{ width:190px; height:190px; transform:scale(0.86); }
}
