/* =========================================================
   BEYOND TIDE SOLUTIONS
   PRODUCT MARKETING PAGES

   Shared by:
   - NeriFlow
   - CorpsSpace
========================================================= */


/* =========================================================
   PRODUCT BRAND VARIABLES
========================================================= */

.product-page {
  --product-accent: #00C2FF;
  --product-accent-soft: rgba(0, 194, 255, 0.14);
  --product-accent-border: rgba(0, 194, 255, 0.38);

  --product-surface: #0B2231;
  --product-surface-light: #123247;
  --product-background: #071824;

  --product-text: #F5F7FA;
  --product-muted: #A7B6C2;
}


/* NERIFLOW */

.product-neriflow {
  --product-accent: #00C2FF;
  --product-accent-soft: rgba(0, 194, 255, 0.14);
  --product-accent-border: rgba(0, 194, 255, 0.42);

  --product-surface: #0B2231;
  --product-surface-light: #123247;
  --product-background: #071824;
}


/* CORPSSPACE — READY FOR LATER */

.product-corpsspace {
  --product-accent: #FF4B55;
  --product-accent-soft: rgba(198, 32, 48, 0.14);
  --product-accent-border: rgba(255, 75, 85, 0.42);

  --product-surface: #35121A;
  --product-surface-light: #541923;
  --product-background: #1E0B10;
}


/* =========================================================
   PRODUCT PAGE BASE
========================================================= */

.product-page {
  background-color: var(--product-background);
}

.product-page main {
  overflow: hidden;
}


/* =========================================================
   PRODUCT HERO
========================================================= */

.product-hero {
  position: relative;

  min-height: 720px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 78% 40%,
      var(--product-accent-soft),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #071824 0%,
      #0B2231 58%,
      #071824 100%
    );
}

.product-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 24, 36, 0.15),
      transparent 55%
    );

  pointer-events: none;
}

.product-hero-container {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1650px;

  margin: auto;

  display: grid;
  grid-template-columns: 0.76fr 1.24fr;

  gap: 60px;

  align-items: center;
}


/* HERO COPY */

.product-hero-content {
  max-width: 680px;
}

.product-eyebrow {
  color: var(--product-accent);

  font-size: 0.9rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 2px;

  margin-bottom: 22px;
}

.product-hero h1 {
  max-width: 720px;

  margin-bottom: 28px;

  color: var(--product-text);

  font-size: clamp(3.4rem, 5vw, 5.4rem);
  line-height: 1.02;

  letter-spacing: -2px;
}

.product-hero h1 span {
  display: block;

  color: var(--product-accent);

  margin-top: 8px;
}

.product-hero-description {
  max-width: 650px;

  margin-bottom: 36px;

  color: var(--product-muted);

  font-size: 1.15rem;
  line-height: 1.8;
}

.product-hero-actions {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;

  margin-bottom: 26px;
}

.product-secondary-btn {
  display: inline-block;

  padding: 14px 28px;

  color: var(--product-accent);

  border: 1px solid var(--product-accent);
  border-radius: 8px;

  font-weight: 700;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.product-secondary-btn:hover {
  transform: translateY(-2px);

  background-color: var(--product-accent-soft);
}

.product-byline {
  color: #6F8797;

  font-size: 0.9rem;
}


/* =========================================================
   PRODUCT HERO VISUAL
========================================================= */

.product-hero-visual {
  width: 100%;
}

.product-hero-visual-story {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-visual-story .product-image-zoom {
  width: 100%;
  max-width: 1000px;

  margin: auto;
}

.product-hero-visual-story .product-screenshot {
  width: 100%;
  height: auto;

  object-fit: contain;

  border-radius: 18px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    0 0 50px rgba(0, 194, 255, 0.08);
}

.product-screenshot-placeholder {
  position: relative;

  width: 100%;
  min-height: 470px;

  padding: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(18, 50, 71, 0.84),
      rgba(7, 24, 36, 0.94)
    );

  border: 1px solid var(--product-accent-border);
  border-radius: 22px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  overflow: hidden;
}

.product-screenshot-placeholder::before {
  content: "";

  position: absolute;
  inset: 20px;

  border: 1px dashed rgba(167, 182, 194, 0.24);
  border-radius: 14px;

  pointer-events: none;
}

.product-screenshot-placeholder span {
  position: relative;

  z-index: 2;

  color: var(--product-accent);

  font-size: 0.86rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1.6px;

  margin-bottom: 12px;
}

.product-screenshot-placeholder p {
  position: relative;

  z-index: 2;

  max-width: 380px;

  color: var(--product-muted);

  line-height: 1.6;
}


/* REAL SCREENSHOT SUPPORT */

.product-screenshot {
  width: 100%;

  display: block;

  border-radius: 18px;

  border: 1px solid var(--product-accent-border);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3);

  cursor: zoom-in;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.product-image-zoom {
  position: relative;

  width: 100%;
}

.product-image-zoom:hover .product-screenshot {
  transform: translateY(-3px);

  border-color: var(--product-accent);

  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34);
}


/* MAGNIFY BUTTON */

.product-image-zoom-btn {
  position: absolute;

  top: 16px;
  right: 16px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(7, 24, 36, 0.88);

  border: 1px solid var(--product-accent-border);
  border-radius: 12px;

  color: var(--product-accent);

  cursor: pointer;

  backdrop-filter: blur(8px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.24);

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.product-image-zoom-btn:hover {
  transform: scale(1.06);

  background-color: var(--product-accent);
  color: #071824;

  border-color: var(--product-accent);
}

.product-image-zoom-btn svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* FULL SCREEN IMAGE VIEWER */

.product-image-modal {
  position: fixed;
  inset: 0;

  z-index: 99999;

  padding: 70px 40px 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(2, 9, 14, 0.94);

  backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.product-image-modal.active {
  opacity: 1;
  visibility: visible;
}

.product-image-modal img {
  max-width: min(96vw, 1800px);
  max-height: 88vh;

  width: auto;
  height: auto;

  display: block;

  border-radius: 16px;

  border: 1px solid var(--product-accent-border);

  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.55);

  transform: scale(0.97);

  transition: transform 0.25s ease;
}

.product-image-modal.active img {
  transform: scale(1);
}


/* MODAL CLOSE BUTTON */

.product-image-modal-close {
  position: absolute;

  top: 20px;
  right: 24px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(18, 50, 71, 0.92);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  color: #F5F7FA;

  font-size: 1.35rem;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.product-image-modal-close:hover {
  transform: scale(1.06);

  background-color: var(--product-accent);
  color: #071824;
}


/* =========================================================
   VALUE STRIP
========================================================= */

.product-value-strip {
  padding-top: 0;
  padding-bottom: 0;

  background-color: #071824;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-value-grid {
  width: 100%;
  max-width: 1450px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-value-grid > div {
  min-height: 150px;

  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.product-value-grid > div:last-child {
  border-right: none;
}

.product-value-grid strong {
  color: var(--product-text);

  font-size: 1.05rem;

  margin-bottom: 8px;
}

.product-value-grid span {
  color: var(--product-muted);

  font-size: 0.92rem;
  line-height: 1.55;
}


/* =========================================================
   PRODUCT STORY
========================================================= */

.product-story-section {
  background-color: var(--product-surface);
}

.product-story-container {
  width: 100%;
  max-width: 1350px;

  margin: auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  gap: 100px;

  align-items: start;
}

.product-story-heading h2 {
  max-width: 620px;

  color: var(--product-text);

  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.08;

  letter-spacing: -1.5px;
}

.product-story-content {
  padding-top: 34px;
}

.product-story-content p {
  color: var(--product-muted);

  font-size: 1.08rem;
  line-height: 1.85;

  margin-bottom: 24px;
}

.product-story-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.product-capabilities-section {
  background:
    radial-gradient(
      circle at 50% 12%,
      var(--product-accent-soft),
      transparent 30%
    ),
    #071824;
}

.neriflow-ecosystem {
  width: 100%;
  max-width: 1500px;

  margin: auto;

  display: grid;
  grid-template-columns: 1fr auto 0.78fr auto 1fr;

  gap: 24px;

  align-items: center;
}


/* STAGES */

.ecosystem-stage,
.ecosystem-core {
  min-height: 360px;

  padding: 34px;

  border-radius: 22px;

  border: 1px solid var(--product-accent-border);

  background:
    linear-gradient(
      145deg,
      rgba(18, 50, 71, 0.86),
      rgba(7, 24, 36, 0.96)
    );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.ecosystem-stage-label,
.ecosystem-core-label {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--product-accent);

  font-size: 0.78rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.ecosystem-stage h3,
.ecosystem-core h3 {
  margin-bottom: 24px;

  color: var(--product-text);

  font-size: 1.55rem;
  line-height: 1.2;
}


/* NODE GRID */

.ecosystem-node-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.ecosystem-node {
  min-height: 120px;

  padding: 18px;

  display: flex;
  flex-direction: column;

  background-color: rgba(7, 24, 36, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ecosystem-node:hover {
  transform: translateY(-4px);

  border-color: var(--product-accent-border);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.ecosystem-icon {
  width: 38px;
  height: 38px;

  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--product-accent);

  background-color: rgba(0, 194, 255, 0.08);

  border: 1px solid var(--product-accent-border);
  border-radius: 10px;

  font-size: 0.72rem;
  font-weight: 800;
}

.ecosystem-node strong {
  margin-bottom: 6px;

  color: var(--product-text);

  font-size: 0.95rem;
}

.ecosystem-node > span:last-child {
  color: var(--product-muted);

  font-size: 0.82rem;
  line-height: 1.5;
}


/* NERIFLOW CORE */

.ecosystem-core {
  min-height: 300px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;

  border-color: var(--product-accent);

  background:
    radial-gradient(
      circle at center,
      rgba(0, 194, 255, 0.13),
      transparent 70%
    ),
    linear-gradient(
      145deg,
      rgba(18, 50, 71, 0.96),
      rgba(7, 24, 36, 0.98)
    );

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 45px rgba(0, 194, 255, 0.08);
}

.ecosystem-core h3 {
  font-size: 1.8rem;
}

.ecosystem-core p {
  margin-bottom: 26px;

  color: var(--product-muted);

  font-size: 0.94rem;
  line-height: 1.7;
}

.ecosystem-core-flow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;

  color: var(--product-accent);

  font-size: 0.85rem;
  font-weight: 800;
}

.ecosystem-core-flow b {
  color: rgba(167, 182, 194, 0.55);
}


/* MAIN FLOW ARROWS */

.ecosystem-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--product-accent);

  font-size: 2.8rem;
  font-weight: 300;

  opacity: 0.9;
}


/* TABLET */

@media (max-width: 1200px) {

  .neriflow-ecosystem {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .ecosystem-arrow {
    transform: rotate(90deg);

    font-size: 2rem;
  }

}


/* MOBILE */

@media (max-width: 768px) {

  .ecosystem-stage,
  .ecosystem-core {
    min-height: auto;

    padding: 26px;
  }

  .ecosystem-node-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   FEATURE SECTIONS
========================================================= */

.product-feature-section {
  background-color: var(--product-surface);
}

.product-feature-section:nth-of-type(even) {
  background-color: #071824;
}

.product-feature-container {
  width: 100%;
  max-width: 1450px;

  margin: auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  gap: 90px;

  align-items: center;
}

.product-feature-reverse .product-feature-container {
  grid-template-columns: 0.85fr 1.15fr;
}

.product-feature-content {
  max-width: 620px;
}

.product-feature-content h2 {
  margin-bottom: 24px;

  color: var(--product-text);

  font-size: clamp(2.5rem, 3.6vw, 3.8rem);
  line-height: 1.08;

  letter-spacing: -1.4px;
}

.product-feature-content > p:not(.section-tag) {
  color: var(--product-muted);

  font-size: 1.08rem;
  line-height: 1.8;
}

.product-feature-visual .product-screenshot-placeholder {
  min-height: 420px;
}



/* =========================================================
   LEADERSHIP OPERATIONAL VISIBILITY
========================================================= */

.leadership-visibility-section {
  background:
    radial-gradient(
      circle at 78% 45%,
      var(--product-accent-soft),
      transparent 34%
    ),
    #071824;
}

.leadership-visibility-container {
  width: 100%;
  max-width: 1450px;

  margin: auto;

  display: grid;
  grid-template-columns: 0.82fr 1.18fr;

  gap: 90px;

  align-items: center;
}

.leadership-visibility-content {
  max-width: 620px;
}

.leadership-visibility-content h2 {
  margin-bottom: 24px;

  color: var(--product-text);

  font-size: clamp(2.7rem, 3.8vw, 4rem);
  line-height: 1.08;

  letter-spacing: -1.5px;
}

.leadership-visibility-intro {
  margin-bottom: 34px;

  color: var(--product-muted);

  font-size: 1.05rem;
  line-height: 1.75;
}


/* LEADERSHIP BENEFITS */

.leadership-benefits {
  display: grid;

  gap: 0;
}

.leadership-benefit {
  padding: 18px 0;

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

.leadership-benefit:first-child {
  padding-top: 0;
}

.leadership-benefit:last-child {
  padding-bottom: 0;

  border-bottom: none;
}

.leadership-benefit strong {
  display: block;

  margin-bottom: 6px;

  color: var(--product-accent);

  font-size: 1rem;
}

.leadership-benefit span {
  display: block;

  color: var(--product-muted);

  font-size: 0.94rem;
  line-height: 1.6;
}


/* LEADERSHIP SCREENSHOT */

.leadership-visibility-visual {
  width: 100%;
}




/* TABLET */

@media (max-width: 1100px) {

  .leadership-visibility-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .leadership-visibility-content {
    max-width: 800px;
  }



}


/* MOBILE */

@media (max-width: 768px) {

  .leadership-visibility-content h2 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .leadership-visibility-intro {
    margin-bottom: 28px;
  }

  .leadership-benefit {
    padding: 16px 0;
  }



}


/* =========================================================
   FINAL PRODUCT CTA
========================================================= */

.product-cta-section {
  background:
    radial-gradient(
      circle at center,
      var(--product-accent-soft),
      transparent 42%
    ),
    #071824;
}

.product-cta-panel {
  width: 100%;
  max-width: 1100px;

  margin: auto;

  padding: 72px;

  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(18, 50, 71, 0.86),
      rgba(7, 24, 36, 0.96)
    );

  border: 1px solid var(--product-accent-border);
  border-radius: 24px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.26);
}

.product-cta-panel h2 {
  max-width: 800px;

  margin: 0 auto 22px;

  color: var(--product-text);

  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.08;

  letter-spacing: -1.5px;
}

.product-cta-panel > p:not(.section-tag) {
  max-width: 720px;

  margin: 0 auto 34px;

  color: var(--product-muted);

  font-size: 1.08rem;
  line-height: 1.75;
}

.product-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 24px;

  flex-wrap: wrap;
}

.product-secondary-link {
  color: var(--product-accent);

  font-weight: 700;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.product-secondary-link:hover {
  color: var(--product-text);

  transform: translateX(5px);
}


/* =========================================================
   NERIFLOW BUTTON OVERRIDE
========================================================= */

.product-neriflow .primary-btn {
  background-color: var(--product-accent);
  color: #071824;
}


/* =========================================================
   CORPSSPACE PREPARATION
========================================================= */

.product-corpsspace .product-hero {
  background:
    radial-gradient(
      circle at 78% 40%,
      rgba(198, 32, 48, 0.20),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #071824 0%,
      #31121A 60%,
      #1E0B10 100%
    );
}

.product-corpsspace .product-capability-card {
  background:
    linear-gradient(
      145deg,
      rgba(84, 25, 35, 0.80),
      rgba(32, 12, 18, 0.96)
    );
}

.product-corpsspace .product-cta-panel {
  background:
    linear-gradient(
      145deg,
      rgba(84, 25, 35, 0.82),
      rgba(30, 11, 16, 0.96)
    );
}

.product-corpsspace .primary-btn {
  background-color: var(--product-accent);
  color: #FFFFFF;
}



/* =========================================================
   CORPSSPACE DIGITAL EXPERIENCE
========================================================= */


/* =========================================================
   CORPSSPACE HERO
========================================================= */

.corpsspace-hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(255, 75, 85, 0.13),
      transparent 34%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(198, 32, 48, 0.08),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #07141d 0%,
      #160b10 46%,
      #290d14 100%
    );
}

.corpsspace-grid-overlay {
  position: absolute;
  inset: 0;

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

  background-size: 42px 42px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 15%,
      black 85%,
      transparent
    );

  pointer-events: none;
}

.corpsspace-glow {
  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.18;

  pointer-events: none;
}

.corpsspace-glow-one {
  top: -180px;
  right: 5%;

  background-color: #C62030;
}

.corpsspace-glow-two {
  bottom: -260px;
  left: 28%;

  background-color: #5B1521;
}

.corpsspace-hero-container {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1650px;

  margin: auto;

  display: grid;
  grid-template-columns: 0.76fr 1.24fr;

  gap: 70px;

  align-items: center;
}

.corpsspace-hero-content {
  max-width: 720px;
}

.corpsspace-status-row {
  margin-bottom: 24px;

  display: flex;
  align-items: center;

  gap: 10px;

  color: #FF6670;

  font-size: 0.8rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.corpsspace-status-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background-color: #FF4B55;

  box-shadow:
    0 0 0 5px rgba(255, 75, 85, 0.08),
    0 0 18px rgba(255, 75, 85, 0.75);
}

.corpsspace-hero h1 {
  margin-bottom: 28px;

  color: #F7F7F8;

  font-size: clamp(3rem, 4.2vw, 4.7rem);
  line-height: 1.03;

  letter-spacing: -2px;
}

.corpsspace-hero h1 span {
  display: block;

  margin-top: 10px;

  color: #FF4B55;
}

.corpsspace-hero-description {
  max-width: 640px;

  margin-bottom: 36px;

  color: #B9ABB0;

  font-size: 1.12rem;
  line-height: 1.8;
}

.corpsspace-hero-actions {
  display: flex;
  align-items: center;

  gap: 16px;

  flex-wrap: wrap;

  margin-bottom: 26px;
}

.corpsspace-primary-btn,
.corpsspace-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 0 28px;

  border-radius: 8px;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.corpsspace-primary-btn {
  background:
    linear-gradient(
      135deg,
      #FF4B55,
      #C62030
    );

  color: #FFFFFF;

  box-shadow:
    0 12px 30px rgba(198, 32, 48, 0.24);
}

.corpsspace-primary-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(198, 32, 48, 0.34);
}

.corpsspace-secondary-btn {
  color: #FF6972;

  border: 1px solid rgba(255, 75, 85, 0.55);

  background-color: rgba(255, 255, 255, 0.015);
}

.corpsspace-secondary-btn:hover {
  transform: translateY(-2px);

  background-color: rgba(255, 75, 85, 0.08);

  border-color: #FF4B55;
}

.corpsspace-hero-meta {
  display: flex;
  align-items: center;

  gap: 14px;

  flex-wrap: wrap;

  color: #776B70;

  font-size: 0.82rem;
}

.corpsspace-meta-divider {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background-color: #C62030;
}


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

.corpsspace-command-visual {
  width: 100%;
}

.corpsspace-command-frame {
  position: relative;

  width: 100%;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(29, 12, 18, 0.96),
      rgba(7, 18, 27, 0.98)
    );

  border: 1px solid rgba(255, 75, 85, 0.34);
  border-radius: 22px;

  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(198, 32, 48, 0.08);
}

.corpsspace-command-topbar {
  min-height: 58px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color: #8F7D83;

  background-color: rgba(0, 0, 0, 0.20);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 1.2px;
}

.corpsspace-command-topbar > div {
  display: flex;
  align-items: center;

  gap: 9px;

  color: #FF6570;
}

.command-live-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background-color: #FF4B55;

  box-shadow:
    0 0 12px rgba(255, 75, 85, 0.8);
}

.corpsspace-command-body {
  min-height: 430px;

  padding: 36px 32px;

  display: grid;
  grid-template-columns: 1fr 70px 170px 70px 1fr;

  gap: 10px;

  align-items: center;
}

.command-column-label {
  display: block;

  margin-bottom: 16px;

  color: #8E777E;

  font-size: 0.68rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.command-node {
  min-height: 66px;

  margin-bottom: 10px;

  padding: 12px 14px;

  display: flex;
  align-items: center;

  gap: 12px;

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

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.command-node:last-child {
  margin-bottom: 0;
}

.command-node:hover {
  transform: translateX(4px);

  border-color: rgba(255, 75, 85, 0.44);

  background-color: rgba(255, 75, 85, 0.06);
}

.command-node-icon {
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #FF626C;

  background-color: rgba(255, 75, 85, 0.08);

  border: 1px solid rgba(255, 75, 85, 0.22);
  border-radius: 8px;

  font-size: 0.9rem;
  font-weight: 800;
}

.command-node strong {
  display: block;

  margin-bottom: 2px;

  color: #F5F1F2;

  font-size: 0.82rem;
}

.command-node small {
  color: #806F75;

  font-size: 0.68rem;
}


/* DATA PATH */

.command-data-path {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;
}

.command-data-path span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background-color: rgba(255, 75, 85, 0.34);

  animation: corpsspacePulse 1.6s infinite ease-in-out;
}

.command-data-path span:nth-child(2) {
  animation-delay: 0.18s;
}

.command-data-path span:nth-child(3) {
  animation-delay: 0.36s;
}


/* CORE */

.command-core {
  position: relative;

  width: 160px;
  height: 160px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.command-core-ring {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(255, 75, 85, 0.30);
}

.command-core-ring-one {
  inset: 0;

  animation: corpsspaceRotate 16s linear infinite;
}

.command-core-ring-two {
  inset: 17px;

  border-style: dashed;

  opacity: 0.65;

  animation: corpsspaceRotateReverse 11s linear infinite;
}

.command-core-center {
  width: 112px;
  height: 112px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 75, 85, 0.24),
      rgba(75, 14, 25, 0.94)
    );

  border: 1px solid rgba(255, 75, 85, 0.72);

  box-shadow:
    0 0 55px rgba(198, 32, 48, 0.28);
}

.command-core-center strong {
  color: #FFFFFF;

  font-size: 1rem;

  letter-spacing: 2px;
}

.command-core-center span {
  color: #FF5661;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 3px;
}




/* COMMAND FOOTER */

.corpsspace-command-footer {
  min-height: 58px;

  padding: 0 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  background-color: rgba(0, 0, 0, 0.16);

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  color: #8D7A80;

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 1.4px;
}

.corpsspace-command-footer i {
  width: 36px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #C62030,
      transparent
    );
}


/* =========================================================
   VALUE STRIP
========================================================= */

.corpsspace-value-strip {
  padding: 0;

  background-color: #080F15;

  border-top: 1px solid rgba(255, 75, 85, 0.08);
  border-bottom: 1px solid rgba(255, 75, 85, 0.08);
}

.corpsspace-value-grid {
  width: 100%;
  max-width: 1500px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.corpsspace-value-grid > div {
  min-height: 140px;

  padding: 28px 30px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.corpsspace-value-grid > div:last-child {
  border-right: none;
}

.corpsspace-value-grid > div > span {
  margin-bottom: 10px;

  color: #A32836;

  font-size: 0.72rem;
  font-weight: 900;

  letter-spacing: 1.4px;
}

.corpsspace-value-grid strong {
  margin-bottom: 7px;

  color: #F6F3F4;

  font-size: 1rem;
}

.corpsspace-value-grid p {
  color: #8D8084;

  font-size: 0.84rem;
  line-height: 1.55;
}


/* =========================================================
   CORPSSPACE SHARED SECTION HEADINGS
========================================================= */

.corpsspace-section-label {
  margin-bottom: 14px;

  color: #FF5661;

  font-size: 0.8rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.corpsspace-section-heading {
  max-width: 900px;

  margin: 0 auto 60px;

  text-align: center;
}

.corpsspace-section-heading h2 {
  margin-bottom: 20px;

  color: #F6F3F4;

  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.08;

  letter-spacing: -1.5px;
}

.corpsspace-section-heading > p:last-child {
  max-width: 760px;

  margin: auto;

  color: #A7989D;

  font-size: 1.02rem;
  line-height: 1.75;
}


/* =========================================================
   PROBLEM SECTION
========================================================= */

.corpsspace-problem-section {
  position: relative;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(198, 32, 48, 0.08),
      transparent 30%
    ),
    #11151B;
}

.corpsspace-problem-container {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto 60px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  gap: 100px;
}

.corpsspace-problem-heading h2 {
  color: #F6F3F4;

  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.08;

  letter-spacing: -1.5px;
}

.corpsspace-problem-body {
  padding-top: 32px;
}

.corpsspace-problem-body p {
  margin-bottom: 22px;

  color: #A7979C;

  font-size: 1.05rem;
  line-height: 1.8;
}

.corpsspace-fragmentation-grid {
  width: 100%;
  max-width: 1400px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));

  gap: 12px;
}

.fragment-card {
  min-height: 130px;

  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background-color: rgba(255, 255, 255, 0.02);

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.fragment-card span {
  margin-bottom: 8px;

  color: #6F6266;

  font-size: 0.63rem;
  font-weight: 800;

  letter-spacing: 1.2px;
}

.fragment-card strong {
  color: #C7BCC0;

  font-size: 0.84rem;
}

.fragment-card-connected {
  background:
    linear-gradient(
      145deg,
      rgba(108, 18, 31, 0.70),
      rgba(41, 11, 18, 0.94)
    );

  border-color: rgba(255, 75, 85, 0.55);

  box-shadow:
    0 14px 35px rgba(198, 32, 48, 0.10);
}

.fragment-card-connected span,
.fragment-card-connected strong {
  color: #FF626C;
}


/* =========================================================
   INITIAL FOCUS
========================================================= */

.corpsspace-focus-section {
  background:
    radial-gradient(
      circle at center top,
      rgba(255, 75, 85, 0.07),
      transparent 38%
    ),
    #080F15;
}

.corpsspace-focus-grid {
  width: 100%;
  max-width: 1400px;

  margin: auto;

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

  gap: 28px;
}

.corpsspace-focus-card {
  position: relative;

  padding: 42px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(70, 18, 27, 0.74),
      rgba(15, 20, 27, 0.97)
    );

  border: 1px solid rgba(255, 75, 85, 0.25);
  border-radius: 20px;

  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.24);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.corpsspace-focus-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -130px;
  right: -90px;

  border-radius: 50%;

  background-color: rgba(255, 75, 85, 0.08);

  filter: blur(12px);

  pointer-events: none;
}

.corpsspace-focus-card:hover {
  transform: translateY(-5px);

  border-color: rgba(255, 75, 85, 0.48);

  box-shadow:
    0 32px 75px rgba(0, 0, 0, 0.30),
    0 0 30px rgba(198, 32, 48, 0.06);
}

.focus-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  margin-bottom: 34px;
}

.focus-card-number {
  color: #812531;

  font-size: 1rem;
  font-weight: 900;
}

.focus-status {
  padding: 6px 10px;

  color: #FF737C;

  background-color: rgba(255, 75, 85, 0.08);

  border: 1px solid rgba(255, 75, 85, 0.22);
  border-radius: 999px;

  font-size: 0.62rem;
  font-weight: 800;

  letter-spacing: 1.2px;
}

.focus-card-icon {
  width: 52px;
  height: 52px;

  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #FF5964;

  background-color: rgba(255, 75, 85, 0.08);

  border: 1px solid rgba(255, 75, 85, 0.25);
  border-radius: 13px;
}

.focus-card-icon svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-card-tag {
  margin-bottom: 12px;

  color: #FF5964;

  font-size: 0.8rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.corpsspace-focus-card h3 {
  max-width: 580px;

  margin-bottom: 20px;

  color: #F7F4F5;

  font-size: 2rem;
  line-height: 1.15;
}

.corpsspace-focus-card > p:not(.focus-card-tag) {
  max-width: 620px;

  margin-bottom: 28px;

  color: #AA999E;

  line-height: 1.75;
}

.focus-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 10px;
}

.focus-feature-list span {
  padding: 11px 13px;

  color: #C8BEC1;

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

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;

  font-size: 0.78rem;
}


/* =========================================================
   OPERATING MODEL
========================================================= */

.corpsspace-operating-section {
  background-color: #11151B;
}

.corpsspace-operation-flow {
  width: 100%;
  max-width: 1350px;

  margin: auto;

  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;

  align-items: center;
}

.operation-step {
  min-height: 230px;

  padding: 28px;

  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(61, 17, 25, 0.55),
      rgba(15, 20, 27, 0.95)
    );

  border: 1px solid rgba(255, 75, 85, 0.18);
  border-radius: 16px;
}

.operation-step-number {
  display: block;

  margin-bottom: 18px;

  color: #77202C;

  font-size: 0.75rem;
  font-weight: 900;

  letter-spacing: 1.4px;
}

.operation-step-icon {
  width: 46px;
  height: 46px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #FF5661;

  background-color: rgba(255, 75, 85, 0.08);

  border: 1px solid rgba(255, 75, 85, 0.22);
  border-radius: 12px;

  font-size: 1.15rem;
}

.operation-step strong {
  display: block;

  margin-bottom: 10px;

  color: #F4F0F1;

  font-size: 1.05rem;
}

.operation-step p {
  color: #94858A;

  font-size: 0.84rem;
  line-height: 1.55;
}

.operation-flow-line {
  display: flex;
  align-items: center;
}

.operation-flow-line span {
  position: relative;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #C62030,
      transparent
    );
}

.operation-flow-line span::after {
  content: "";

  position: absolute;

  width: 7px;
  height: 7px;

  top: 50%;
  right: 5px;

  transform: translateY(-50%);

  border-radius: 50%;

  background-color: #FF4B55;

  box-shadow:
    0 0 12px rgba(255, 75, 85, 0.65);

  animation: corpsspaceSignal 2.2s infinite ease-in-out;
}


/* =========================================================
   PLATFORM DIRECTION
========================================================= */

.corpsspace-direction-section {
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(198, 32, 48, 0.08),
      transparent 30%
    ),
    #080F15;
}

.corpsspace-direction-layout {
  width: 100%;
  max-width: 1400px;

  margin: auto;

  display: grid;
  grid-template-columns: 0.75fr 1.25fr;

  gap: 100px;

  align-items: center;
}

.corpsspace-direction-heading h2 {
  margin-bottom: 24px;

  color: #F7F4F5;

  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.08;

  letter-spacing: -1.5px;
}

.corpsspace-direction-heading > p:last-child {
  color: #A8979C;

  line-height: 1.8;
}

.corpsspace-module-map {
  display: grid;

  gap: 16px;
}

.module-row {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;

  align-items: center;
}

.module-chip {
  min-height: 64px;

  padding: 16px 18px;

  display: flex;
  align-items: center;

  color: #A29398;

  background-color: rgba(255, 255, 255, 0.02);

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;

  font-size: 0.85rem;
  font-weight: 700;
}

.module-chip-active {
  color: #FF6972;

  background-color: rgba(255, 75, 85, 0.07);

  border-color: rgba(255, 75, 85, 0.30);
}

.module-line {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 75, 85, 0.50),
      transparent
    );
}

.module-row-final {
  grid-template-columns: 1fr;

  max-width: calc(50% - 35px);

  margin: auto;
}


/* =========================================================
   DESIGN PARTNER
========================================================= */

.corpsspace-partner-section {
  background:
    radial-gradient(
      circle at center,
      rgba(198, 32, 48, 0.11),
      transparent 40%
    ),
    #11151B;
}

.corpsspace-partner-panel {
  width: 100%;
  max-width: 1400px;

  margin: auto;

  padding: 64px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  gap: 80px;

  align-items: center;

  background:
    linear-gradient(
      145deg,
      rgba(65, 15, 24, 0.78),
      rgba(11, 18, 25, 0.98)
    );

  border: 1px solid rgba(255, 75, 85, 0.28);
  border-radius: 24px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.30);
}

.corpsspace-partner-copy h2 {
  margin-bottom: 22px;

  color: #F7F4F5;

  font-size: clamp(2.6rem, 3.7vw, 3.8rem);
  line-height: 1.08;

  letter-spacing: -1.4px;
}

.corpsspace-partner-copy > p:not(.corpsspace-section-label) {
  margin-bottom: 30px;

  color: #A6979C;

  line-height: 1.75;
}

.corpsspace-partner-actions {
  display: flex;
  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.corpsspace-text-link {
  color: #FF626C;

  font-weight: 700;
}

.corpsspace-partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.corpsspace-partner-benefits > div {
  min-height: 150px;

  padding: 24px;

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

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.corpsspace-partner-benefits span {
  display: block;

  margin-bottom: 18px;

  color: #8B2834;

  font-size: 0.72rem;
  font-weight: 900;
}

.corpsspace-partner-benefits strong {
  display: block;

  margin-bottom: 8px;

  color: #F1EAEC;

  font-size: 0.92rem;
}

.corpsspace-partner-benefits p {
  color: #8F8085;

  font-size: 0.8rem;
  line-height: 1.55;
}


/* =========================================================
   CORPSSPACE ANIMATION
========================================================= */

@keyframes corpsspacePulse {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.75);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }

}

@keyframes corpsspaceRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

@keyframes corpsspaceRotateReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}

@keyframes corpsspaceSignal {

  0% {
    left: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 10px);
    opacity: 0;
  }

}


/* =========================================================
   CORPSSPACE TABLET
========================================================= */

@media (max-width: 1200px) {

  .corpsspace-hero-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .corpsspace-hero-content {
    max-width: 850px;
  }

  .corpsspace-command-body {
    grid-template-columns: 1fr 55px 150px 55px 1fr;
  }

  .corpsspace-fragmentation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corpsspace-operation-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
  }

  .operation-flow-line {
    display: none;
  }

  .corpsspace-direction-layout,
  .corpsspace-partner-panel {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}


/* =========================================================
   CORPSSPACE MOBILE
========================================================= */

@media (max-width: 768px) {

  .corpsspace-hero {
    min-height: auto;
  }

  .corpsspace-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .corpsspace-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .corpsspace-primary-btn,
  .corpsspace-secondary-btn {
    width: 100%;
  }

  .corpsspace-hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .corpsspace-meta-divider {
    display: none;
  }

  .corpsspace-command-body {
    padding: 28px 20px;

    grid-template-columns: 1fr;

    gap: 28px;
  }

  .command-data-path {
    transform: rotate(90deg);
  }

  .command-core {
    margin: 20px auto 35px;
  }

  .corpsspace-command-topbar {
    align-items: flex-start;
    flex-direction: column;

    padding-top: 16px;
    padding-bottom: 16px;
  }

  .corpsspace-command-footer {
    flex-wrap: wrap;
  }

  .corpsspace-value-grid {
    grid-template-columns: 1fr;
  }

  .corpsspace-value-grid > div {
    min-height: auto;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .corpsspace-problem-container {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .corpsspace-problem-body {
    padding-top: 0;
  }

  .corpsspace-fragmentation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corpsspace-focus-grid {
    grid-template-columns: 1fr;
  }

  .corpsspace-focus-card {
    padding: 30px 24px;
  }

  .focus-feature-list {
    grid-template-columns: 1fr;
  }

  .corpsspace-operation-flow {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .module-row {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .module-line {
    width: 1px;
    height: 20px;

    margin: auto;
  }

  .module-row-final {
    max-width: 100%;
  }

  .corpsspace-partner-panel {
    padding: 42px 24px;
  }

  .corpsspace-partner-benefits {
    grid-template-columns: 1fr;
  }

}


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

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

  .command-data-path span,
  .command-core-ring,
  .operation-flow-line span::after {
    animation: none;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .product-hero-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .product-hero-content {
    max-width: 780px;
  }

  .product-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-value-grid > div:nth-child(2) {
    border-right: none;
  }

  .product-value-grid > div:nth-child(1),
  .product-value-grid > div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .product-story-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .product-story-content {
    padding-top: 0;
  }



  .product-feature-container,
  .product-feature-reverse .product-feature-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .product-feature-content {
    max-width: 760px;
  }

}


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

@media (max-width: 768px) {

  .product-hero {
    min-height: auto;
  }

  .product-hero-container {
    gap: 45px;
  }

  .product-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);

    letter-spacing: -1px;
  }

  .product-hero-description {
    font-size: 1.05rem;
  }

  .product-hero-actions {
    align-items: flex-start;

    flex-direction: column;
  }

  .product-screenshot-placeholder {
    min-height: 300px;

    padding: 28px;
  }

    .product-image-zoom-btn {
    top: 10px;
    right: 10px;

    width: 42px;
    height: 42px;
  }

  .product-image-modal {
    padding: 65px 14px 20px;
  }

  .product-image-modal img {
    max-width: 100%;
    max-height: 82vh;

    border-radius: 10px;
  }

  .product-image-modal-close {
    top: 12px;
    right: 14px;

    width: 42px;
    height: 42px;
  }

  .product-value-grid {
    grid-template-columns: 1fr;
  }

  .product-value-grid > div {
    min-height: auto;

    padding: 28px 24px;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .product-value-grid > div:last-child {
    border-bottom: none;
  }

  .product-story-heading h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }



  .product-feature-content h2 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .product-feature-visual .product-screenshot-placeholder {
    min-height: 300px;
  }

  .product-cta-panel {
    padding: 48px 24px;
  }

  .product-cta-panel h2 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .product-cta-actions {
    flex-direction: column;

    gap: 20px;
  }

}


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

@media (max-width: 480px) {

  .product-hero h1 {
    font-size: 2.75rem;
  }

  .product-secondary-btn,
  .product-hero-actions .primary-btn {
    width: 100%;

    text-align: center;
  }

  .product-screenshot-placeholder {
    min-height: 250px;
  }

}


.ecosystem-icon svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}