@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1c1c1c;
  --ink: #ffffff;
  --ink-muted: #999999;
  --accent: #e63b2c;
  --accent-hover: #ff4c3b;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --max-w: 1280px;
  --gutter: 40px;
}

html { scroll-behavior: smooth; }
body.orionisflow-page {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.oif-wrap { width: 100%; overflow: hidden; }

.oif-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== NAV ===== */
.oif-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.oif-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.oif-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.oif-nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.oif-nav__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.oif-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.oif-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.oif-nav__links a:hover, .oif-nav__links a.active { color: #fff; }
.oif-nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.oif-nav__cta:hover { background: var(--accent-hover); }

/* ===== HERO ===== */
.oif-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.oif-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 70% at 65% 45%, rgba(230,59,44,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Container inside hero — left-aligned, full grid width */
.oif-hero > .oif-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

/* Hero text content — left column */
.oif-hero__content {
  width: 45%;
  max-width: 560px;
  flex-shrink: 0;
  text-align: left;
}

.oif-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,59,44,0.12);
  border: 1px solid rgba(230,59,44,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.oif-hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.oif-hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 5.5vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  text-align: left;
}
.oif-hero__headline em { font-style: normal; color: var(--accent); }
.oif-hero__subtext {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
  text-align: left;
}
.oif-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  justify-content: flex-start;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }
.oif-hero__stats {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}
.oif-hero__stat-item { display: flex; flex-direction: column; gap: 4px; }
.oif-hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.oif-hero__stat-label {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== JELLYFISH ===== */
.oif-jelly {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-10%, -48%);
  width: 48%;
  max-width: 600px;
  aspect-ratio: 5/7;
  z-index: 1;
  pointer-events: none;
}
.oif-jelly__glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse at 50% 35%,
    rgba(230,59,44,0.30) 0%,
    rgba(180,20,10,0.14) 45%,
    transparent 72%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 0;
}
.oif-jelly__svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 30px rgba(230,59,44,0.85))
    drop-shadow(0 0 80px rgba(200,40,20,0.50))
    drop-shadow(0 0 160px rgba(150,10,5,0.30));
  animation: floatJelly 7s ease-in-out infinite;
}
@keyframes floatJelly {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-22px); }
  70%       { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* ===== HERO SIDE CARDS ===== */
.oif-hero__side {
  position: absolute;
  right: var(--gutter);
  top: 130px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 230px;
}
.oif-hero__card {
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
}
.oif-hero__card-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
}
.oif-hero__card-label { font-size: 12px; color: var(--ink-muted); line-height: 1.4; }
.oif-hero__card-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.oif-hero__card-cta:hover { background: var(--accent-hover); }

/* Social strip */
.oif-hero__social {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 14px;
  z-index: 3;
}
.oif-hero__social-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  writing-mode: vertical-rl;
  margin-bottom: 8px;
}
.oif-social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.oif-social-icon:hover { background: rgba(230,59,44,0.2); color: var(--accent); }

/* ===== ABOUT ===== */
.oif-about { padding: 120px 0; background: var(--bg); }
.oif-about__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.oif-about__label::before { content: ''; width: 32px; height: 1px; background: var(--ink-muted); display: block; }
.oif-about__statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
  color: var(--ink);
}
.oif-about__statement em { font-style: normal; color: var(--accent); }

/* ===== SOCIAL PROOF ===== */
.oif-proof { padding: 0 0 120px; background: var(--bg); }
.oif-proof__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.oif-proof__card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.oif-proof__card--left { position: relative; overflow: hidden; }
.oif-proof__card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.oif-proof__card-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.oif-proof__card-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.oif-proof__card-headline em { font-style: normal; color: var(--accent); }
.oif-proof__card-image {
  width: calc(100% + 96px);
  margin: 0 -48px -48px;
  height: 220px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.oif-proof__card-image-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(230,59,44,0.25), rgba(10,10,10,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}
.oif-proof__card--right { display: flex; flex-direction: column; justify-content: space-between; }
.oif-proof__trusted-text { font-size: 14px; color: var(--ink-muted); line-height: 1.6; max-width: 320px; margin-bottom: 24px; }
.oif-proof__big-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.oif-proof__stars { display: flex; gap: 4px; margin-bottom: 20px; }
.oif-proof__star { color: var(--accent); font-size: 18px; }
.oif-proof__testimonial {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.oif-proof__testimonial-body { flex: 1; }
.oif-proof__testimonial-quote { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.55; margin-bottom: 10px; }
.oif-proof__testimonial-author { font-size: 12px; color: var(--ink-muted); font-weight: 600; }
.oif-proof__testimonial-author strong { color: var(--ink); }

/* ===== BRANDS ===== */
.oif-brands {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.oif-brands__inner { display: flex; align-items: center; gap: 60px; }
.oif-brands__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); white-space: nowrap; flex-shrink: 0; }
.oif-brands__logos { display: flex; align-items: center; gap: 60px; flex: 1; justify-content: space-between; }
.oif-brands__logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: rgba(255,255,255,0.2); letter-spacing: -0.02em; }
.oif-brands__logo:hover { color: rgba(255,255,255,0.5); }

/* ===== SERVICES ===== */
.oif-services { padding: 120px 0; }
.oif-services__top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.oif-services__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,59,44,0.12);
  border: 1px solid rgba(230,59,44,0.3);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.oif-services__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.oif-services__desc { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 380px; margin-bottom: 32px; }
.oif-services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.oif-service-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s;
}
.oif-service-card:hover { border-color: rgba(230,59,44,0.3); }
.oif-service-card__icon {
  width: 44px; height: 44px;
  background: rgba(230,59,44,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.oif-service-card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.2; color: var(--ink); margin-bottom: 12px; }
.oif-service-card__desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 24px; }
.oif-service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.oif-service-card__tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.oif-footer { padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.oif-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px; }
.oif-footer__brand-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.02em; }
.oif-footer__brand-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 24px; max-width: 280px; }
.oif-footer__col-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.oif-footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.oif-footer__col-links a { font-size: 14px; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.oif-footer__col-links a:hover { color: var(--ink); }
.oif-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.oif-footer__copy { font-size: 13px; color: var(--ink-muted); }
.oif-footer__socials { display: flex; gap: 12px; }
.oif-footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.oif-footer__social-link:hover { background: var(--accent); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --gutter: 24px; }
  .oif-hero__content { width: 55%; }
  .oif-jelly { width: 52%; transform: translate(-5%, -48%); }
  .oif-services__grid { grid-template-columns: repeat(2,1fr); }
  .oif-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .oif-nav__links { display: none; }
  .oif-hero { flex-direction: column; justify-content: center; min-height: 100vh; }
  .oif-hero > .oif-container { flex-direction: column; padding-top: 120px; padding-bottom: 60px; }
  .oif-hero__content { width: 100%; max-width: 100%; }
  .oif-jelly { position: relative; top: auto; left: auto; transform: none; width: 85%; max-width: 340px; margin: 40px auto 0; aspect-ratio: 5/7; }
  .oif-hero__side { display: none; }
  .oif-hero__social { display: none; }
  .oif-proof__grid { grid-template-columns: 1fr; }
  .oif-services__top { grid-template-columns: 1fr; }
  .oif-services__grid { grid-template-columns: 1fr; }
  .oif-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .oif-brands__logos { gap: 30px; }
  .oif-proof__big-num { font-size: 72px; }
}