/*
Theme Name: ReenBio
Theme URI: https://reenbio.com
Author: ReenBio
Author URI: https://reenbio.com
Description: Custom WordPress theme for ReenBio — precision fermentation biotech company. Investor and B2B focused single-page experience.
Version: 1.0.0
License: Private
Text Domain: reenbio
*/

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --black: #0a0c0b;
  --dark: #111410;
  --dark2: #181c16;
  --dark3: #1e2419;
  --green-deep: #1a3020;
  --green-mid: #2d5235;
  --green-accent: #4a8c5c;
  --green-light: #6ab87e;
  --gold: #c8a96e;
  --gold-light: #e2c98a;
  --cream: #f4efe6;
  --white: #ffffff;
  --gray: #8a9490;
  --gray-light: #b8c4bc;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(200,169,110,0.25);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
p { color: var(--gray-light); font-size: 1.02rem; line-height: 1.75; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ── UTILITY ────────────────────────────────────────────── */
.mono { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-light); }
.label { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.gold { color: var(--gold); }
.green { color: var(--green-light); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 7rem 0; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav,
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  background: linear-gradient(to bottom, rgba(10,12,11,0.97), rgba(10,12,11,0.82));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--green-mid);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.nav-brand { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); font-weight: 600; }
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { color: var(--gray-light); text-decoration: none; font-size: 0.88rem; font-weight: 400; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--green-mid) !important; color: var(--white) !important; padding: 0.55rem 1.3rem; border-radius: 4px; border: 1px solid var(--green-accent); }
.nav-cta:hover { background: var(--green-accent) !important; }

/* WordPress menu compatibility */
.nav-links .menu-item a { color: var(--gray-light); text-decoration: none; font-size: 0.88rem; font-weight: 400; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links .menu-item a:hover { color: var(--white); }
.nav-links .menu-item-has-children > ul { display: none; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--green-mid); color: var(--white);
  padding: 0.9rem 1.9rem; border-radius: 4px;
  text-decoration: none; font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.025em; border: 1px solid var(--green-accent);
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-primary:hover { background: var(--green-accent); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(74,140,92,0.22); color: var(--white); text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 0.9rem 1.9rem; border-radius: 4px;
  text-decoration: none; font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.025em; border: 1px solid rgba(244,239,230,0.18);
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-outline:hover { border-color: rgba(244,239,230,0.45); background: rgba(244,239,230,0.04); text-decoration: none; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45,82,53,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(26,48,32,0.28) 0%, transparent 60%),
    linear-gradient(155deg, #0a0c0b 0%, #111a12 50%, #0c130e 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(74,140,92,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,140,92,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1180px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.hero-title { margin-bottom: 1.5rem; }
.hero-title em { font-style: normal; color: var(--green-light); }
.hero-sub { font-size: 1.1rem; color: var(--gray-light); margin-bottom: 2.5rem; max-width: 510px; }
.hero-sub strong { color: var(--cream); font-weight: 500; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero stats panel */
.hero-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1.75rem; backdrop-filter: blur(10px);
}
.hero-panel-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.stat-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.stat-row:last-child { border-bottom: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--white); font-weight: 600; }
.stat-badge { display: inline-block; background: rgba(74,140,92,0.12); border: 1px solid rgba(74,140,92,0.28); color: var(--green-light); font-size: 0.65rem; font-family: 'DM Mono', monospace; padding: 0.18rem 0.5rem; border-radius: 3px; margin-top: 0.2rem; }
.stat-label { font-size: 0.8rem; color: var(--gray); max-width: 150px; text-align: right; }

/* ── TICKER ─────────────────────────────────────────────── */
.ticker-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0; overflow: hidden;
}
.ticker-track { display: flex; gap: 3.5rem; animation: ticker 38s linear infinite; white-space: nowrap; }
.ticker-item { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green-accent); }
.ticker-txt { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--gray-light); letter-spacing: 0.08em; }
.ticker-txt strong { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PROBLEM ─────────────────────────────────────────────── */
#problem { background: var(--dark2); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.problem-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-left: 3px solid var(--green-accent);
  padding: 1.5rem; border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem; transition: background 0.2s;
}
.problem-card:hover { background: rgba(255,255,255,0.045); }
.problem-card h3 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--white); }
.problem-card p { font-size: 0.87rem; }
.prob-stat { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 600; margin-top: 0.5rem; display: block; }

/* ── TECHNOLOGY ─────────────────────────────────────────── */
.tech-header { text-align: center; max-width: 700px; margin: 0 auto 4.5rem; }
.process-flow { display: flex; align-items: stretch; }
.process-step {
  flex: 1; padding: 2rem 1.4rem;
  background: var(--dark2); border: 1px solid var(--border);
  text-align: center; transition: all 0.3s;
}
.process-step:first-child { border-radius: 8px 0 0 8px; }
.process-step:last-child { border-radius: 0 8px 8px 0; }
.process-step + .process-step { border-left: none; }
.process-step:hover { background: var(--dark3); box-shadow: 0 4px 20px rgba(0,0,0,0.35); z-index: 1; position: relative; }
.process-arrow {
  width: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-accent); background: var(--dark2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
}
.proc-num { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--green-accent); letter-spacing: 0.2em; margin-bottom: 0.75rem; }
.proc-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.process-step h3 { font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--white); }
.process-step p { font-size: 0.78rem; color: var(--gray); }
.platform-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.pillar {
  padding: 2rem; border: 1px solid var(--border); border-radius: 8px;
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(45,82,53,0.07) 100%);
  transition: all 0.3s;
}
.pillar:hover { border-color: var(--green-accent); transform: translateY(-3px); }
.pillar-icon { font-size: 1.9rem; margin-bottom: 0.9rem; }
.pillar h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.65rem; }
.pillar p { font-size: 0.85rem; }

/* ── PRODUCTS ────────────────────────────────────────────── */
#products { background: var(--dark2); }
.products-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4.5rem; }
.sku-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.sku-card {
  padding: 1.4rem 1rem; border-radius: 8px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  text-align: center; transition: all 0.3s; cursor: pointer;
}
.sku-card:hover { border-color: var(--green-accent); background: rgba(74,140,92,0.06); transform: translateY(-2px); }
.sku-swatch { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 0.8rem; border: 3px solid rgba(255,255,255,0.08); }
.sku-name { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--gold); margin-bottom: 0.3rem; }
.sku-desc { font-size: 0.73rem; color: var(--gray); }
.pipeline-teaser {
  background: linear-gradient(135deg, var(--dark3), rgba(45,82,53,0.12));
  border: 1px solid var(--border-gold); border-radius: 10px;
  padding: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.pipeline-item { text-align: center; }
.pip-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.pipeline-item h4 { font-size: 0.92rem; color: var(--white); margin-bottom: 0.35rem; }
.pipeline-item p { font-size: 0.77rem; }
.pip-status { display: inline-block; font-family: 'DM Mono', monospace; font-size: 0.62rem; padding: 0.22rem 0.55rem; border-radius: 20px; margin-top: 0.5rem; }
.pip-status.live { background: rgba(74,140,92,0.18); color: var(--green-light); border: 1px solid rgba(74,140,92,0.35); }
.pip-status.dev { background: rgba(200,169,110,0.08); color: var(--gold); border: 1px solid var(--border-gold); }

/* ── MARKET ──────────────────────────────────────────────── */
.market-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.market-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.market-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: 8px; background: var(--dark2); transition: border-color 0.2s; }
.market-card:hover { border-color: var(--border-gold); }
.market-card .big-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 600; }
.market-card .unit { font-size: 0.95rem; color: var(--gray); }
.market-card .lbl2 { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; }
.market-card .growth { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--green-light); margin-top: 0.4rem; }
.revenue-chart h3 { margin-bottom: 1.75rem; font-size: 1.15rem; }
.chart-bars { display: flex; gap: 0.65rem; align-items: flex-end; height: 190px; }
.chart-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.chart-bar { width: 100%; border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--green-mid), var(--green-accent)); transition: all 0.3s; min-height: 4px; }
.chart-bar:hover { background: linear-gradient(to top, var(--green-accent), var(--green-light)); }
.chart-val { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--gold); }
.chart-year { font-family: 'DM Mono', monospace; font-size: 0.57rem; color: var(--gray); }

/* ── WHY / VALUE PROP ───────────────────────────────────── */
#why { background: var(--dark2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-card {
  padding: 1.9rem 1.5rem; border: 1px solid var(--border); border-radius: 8px;
  background: rgba(255,255,255,0.015); position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-accent), var(--gold)); }
.why-card .icon { font-size: 1.65rem; margin-bottom: 0.9rem; }
.why-card h3 { font-size: 0.97rem; color: var(--white); margin-bottom: 0.65rem; }
.why-card p { font-size: 0.83rem; }

/* ── IMPACT ─────────────────────────────────────────────── */
.impact-intro { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.impact-card { padding: 2.25rem 1.75rem; border-radius: 8px; border: 1px solid var(--border); text-align: center; background: linear-gradient(135deg, var(--dark2), var(--dark3)); }
.impact-card .impact-icon { font-size: 2.25rem; margin-bottom: 0.9rem; }
.impact-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.85rem; }
.impact-card p { font-size: 0.85rem; }
.impact-byproduct { text-align: center; margin-top: 2.5rem; padding: 1.75rem; border: 1px dashed var(--border-gold); border-radius: 8px; background: rgba(200,169,110,0.03); }
.impact-byproduct p { color: var(--gold-light); font-style: italic; font-size: 1.02rem; }

/* ── INVESTORS ──────────────────────────────────────────── */
#investors { background: var(--dark2); }
.investors-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.traction-list { list-style: none; margin: 1.75rem 0; }
.traction-list li { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.traction-list li:last-child { border-bottom: none; }
.tcheck { color: var(--green-light); flex-shrink: 0; margin-top: 0.1rem; }
.ttext { color: var(--gray-light); }
.ttext strong { color: var(--white); }
.investors-form { background: rgba(255,255,255,0.03); border: 1px solid var(--border-gold); border-radius: 10px; padding: 2.25rem; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 0.6rem; }
.form-sub { font-size: 0.87rem; color: var(--gray); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.77rem; font-weight: 500; color: var(--gray-light); margin-bottom: 0.45rem; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select {
  width: 100%; background: rgba(255,255,255,0.045);
  border: 1px solid var(--border); color: var(--white);
  padding: 0.72rem 0.95rem; border-radius: 5px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green-accent); }
.form-group input::placeholder { color: var(--gray); }
.form-group select option { background: var(--dark); color: var(--white); }
.btn-form,
.wpcf7-form input[type="submit"] {
  width: 100%; background: var(--gold); color: var(--black);
  padding: 0.95rem; border-radius: 5px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em;
  border: none; cursor: pointer; transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.btn-form:hover,
.wpcf7-form input[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 0.72rem; color: var(--gray); text-align: center; margin-top: 0.65rem; }

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
.team-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--dark2); transition: all 0.3s; }
.team-card:hover { border-color: var(--green-accent); transform: translateY(-3px); }
.team-photo { height: 220px; background: var(--dark3); display: flex; align-items: center; justify-content: center; }
.team-avatar { width: 110px; height: 110px; border-radius: 50%; background: var(--green-deep); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); border: 3px solid var(--border-gold); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.4rem; }
.team-info h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.2rem; }
.team-role { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.7rem; display: block; }
.team-cred { font-size: 0.8rem; color: var(--gray); }
.team-logos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; justify-content: center; align-items: center; }
.tlabel { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; color: var(--gray); margin-right: 0.75rem; }
.team-pill { background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 0.35rem 0.85rem; border-radius: 20px; font-size: 0.73rem; color: var(--gray); }

/* ── B2B ─────────────────────────────────────────────────── */
#b2b { background: var(--dark2); }
.b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.b2b-features { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.b2b-feature { display: flex; gap: 1.3rem; align-items: flex-start; }
.b2b-num { width: 38px; height: 38px; border-radius: 7px; flex-shrink: 0; background: var(--green-deep); border: 1px solid var(--green-accent); display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--green-light); }
.b2b-text h4 { color: var(--white); font-size: 0.97rem; margin-bottom: 0.3rem; }
.b2b-text p { font-size: 0.85rem; }
.b2b-panel { background: var(--dark3); border: 1px solid var(--border); border-radius: 10px; padding: 2.25rem; }
.markets-list { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.75rem; }
.market-tag { background: rgba(74,140,92,0.1); border: 1px solid rgba(74,140,92,0.22); color: var(--green-light); padding: 0.35rem 0.85rem; border-radius: 20px; font-size: 0.77rem; }
.geo-tag { background: rgba(200,169,110,0.06); border: 1px solid var(--border-gold); color: var(--gold-light); padding: 0.35rem 0.85rem; border-radius: 20px; font-size: 0.77rem; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer,
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 1.1rem; max-width: 300px; }
.footer-col h4 { font-size: 0.68rem; font-family: 'DM Mono', monospace; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--gray); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.78rem; color: var(--gray); }
.footer-tagline { font-family: 'Playfair Display', serif; font-size: 0.88rem; color: var(--gold-light); font-style: italic; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── WordPress Core Fixes ───────────────────────────────── */
.wp-block-image { margin: 0; }
.alignnone { margin: 0; }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .problem-grid, .market-grid, .products-intro, .investors-inner, .b2b-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .platform-pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-teaser { grid-template-columns: 1fr 1fr; }
  .process-flow { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); width: 100%; height: 28px; justify-content: center; border-left: 1px solid var(--border); border-right: 1px solid var(--border); border-top: none; border-bottom: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.4rem; }
  .section { padding: 4rem 0; }
  .why-grid, .impact-grid, .market-numbers { grid-template-columns: 1fr; }
  .team-grid, .pipeline-teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
