/* =====================================================
   HERO BASE
===================================================== */

.ibr-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 100%;
  padding-bottom: 150px;

  color: #fff;

  background: #0b6bc3;
}

/* =====================================================
   BACKGROUND WRAPPER
===================================================== */

.ibr-fluid-bg {
  position: absolute;
  inset: 0;

  z-index: -5;

  overflow: hidden;

  pointer-events: none;
}

/* =====================================================
   BASE FIELD
===================================================== */

.ibr-fluid-base {
  position: absolute;

  inset: -15%;

  will-change: transform;

  background: linear-gradient(160deg,
      #d9efff 0%,
      #b9ddfa 15%,
      #78b8ed 36%,
      #2d87d4 62%,
      #0c65bc 82%,
      #074b91 100%);

  animation: ibrFluidBuzz 9s ease-in-out infinite;
}

/* =====================================================
   AMBIENT BLOBS
===================================================== */

.ibr-fluid-blob {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  will-change: transform;
}

.ibr-fluid-blob--one {
  left: -15%;
  bottom: -25%;

  width: 80%;
  height: 80%;

  opacity: 0.8;

  background: radial-gradient(circle,
      #2689df 0%,
      rgba(38, 137, 223, 0.72) 24%,
      rgba(38, 137, 223, 0.25) 48%,
      transparent 70%);

  filter: blur(90px);

  animation: ibrFluidDriftOne 22s ease-in-out infinite;
}

.ibr-fluid-blob--two {
  top: 20%;
  right: -10%;

  width: 70%;
  height: 85%;

  opacity: 0.72;

  background: radial-gradient(circle,
      #06498e 0%,
      rgba(6, 73, 142, 0.74) 25%,
      rgba(6, 73, 142, 0.24) 50%,
      transparent 70%);

  filter: blur(100px);

  animation: ibrFluidDriftTwo 26s ease-in-out infinite;
}

/* =====================================================
   CANVAS
===================================================== */

.ibr-fluid-canvas {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  pointer-events: none;

  filter: blur(10px);

  transform: scale(1.02);
}

/* =====================================================
   TOP LIGHT
===================================================== */

.ibr-fluid-toplight {
  position: absolute;

  inset-inline: 0;
  top: 0;

  height: 55%;

  pointer-events: none;

  background: linear-gradient(to bottom,
      rgba(196, 228, 252, 0.34) 0%,
      rgba(155, 205, 244, 0.14) 32%,
      rgba(110, 180, 235, 0) 62%);
}

/* =====================================================
   GRAIN / NOISE
===================================================== */

.ibr-fluid-noise {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.08;

  mix-blend-mode: overlay;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =====================================================
   BASE ANIMATION
===================================================== */

@keyframes ibrFluidBuzz {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1.03) rotate(-0.4deg);
  }

  35% {
    transform: translate3d(1.8%, 1%, 0) scale(1.055) rotate(0.5deg);
  }

  70% {
    transform: translate3d(-0.5%, 2%, 0) scale(1.04) rotate(-0.25deg);
  }

  100% {
    transform: translate3d(-1%, -1%, 0) scale(1.03) rotate(-0.4deg);
  }
}

@keyframes ibrFluidDriftOne {
  0% {
    transform: translate3d(-3%, 1%, 0) scale(1);
  }

  35% {
    transform: translate3d(8%, -5%, 0) scale(1.1);
  }

  70% {
    transform: translate3d(13%, 5%, 0) scale(0.96);
  }

  100% {
    transform: translate3d(-3%, 1%, 0) scale(1);
  }
}

@keyframes ibrFluidDriftTwo {
  0% {
    transform: translate3d(2%, -2%, 0) scale(1);
  }

  40% {
    transform: translate3d(-9%, 7%, 0) scale(1.12);
  }

  75% {
    transform: translate3d(-3%, 13%, 0) scale(0.96);
  }

  100% {
    transform: translate3d(2%, -2%, 0) scale(1);
  }
}

/* =====================================================
   CONTAINER
===================================================== */

/* =====================================================
   CONTAINER & REVOLUTIONARY SPLIT GRID
===================================================== */

.ibr-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 155px 0 70px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 85% 20%, rgba(10, 100, 196, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(224, 242, 254, 0.6) 0%, transparent 70%),
    linear-gradient(180deg, #f8fafc 0%, #edf5ff 50%, #f1f5f9 100%);
  color: #0f172a;
}

/* Subtle Light Dot Grid Overlay */
.ibr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.22) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

.ibr-hero__container {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.ibr-hero__split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

/* LEFT CONTENT HUB */
.ibr-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* LIVE STATUS BADGE */
.ibr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(10, 100, 196, 0.08);
  border: 1px solid rgba(10, 100, 196, 0.18);
  color: #0a64c4;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ibr-hero__badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: ibrWaStatusPulse 2s infinite;
}

/* TITLE */
.ibr-hero__title {
  max-width: 580px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.ibr-hero__title span {
  background: linear-gradient(135deg, #0a64c4 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* DESCRIPTION */
.ibr-hero__description {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 620px;
}

/* FEATURE TAG PILLS - SUBTLE & NEUTRAL */
.ibr-hero__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ibr-hero__tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
}

.ibr-hero__tag-item i {
  color: #0a64c4;
  font-size: 13.5px;
}

/* ACTIONS */
.ibr-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 0;
}

.ibr-hero__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

/* SOCIAL PROOF BAR (NO BORDER TOP) */
.ibr-hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: none;
  width: 100%;
}

.ibr-hero__avatars {
  display: flex;
  align-items: center;
}

.ibr-hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -8px;
}

.ibr-hero__avatar:first-child {
  margin-left: 0;
}

.ibr-hero__stars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ibr-hero__star-icons {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
}

.ibr-hero__stars span {
  font-size: 12.5px;
  color: #475569;
}

/* RIGHT COLUMN: DUAL-DEVICE STACKED VISUAL SHOWCASE */
.ibr-hero__right {
  position: relative;
  width: 100%;
}

.ibr-hero__visual-stack {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

/* Desktop Browser Frame */
.ibr-hero__browser-frame {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
  width: 88%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ibr-hero__browser-frame:hover {
  transform: translateY(-4px);
}

.ibr-browser__topbar {
  height: 38px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.ibr-browser__controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ctrl {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.ctrl--close { background: #ef4444; }
.ctrl--min { background: #f59e0b; }
.ctrl--max { background: #10b981; }

.ibr-browser__url {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 10.5px;
  color: #64748b;
  width: min(220px, 55%);
  justify-content: center;
}

.ibr-browser__url i {
  font-size: 10px;
  color: #10b981;
}

.ibr-browser__viewport {
  height: 310px;
  background: #0f172a;
  overflow: hidden;
}

/* =====================================================
   PURE CODE UI INTERFACE PREVIEW (NO IMAGES)
===================================================== */

.ibr-code-ui {
  background: #0f172a;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  height: 100%;
}

/* Nav Row */
.code-ui__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-ui__logo {
  font-size: 12.5px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
}

.code-ui__menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-item {
  font-size: 10.5px;
  color: #94a3b8;
  font-weight: 500;
}

.menu-item.active {
  color: #38bdf8;
  font-weight: 700;
}

.code-ui__btn {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #60a5fa;
  border-radius: 6px;
}

/* Mini Hero Area */
.code-ui__hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.code-ui__badge {
  font-size: 9px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  padding: 2px 8px;
  border-radius: 100px;
}

.code-ui__title {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.code-ui__text {
  font-size: 10.5px;
  color: #94a3b8;
  max-width: 90%;
  line-height: 1.4;
}

.code-ui__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.code-ui__btn-main {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.code-ui__btn-sub {
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border-radius: 6px;
}

/* Feature Cards Grid */
.code-ui__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.code-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  margin-bottom: 2px;
}

.card-icon.blue { background: rgba(37, 99, 235, 0.2); color: #60a5fa; }
.card-icon.green { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.card-icon.purple { background: rgba(168, 85, 247, 0.2); color: #c084fc; }

.card-title {
  font-size: 10px;
  font-weight: 700;
  color: #f1f5f9;
}

.card-sub {
  font-size: 8.5px;
  color: #64748b;
}

/* Smartphone Overlapping Frame */
.ibr-hero__phone-frame {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 155px;
  height: 290px;
  background: #0f172a;
  border: 4px solid #1e293b;
  border-radius: 28px;
  overflow: hidden;
  z-index: 4;
  transition: transform 0.4s ease;
}

.ibr-hero__visual-stack:hover .ibr-hero__phone-frame {
  transform: translateY(-6px) rotate(-1deg);
}

.ibr-phone__notch {
  width: 60px;
  height: 12px;
  background: #1e293b;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.ibr-phone__screen {
  width: 100%;
  height: calc(100% - 12px);
  overflow: hidden;
}

/* PURE CODE MOBILE PHONE PREVIEW */
.ibr-code-phone-ui {
  background: #0b132b;
  color: #ffffff;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.phone-ui__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 800;
  color: #ffffff;
}

.phone-ui__hero {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-ui__title {
  font-size: 10px;
  font-weight: 700;
  color: #38bdf8;
  line-height: 1.3;
}

.phone-ui__btn {
  font-size: 9px;
  font-weight: 700;
  background: #2563eb;
  color: #ffffff;
  padding: 3px 7px;
  border-radius: 5px;
  width: fit-content;
}

.phone-ui__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.phone-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-img {
  height: 34px;
  border-radius: 4px;
}

.gradient-1 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.gradient-2 { background: linear-gradient(135deg, #10b981, #047857); }

.item-line {
  height: 4px;
  width: 70%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* Floating Preview Pills */
.ibr-hero__preview-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  z-index: 5;
  animation: ibrWaFloatBounce 3.5s ease-in-out infinite;
}

.pill--top {
  top: 10px;
  right: 15px;
}

.pill--bottom {
  bottom: 15px;
  left: -15px;
  animation-delay: 1.5s;
}

.ibr-hero__preview-pill i {
  font-size: 18px;
  color: #0a64c4;
}

.ibr-hero__preview-pill strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #0f172a;
}

.ibr-hero__preview-pill span {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
}

.ibr-hero__mockup-window:hover {
  transform: translateY(-6px) rotate(0.5deg);
}

.ibr-mockup__header {
  height: 40px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.ibr-mockup__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red {
  background: #ef4444;
}

.dot--yellow {
  background: #f59e0b;
}

.dot--green {
  background: #10b981;
}

.ibr-mockup__url-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 11px;
  color: #64748b;
  width: min(240px, 50%);
  justify-content: center;
}

.ibr-mockup__url-bar i {
  font-size: 10px;
  color: #10b981;
}

.ibr-mockup__actions i {
  color: #94a3b8;
  font-size: 13px;
}

.ibr-mockup__body {
  position: relative;
  height: 350px;
  background: #0f172a;
  overflow: hidden;
}

.ibr-mockup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.ibr-hero__mockup-window:hover .ibr-mockup__img {
  transform: scale(1.04);
}

.ibr-mockup__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.35) 100%);
  pointer-events: none;
}

/* FLOATING MICRO CARDS */
.ibr-mockup__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  animation: ibrWaFloatBounce 3.5s ease-in-out infinite;
}

.float-card--1 {
  bottom: 24px;
  left: 20px;
}

.float-card--2 {
  top: 24px;
  right: 20px;
  animation-delay: 1.5s;
}

.float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-card__icon--speed {
  background: #d1fae5;
  color: #059669;
}

.float-card__info strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.float-card__info span {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.ibr-hero__button span {
  transition: transform 0.22s ease;
}

.ibr-hero__button:hover span {
  transform: translate(2px, -2px);
}

/* PRIMARY - MATCHED TO NAVBAR CTA BUTTON (NO BORDER) */

.ibr-hero__button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2384e5, #0867c6);
  border: none;
  box-shadow: 0 8px 24px rgba(5, 92, 178, 0.25);
}

.ibr-hero__button--primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1d79d8, #075bb0);
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(5, 80, 158, 0.32);
}

/* SECONDARY - LIGHT THEME STYLE (SOFT BORDER) */

.ibr-hero__button--secondary {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.ibr-hero__button--secondary:hover {
  color: #0a64c4;
  background: #ffffff;
  border-color: #cbd5e1;
}

/* =====================================================
   TRUST
===================================================== */

.ibr-hero__trust {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-top: 38px;
}

.ibr-hero__trust-stack {
  display: flex;
}

.ibr-hero__trust-stack span {
  width: 29px;
  height: 29px;

  display: grid;

  place-items: center;

  margin-left: -5px;

  color: #dceeff;

  background: #0b3d70;

  border: 2px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  font-size: 9px;
  font-weight: 600;
}

.ibr-hero__trust-stack span:first-child {
  margin-left: 0;
}

.ibr-hero__trust-stack span:last-child {
  color: #0a64c4;

  background: #fff;
}

.ibr-hero__trust-copy {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.ibr-hero__trust-copy strong {
  color: rgba(255, 255, 255, 0.94);

  font-size: 11px;

  font-weight: 600;
}

.ibr-hero__trust-copy span {
  color: rgba(255, 255, 255, 0.58);

  font-size: 10px;
}

/* =====================================================
   VISUAL
===================================================== */

.ibr-hero__visual {
  position: relative;

  min-height: 560px;

  display: flex;

  align-items: center;

  justify-content: center;

  scale: 0.95;
}

/* =====================================================
   GRID
===================================================== */

.ibr-hero__grid {
  position: absolute;

  inset: 0;

  opacity: 0.12;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);

  background-size: 36px 36px;

  mask-image: radial-gradient(circle at center, black 20%, transparent 72%);

  -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 72%);
}

/* =====================================================
   DASHBOARD
===================================================== */

.ibr-hero__dashboard {
  position: relative;

  z-index: 2;

  width: min(100%, 600px);

  background: linear-gradient(145deg, #102b4b 0%, #071a32 100%);

  border: 1px solid rgba(181, 220, 255, 0.14);

  border-radius: 18px;

  overflow: hidden;
}

/* =====================================================
   DASHBOARD TOP
===================================================== */

.ibr-hero__dashboard-top {
  height: 48px;

  display: flex;

  align-items: center;

  justify-content: end;

  padding: 0 17px;

  border-bottom: 1px solid rgba(181, 220, 255, 0.08);
}

.ibr-hero__dashboard-brand {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #dceeff;

  font-size: 10px;

  font-weight: 600;
}

.ibr-hero__dashboard-brand span {
  width: 7px;
  height: 7px;

  background: #60b5ff;

  border-radius: 50%;
}

.ibr-hero__dashboard-url {
  color: #8faaca;

  font-size: 13px;
}

/* =====================================================
   DASHBOARD BODY
===================================================== */

.ibr-hero__dashboard-body {
  padding: 27px;
}

/* =====================================================
   DASHBOARD HEADING
===================================================== */

.ibr-hero__dashboard-heading {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;
}

.ibr-hero__dashboard-label {
  color: #7894b1;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.04em;
}

.ibr-hero__dashboard-heading h2 {
  max-width: 300px;

  margin: 12px 0 0;

  color: #f2f8ff;

  font-size: 30px;

  line-height: 1.06;

  font-weight: 500;

  letter-spacing: -0.04em;
}

.ibr-hero__dashboard-heading h2 strong {
  display: block;

  color: #8cbcf0;

  font-weight: 500;
}

/* =====================================================
   SCORE
===================================================== */

.ibr-hero__score {
  min-width: 68px;

  display: flex;

  flex-direction: column;

  align-items: flex-end;

  padding: 10px 11px;

  background: rgba(96, 181, 255, 0.055);

  border: 1px solid rgba(96, 181, 255, 0.13);

  border-radius: 14px;
}

.ibr-hero__score span {
  color: #7894b1;

  width: 100%;

  text-align: center;

  font-size: 10px;
}

.ibr-hero__score strong {
  margin-top: 2px;

  width: 100%;

  text-align: center;

  color: #dceeff;

  font-size: 23px;
}

/* =====================================================
   CHART
===================================================== */

.ibr-hero__chart {
  position: relative;

  width: 100%;

  margin-top: 26px;
}

.ibr-hero__chart-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 14px;
}

.ibr-hero__chart-header>span {
  color: #8199b3;

  font-size: 13px;

  font-weight: 500;
}

.ibr-hero__chart-header strong {
  display: flex;

  align-items: center;

  gap: 6px;

  color: #72bcff;

  font-size: 13px;

  font-weight: 600;
}

.ibr-hero__chart-header strong small {
  color: #5c7590;

  font-size: 10px;

  font-weight: 400;
}

.ibr-hero__chart-stage {
  position: relative;

  width: 100%;

  height: 190px;
}

.ibr-hero__chart-svg {
  display: block;

  width: 100%;
  height: 100%;

  overflow: visible;
}

.ibr-hero__chart-grid {
  fill: none;

  stroke: rgba(156, 202, 240, 0.07);

  stroke-width: 1;
}

.ibr-hero__chart-area {
  fill: url("#ibrChartGradient");

  opacity: 0;

  transition: opacity 0.8s ease;
}

.ibr-hero__chart-path {
  fill: none;

  stroke: #60b5ff;

  stroke-width: 2.5;

  stroke-linecap: round;

  stroke-linejoin: round;

  filter: drop-shadow(0 0 6px rgba(96, 181, 255, 0.28));

  stroke-dasharray: 1;

  stroke-dashoffset: 1;
}

.ibr-hero__chart-point {
  fill: #8fd0ff;

  stroke: #102b4b;

  stroke-width: 3;

  opacity: 0;

  cursor: pointer;

  transform-box: fill-box;

  transform-origin: center;

  transform: scale(0);

  transition:
    opacity 0.22s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    fill 0.2s ease;
}

.ibr-hero__chart-guide {
  pointer-events: none;

  stroke: rgba(96, 181, 255, 0.22);

  stroke-width: 1;

  stroke-dasharray: 3 5;

  opacity: 0;

  transition: opacity 0.2s ease;
}

.ibr-hero__chart-labels {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 7px;

  padding: 0 1px;

  color: #607b98;

  font-size: 13px;
}

/* =====================================================
   TOOLTIP
===================================================== */

.ibr-hero__chart-tooltip {
  position: absolute;

  top: 0;
  left: 0;

  min-width: 64px;

  display: flex;

  flex-direction: column;

  gap: 2px;

  padding: 8px 9px;

  background: rgba(7, 25, 48, 0.97);

  border: 1px solid rgba(155, 205, 245, 0.14);

  border-radius: 7px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);

  opacity: 0;

  transform: translate(-50%, -110%);

  pointer-events: none;

  transition: opacity 0.18s ease;
}

.ibr-hero__chart-tooltip.is-visible {
  opacity: 1;
}

.ibr-hero__chart-tooltip-label {
  color: #7894b1;

  font-size: 8px;
}

.ibr-hero__chart-tooltip-value {
  color: #f1f7ff;

  font-size: 15px;

  font-weight: 600;
}

.ibr-hero__chart-point.is-active {
  fill: #fff;

  transform: scale(1.55);

  filter: drop-shadow(0 0 9px rgba(141, 208, 255, 0.75));
}

/* =====================================================
   GRAPH ANIMATION
===================================================== */

.ibr-hero__chart.is-animated .ibr-hero__chart-path {
  stroke-dashoffset: 0;

  transition: stroke-dashoffset 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.ibr-hero__chart.is-animated .ibr-hero__chart-area {
  opacity: 1;

  transition: opacity 0.7s ease 0.9s;
}

.ibr-hero__chart.is-animated .ibr-hero__chart-point {
  opacity: 1;

  transform: scale(1);
}

.ibr-hero__chart.is-animated .ibr-hero__chart-point:nth-child(1) {
  transition-delay: 0.65s;
}

.ibr-hero__chart.is-animated .ibr-hero__chart-point:nth-child(2) {
  transition-delay: 0.95s;
}

.ibr-hero__chart.is-animated .ibr-hero__chart-point:nth-child(3) {
  transition-delay: 1.15s;
}

.ibr-hero__chart.is-animated .ibr-hero__chart-point:nth-child(4) {
  transition-delay: 1.4s;
}

.ibr-hero__chart.is-animated .ibr-hero__chart-point:nth-child(5) {
  transition-delay: 1.65s;
}

/* =====================================================
   METRICS
===================================================== */

.ibr-hero__metrics {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 9px;

  margin-top: 14px;
}

.ibr-hero__metric {
  padding: 12px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(155, 205, 245, 0.08);

  border-radius: 9px;
}

.ibr-hero__metric-label {
  display: block;

  color: #7890aa;

  font-size: 13px;
}

.ibr-hero__metric strong {
  display: inline-block;

  margin-top: 8px;

  color: #eaf4ff;

  font-size: 25px;

  font-weight: 500;
}

.ibr-hero__metric small {
  margin-left: 4px;

  color: #72bcff;

  font-size: 10px;
}

/* =====================================================
   SERVICES
===================================================== */

.ibr-hero__services {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 9px;

  margin-top: 9px;
}

.ibr-hero__service {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 10px;

  background: rgba(255, 255, 255, 0.018);

  border: 1px solid rgba(155, 205, 245, 0.07);

  border-radius: 9px;
}

.ibr-hero__service-icon {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  color: #9dd5ff;

  background: rgba(60, 150, 230, 0.1);

  border: 1px solid rgba(96, 181, 255, 0.13);

  border-radius: 7px;

  font-size: 9px;

  font-weight: 700;
}

.ibr-hero__service div {
  display: flex;

  flex-direction: column;

  gap: 2px;
}

.ibr-hero__service strong {
  color: #d5e5f5;

  font-size: 13px;
}

.ibr-hero__service small {
  color: #6c849f;

  font-size: 10px;
}

/* =====================================================
   FLOATING CARDS
===================================================== */

.ibr-hero__floating {
  position: absolute;

  z-index: 4;

  display: flex;

  align-items: center;

  gap: 9px;

  padding: 11px 13px;

  background: rgba(7, 25, 48, 0.94);

  border: 1px solid rgba(155, 205, 245, 0.14);

  border-radius: 10px;

  backdrop-filter: blur(14px);
}

.ibr-hero__floating:not(.ibr-hero__floating--bottom) {
  top: -10px;
  left: 4px;
}

.ibr-hero__floating--bottom {
  right: -8px;
  bottom: 75px;
}

.ibr-hero__floating-icon {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  color: #9dd5ff;

  background: rgba(60, 150, 230, 0.12);

  border: 1px solid rgba(96, 181, 255, 0.13);

  border-radius: 14px;

  font-size: 14px;
}

.ibr-hero__floating--bottom>span {
  color: #72bcff;

  font-size: 13px;
}

.ibr-hero__floating div {
  display: flex;

  flex-direction: column;

  gap: 2px;
}

.ibr-hero__floating strong {
  color: #dcecff;

  font-size: 13px;

  font-weight: 600;
}

.ibr-hero__floating small {
  color: #7189a2;

  font-size: 10px;
}

/* =====================================================
   DASHBOARD ENTRANCE
===================================================== */

.ibr-hero__dashboard {
  opacity: 0;

  transform: translateY(24px) scale(0.985);

  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.ibr-hero.is-visible .ibr-hero__dashboard {
  opacity: 1;

  transform: translateY(0) scale(1);
}

/* =====================================================
   CHART ENTRANCE
===================================================== */

.ibr-hero__chart {
  opacity: 0;

  transform: translateY(8px);

  transition:
    opacity 0.45s ease,
    transform 0.6s ease;

  transition-delay: 0.35s;
}

.ibr-hero.is-visible .ibr-hero__chart {
  opacity: 1;

  transform: translateY(0);
}

/* =====================================================
   GRAPH LINE
===================================================== */

.ibr-hero__chart-line {
  transform-origin: left center;

  transform: scaleX(0);

  opacity: 0;

  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;

  transition-delay: 0.55s;
}

.ibr-hero.is-visible .ibr-hero__chart-line {
  transform: scaleX(1);

  opacity: 1;
}

/* =====================================================
   GRAPH POINTS ENTRANCE
===================================================== */

.ibr-hero__chart-point {
  opacity: 0;

  transform: scale(0);

  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ibr-hero.is-visible .ibr-hero__chart-point--one {
  opacity: 1;

  transform: scale(1);

  transition-delay: 1s;
}

.ibr-hero.is-visible .ibr-hero__chart-point--two {
  opacity: 1;

  transform: scale(1);

  transition-delay: 1.15s;
}

.ibr-hero.is-visible .ibr-hero__chart-point--three {
  opacity: 1;

  transform: scale(1);

  transition-delay: 1.3s;
}

.ibr-hero.is-visible .ibr-hero__chart-point--four {
  opacity: 1;

  transform: scale(1);

  transition-delay: 1.45s;
}

/* =====================================================
   CHART LABELS
===================================================== */

.ibr-hero__chart-labels {
  opacity: 0;

  transform: translateY(5px);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;

  transition-delay: 1.45s;
}

.ibr-hero.is-visible .ibr-hero__chart-labels {
  opacity: 1;

  transform: translateY(0);
}

/* =====================================================
   METRICS ENTRANCE
===================================================== */

.ibr-hero__metric {
  opacity: 0;

  transform: translateY(12px);

  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ibr-hero.is-visible .ibr-hero__metric:nth-child(1) {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 1.55s;
}

.ibr-hero.is-visible .ibr-hero__metric:nth-child(2) {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 1.65s;
}

.ibr-hero.is-visible .ibr-hero__metric:nth-child(3) {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 1.75s;
}

/* =====================================================
   SERVICES ENTRANCE
===================================================== */

.ibr-hero__service {
  opacity: 0;

  transform: translateY(10px);

  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ibr-hero.is-visible .ibr-hero__service:nth-child(1) {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 1.85s;
}

.ibr-hero.is-visible .ibr-hero__service:nth-child(2) {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 1.95s;
}

/* =====================================================
   FLOATING CARDS ENTRANCE
===================================================== */

.ibr-hero__floating {
  opacity: 0;

  transform: translateY(12px);

  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ibr-hero.is-visible .ibr-hero__floating:not(.ibr-hero__floating--bottom) {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 1.4s;
}

.ibr-hero.is-visible .ibr-hero__floating--bottom {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 1.65s;
}

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

/* =====================================================
   RESPONSIVE SHOWCASE HERO (TABLET & MOBILE)
===================================================== */

@media (max-width: 1024px) {
  .ibr-hero {
    min-height: auto;
    padding: 130px 0 60px;
  }

  .ibr-hero__split-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .ibr-hero__left {
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .ibr-hero__title {
    font-size: clamp(30px, 4.5vw, 42px);
    text-align: center;
  }

  .ibr-hero__description {
    text-align: center;
    font-size: 15px;
    margin-bottom: 22px;
  }

  .ibr-hero__tags {
    justify-content: center;
    margin-bottom: 24px;
  }

  .ibr-hero__actions {
    justify-content: center;
    margin-bottom: 28px;
  }

  .ibr-hero__proof {
    justify-content: center;
    padding-top: 18px;
  }

  .ibr-hero__right {
    max-width: 640px;
    margin: 0 auto;
  }

  .ibr-mockup__body {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .ibr-hero {
    padding: 85px 0 50px;
    min-height: auto;
  }

  .ibr-hero__container {
    width: calc(100% - 32px);
  }

  .ibr-hero__split-grid {
    gap: 36px;
  }

  .ibr-hero__title {
    font-size: clamp(25px, 6.5vw, 32px);
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .ibr-hero__description {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .ibr-hero__tags {
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
  }

  .ibr-hero__tag-item {
    font-size: 11.5px;
    padding: 4px 9px;
  }

  .ibr-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }

  .ibr-hero__button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    font-size: 13.5px;
  }

  .ibr-hero__proof {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    padding-top: 16px;
  }

  .ibr-hero__stars {
    align-items: center;
  }

  .ibr-hero__mockup-window {
    border-radius: 14px;
  }

  .ibr-mockup__header {
    height: 34px;
    padding: 0 12px;
  }

  .ibr-mockup__url-bar {
    font-size: 10px;
    padding: 3px 10px;
    width: 60%;
  }

  .ibr-mockup__body {
    height: 230px;
  }

  /* Micro Cards on Mobile */
  .ibr-mockup__floating-card {
    padding: 7px 11px;
    gap: 8px;
    border-radius: 10px;
  }

  .float-card--1 {
    bottom: 12px;
    left: 12px;
  }

  .float-card--2 {
    top: 12px;
    right: 12px;
  }

  .float-card__icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 7px;
  }

  .float-card__info strong {
    font-size: 10.5px;
  }

  .float-card__info span {
    font-size: 9.5px;
  }
}
    top: -20%;
    left: -46%;
  }

  .ibr-hero__glow--two {
    right: -46%;
    bottom: -20%;
  }

  .ibr-hero::before {
    filter: blur(42px);
  }

  .ibr-hero::after {
    filter: blur(48px);
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {
  .ibr-hero__visual {
    min-height: 395px;
  }

  .ibr-hero__floating strong {
    font-size: 8px;
  }

  .ibr-hero__floating small {
    font-size: 7px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .ibr-hero::before,
  .ibr-hero::after,
  .ibr-hero__glow--one,
  .ibr-hero__glow--two {
    animation: none !important;
    transition: none !important;
  }

  .ibr-hero__dashboard,
  .ibr-hero__chart,
  .ibr-hero__chart-line,
  .ibr-hero__chart-point,
  .ibr-hero__chart-labels,
  .ibr-hero__metric,
  .ibr-hero__service,
  .ibr-hero__floating {
    opacity: 1 !important;

    transform: none !important;

    transition: none !important;
  }
}