:root{
  --bg: #fbfbfd;
  --ink: #1f1f25;
  --muted: #5b5b6a;

  --purple: #6f4aa7;
  --purple-2: #8a63c8;

  --green: #4fb04a;
  --green-2: #7ad65c;

  --card: #ffffff;
  --line: #e8e8ef;

  --shadow: 0 10px 30px rgba(22, 22, 33, 0.08);
  --shadow-soft: 0 8px 18px rgba(22, 22, 33, 0.06);

  --radius: 18px;
  --radius-sm: 14px;

  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.wp-element-button {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.wp-site-blocks {
  padding: 0;
  background: var(--bg);
}

.wp-site-blocks > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Force centered content containers */
.topbar,
.hero,
.section,
.cta-section,
.site-footer-inner {
  width: min(100%, var(--max));
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px;
  padding-right: 24px;
}

/* Header template part */
.site-header-shell {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(120, 120, 145, 0.12);
}

/* Hero background */
.hero-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(120, 120, 145, 0.10);
  background:
    radial-gradient(1200px 420px at 20% 0%, rgba(111, 74, 167, 0.10), transparent 60%),
    radial-gradient(900px 420px at 80% 10%, rgba(79, 176, 74, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: -80px -120px auto -120px;
  height: 520px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='520' viewBox='0 0 1400 520'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%236f4aa7' stop-opacity='.18'/%3E%3Cstop offset='.6' stop-color='%234fb04a' stop-opacity='.16'/%3E%3Cstop offset='1' stop-color='%234fb04a' stop-opacity='.10'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke='url(%23g)' stroke-width='2'%3E%3Cpath d='M-40 310 C 220 240, 360 410, 640 330 C 860 270, 1040 160, 1440 250'/%3E%3Cpath d='M-40 360 C 260 260, 420 470, 700 360 C 930 270, 1080 210, 1440 320'/%3E%3Cpath d='M-40 410 C 280 330, 520 520, 780 400 C 980 310, 1120 280, 1440 380'/%3E%3Cpath d='M-40 260 C 200 190, 320 330, 600 270 C 860 190, 980 120, 1440 190'/%3E%3C/g%3E%3C/svg%3E")
    center/cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
  filter: blur(0.1px);
  z-index: 0;
}

.hero-wrap > * {
  position: relative;
  z-index: 1;
}

/* Top nav inside hero */
.topbar {
  position: relative;
  z-index: 3;
  padding-top: 18px;
  padding-bottom: 18px;
  animation: fadeSlideDown 0.8s ease both;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 28px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  min-width: 0;
}

.brand .wp-block-image,
.brand figure {
  margin: 0;
}

.sojenai-logo {
  margin: 0;
  line-height: 0;
}

.sojenai-logo img {
  height: 132px;
  width: auto;
  max-width: none;
  display: block;
  animation: logoNavIn 1s cubic-bezier(.22,.9,.32,1) both;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #3a3a45;
  font-size: 14px;
  min-width: 0;
}

.navlinks .wp-block-navigation-item__content {
  opacity: 0.92;
  position: relative;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navlinks .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  border-radius: 999px;
}

.navlinks .wp-block-navigation-item__content:hover {
  opacity: 1;
  color: var(--purple);
  transform: translateY(-1px);
}

.navlinks .wp-block-navigation-item__content:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Buttons */
.btn,
.wp-block-button.btn .wp-block-button__link {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active,
.wp-block-button.btn .wp-block-button__link:active {
  transform: translateY(1px);
}

.btn-solid .wp-block-button__link,
a.btn-solid,
.btn.btn-solid {
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(79, 176, 74, 0.18);
  border-color: transparent;
}

.btn-solid .wp-block-button__link:hover,
a.btn-solid:hover,
.btn.btn-solid:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 14px 28px rgba(79, 176, 74, 0.28);
  color: #ffffff;
}

.btn-outline .wp-block-button__link,
a.btn-outline,
.btn.btn-outline {
  background: #fff;
  border-color: rgba(79, 176, 74, 0.55);
  color: #2d6f33;
  box-shadow: var(--shadow-soft);
}

.btn-outline .wp-block-button__link:hover,
a.btn-outline:hover,
.btn.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 176, 74, 0.8);
  color: #2d6f33;
  box-shadow: 0 12px 24px rgba(22, 22, 33, 0.10);
}

/* Hero */
.hero {
  position: relative;
  padding-top: 64px;
  padding-bottom: 48px;
  text-align: center;
  min-height: 420px;
}

/* Large floating brand overlay */
.hero-brand-overlay {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 !important;
  z-index: 1;
  pointer-events: none;
  opacity: 0.14;
  width: min(760px, 78vw);
  animation:
    heroBrandSplash 1.4s cubic-bezier(.2,.9,.28,1) both,
    heroBrandFloat 8s ease-in-out 1.6s infinite;
}

.hero-brand-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1,
.hero .lead,
.hero .hero-actions,
.hero .hero-subline {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 88px auto 10px;
  font-size: clamp(32px, 3.6vw, 54px);
  letter-spacing: 0.2px;
  color: #4b3a63;
  font-weight: 800;
  line-height: 1.06;
  max-width: 980px;
  animation: fadeRise 0.9s ease 0.25s both;
}

.hero .lead {
  animation: fadeRise 0.9s ease 0.45s both;
}

.hero p {
  margin: 0 auto 22px;
  max-width: 860px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.hero .lead strong {
  color: #3f3f4c;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  animation: fadeRise 0.9s ease 0.65s both;
}

.hero-actions .wp-block-button {
  margin: 0;
}

.hero-subline {
  margin-top: 16px;
  color: #6a6a78;
  font-size: 14px;
  animation: fadeRise 0.9s ease 0.85s both;
}

/* Sections */
.section {
  width: 100%;
  padding-top: 42px;
  padding-bottom: 54px;
  background: linear-gradient(180deg, #f7f7fb 0%, #ffffff 45%, #ffffff 100%);
}

.section h2 {
  margin: 0 auto 10px;
  text-align: center;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: 0.1px;
  color: #2b2b35;
  max-width: 900px;
}

.section h2 .accent {
  color: var(--purple);
}

.section p.desc {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.section p.desc strong {
  color: #3f3f4c;
}

/* Center grids explicitly */
.compare,
.cta-row {
  width: 100%;
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-block-columns.compare,
.wp-block-columns.cta-row {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Comparison section */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 14px;
}

.compare > .wp-block-column {
  margin: 0 !important;
}

.card {
  background: var(--card);
  border: 1px solid rgba(120, 120, 145, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  height: 100%;
  will-change: transform, opacity;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(22, 22, 33, 0.12);
}

.card .card-head {
  padding: 16px 18px;
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  color: #2e2e39;
  background: linear-gradient(180deg, #ffffff, #fbfbff);
  border-bottom: 1px solid rgba(120, 120, 145, 0.12);
}

.card.left .card-head {
  color: #4a4a57;
}

.card.right .card-head {
  color: #ffffff;
  background: linear-gradient(90deg, var(--green), #41a56a);
  border-bottom: none;
}

.card-body {
  padding: 18px;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 6px 0 18px;
}

.flow p {
  margin: 0;
}

.node {
  width: min(320px, 92%);
  border-radius: 10px;
  border: 1px solid rgba(120, 120, 145, 0.18);
  background: #ffffff;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  color: #3a3a45;
  box-shadow: 0 6px 14px rgba(22, 22, 33, 0.05);
}

.node.subtle {
  background: #f6f6fb;
  font-weight: 700;
  color: #4b4b5a;
}

.node.green {
  background: linear-gradient(180deg, #62c85d, #3da54f);
  color: #ffffff;
  border-color: rgba(79, 176, 74, 0.2);
}

.node.purple {
  background: linear-gradient(180deg, #9b7fe0, #6f4aa7);
  color: #ffffff;
  border-color: rgba(111, 74, 167, 0.2);
}

.arrow {
  width: 2px;
  height: 18px;
  background: rgba(120, 120, 145, 0.35);
  position: relative;
  margin: -2px 0;
}

.arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgba(120, 120, 145, 0.45);
}

.bullets {
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 18px;
  color: #4d4d5c;
  line-height: 1.6;
  font-size: 14px;
}

.bullets li {
  margin: 6px 0;
}

.layer-tag {
  position: absolute;
  right: -58px;
  top: 132px;
  transform: rotate(90deg);
  background: rgba(79, 176, 74, 0.10);
  border: 1px solid rgba(79, 176, 74, 0.25);
  color: #2d6f33;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2px;
}

/* Reveal states */
.reveal-card {
  opacity: 0;
}

.reveal-left {
  transform: translateX(-160px) rotate(-7deg);
}

.reveal-right {
  transform: translateX(160px) rotate(7deg);
}

.reveal-up {
  transform: translateY(70px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0deg);
  transition:
    transform 1.05s cubic-bezier(.2,.9,.28,1),
    opacity 0.85s ease;
}

/* CTA row */
.cta-section {
  width: 100%;
  padding-top: 0;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.cta-row > .wp-block-column {
  margin: 0 !important;
}

.mini {
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(120, 120, 145, 0.14);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  will-change: transform, opacity;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(22, 22, 33, 0.10);
}

.mini .left {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mini h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1px;
  line-height: 1.25;
}

.mini p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 12px;
  background: rgba(79, 176, 74, 0.12);
  border: 1px solid rgba(79, 176, 74, 0.25);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon.purple {
  background: rgba(111, 74, 167, 0.12);
  border-color: rgba(111, 74, 167, 0.24);
}

.chev {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #6a6a78;
  border: 1px solid rgba(120, 120, 145, 0.18);
  background: #fff;
  flex: 0 0 auto;
}

/* Footer */
.site-footer-shell,
footer.wp-block-group,
.footer-shell {
  margin-top: 42px;
  background:
    radial-gradient(900px 240px at 40% 0%, rgba(79, 176, 74, 0.22), transparent 60%),
    radial-gradient(900px 240px at 70% 20%, rgba(111, 74, 167, 0.20), transparent 62%),
    linear-gradient(180deg, #1f3b2a 0%, #0f2419 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-shell .wp-block-group,
.footer-shell .wp-block-group {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.foot-col h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.95);
}

.foot-col a,
.foot-col .wp-block-navigation-item__content,
.foot-col p,
.foot-col li {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
}

.foot-col a:hover,
.foot-col .wp-block-navigation-item__content:hover {
  color: #fff;
}

.foot-col .wp-block-navigation {
  color: inherit;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.foot-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 18px;
  padding-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  align-items: center;
  flex-wrap: wrap;
}

.foot-meta a {
  color: rgba(255, 255, 255, 0.75);
}

.foot-meta a:hover {
  color: #fff;
}

/* Utility alignment */
.alignfull {
  margin-top: 0;
  margin-bottom: 0;
}

.wp-block-group.alignfull,
.wp-block-cover.alignfull {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Motion keyframes */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoNavIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroBrandSplash {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.55) rotate(-18deg);
    filter: blur(8px);
  }
  55% {
    opacity: 0.18;
    transform: translateX(-50%) scale(1.05) rotate(3deg);
    filter: blur(0);
  }
  100% {
    opacity: 0.14;
    transform: translateX(-50%) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes heroBrandFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .sojenai-logo img {
    height: 116px;
  }

  .hero-brand-overlay {
    width: min(680px, 80vw);
  }
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    column-gap: 18px;
  }

  .sojenai-logo img {
    height: 104px;
  }

  .hero-brand-overlay {
    width: min(620px, 82vw);
  }
}

@media (max-width: 980px) {
  .navlinks {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sojenai-logo img {
    height: 92px;
  }

  .hero-brand-overlay {
    width: min(540px, 84vw);
    opacity: 0.12;
  }

  .hero h1 {
    margin-top: 72px;
  }
}

@media (max-width: 820px) {
  .compare {
    grid-template-columns: 1fr;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .layer-tag {
    display: none;
  }

  .card {
    min-height: 0;
  }

  .reveal-left,
  .reveal-right,
  .reveal-up {
    transform: translateY(60px);
  }

  .reveal-card.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 782px) {
  .topbar,
  .hero,
  .section,
  .cta-section,
  .site-footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
    min-height: 0;
  }

  .hero h1 {
    font-size: 34px;
    margin-top: 58px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
  }

  .mini {
    padding: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sojenai-logo img {
    height: 74px;
  }

  .hero-brand-overlay {
    width: min(420px, 88vw);
    top: 18px;
    opacity: 0.10;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------
   SoJen Problem Section – Brand Colors
------------------------------------- */

.problem-card{
    background:#ffffff;
    border-radius:22px;
    padding:22px;
    border:1px solid #e5e5e5;
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

/* purple headline */
.problem-head{
    background:#5A2CA0;
    color:#ffffff;
    border-radius:16px;
    padding:18px;
    font-weight:700;
}

/* green cost indicator */
.problem-cost{
    background:#63B32E;
    color:#ffffff;
    border-radius:16px;
    padding:16px;
    margin-top:12px;
    font-weight:600;
}

/* teal explanatory body */
.problem-body{
    background:#0FB7A0;
    color:#ffffff;
    border-radius:16px;
    padding:18px;
    margin-top:12px;
    line-height:1.8;
}

/* remove extra paragraph margins */
.problem-head p,
.problem-cost p,
.problem-body p{
    margin:0;
}


/* -------------------------------------
   Problem Section Motion
------------------------------------- */

.problem-card{
    opacity:0;
    transform:translateY(40px);
    transition:opacity 0.8s ease, transform 0.8s ease;
}

.problem-card.is-visible{
    opacity:1;
    transform:translateY(0);
}

.problem-card:nth-child(1){
    transition-delay:0.1s;
}

.problem-card:nth-child(2){
    transition-delay:0.3s;
}

.problem-card:nth-child(3){
    transition-delay:0.5s;
}

/* -------------------------------------
   Enterprise Hero
------------------------------------- */

.enterprise-hero{
    background:
        radial-gradient(circle at top center, rgba(99,179,46,0.10) 0%, rgba(99,179,46,0) 36%),
        radial-gradient(circle at 20% 20%, rgba(90,44,160,0.10) 0%, rgba(90,44,160,0) 30%),
        linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.enterprise-hero-brand{
    margin-bottom: 6px;
}

.enterprise-brand-mark img{
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
}

.enterprise-hero-title em{
    font-style: italic;
    color: #5A2CA0;
}

.enterprise-hero-desc{
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------
   Enterprise Hero
------------------------------------- */

.enterprise-hero{
    background:
        radial-gradient(circle at top center, rgba(99,179,46,0.10) 0%, rgba(99,179,46,0) 36%),
        radial-gradient(circle at 20% 20%, rgba(90,44,160,0.10) 0%, rgba(90,44,160,0) 30%),
        linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.enterprise-hero-banner{
    border: 1px solid rgba(90,44,160,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.enterprise-hero-brandbar{
    gap: 12px;
}

.enterprise-hero-nav{
    gap: 22px;
}

.enterprise-hero-navlink{
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.enterprise-hero-navlink a{
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.enterprise-hero-navlink a:hover{
    color: #5A2CA0;
    opacity: 1;
}

.enterprise-hero-title em{
    font-style: italic;
    color: #5A2CA0;
}

.enterprise-hero-desc{
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 781px){
    .enterprise-hero-banner{
        padding: 14px 16px;
    }

    .enterprise-hero-nav{
        justify-content: center;
        gap: 14px;
        margin-top: 10px;
    }

    .enterprise-hero-navlink{
        font-size: 14px;
    }
}

.enterprise-brand-mark img{
    width:260px;
    max-width:none;
    height:auto;
}
/* Hide automatic page title on enterprise page */
.page-id-381 .wp-block-post-title{
    display:none;
}
/* -------------------------------------
   Enterprise Hero Watermark
------------------------------------- */

.enterprise-hero{
    position:relative;
    overflow:hidden;
}

.enterprise-hero::before{
    content:"";
    position:absolute;

    /* centered behind hero text */
    left:50%;
    top:55%;
    transform:translate(-50%, -50%);

    width:720px;
    height:720px;

    background-image:url("https://sojen.ai/wp-content/uploads/2026/01/SoJenAI-Brand-3.webp");
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    opacity:0.035;
    pointer-events:none;
    z-index:0;
}

/* ensure hero content sits above watermark */
.enterprise-hero .wp-block-group{
    position:relative;
    z-index:1;
}

@media (max-width: 900px){
    .enterprise-hero::before{
        width:420px;
        height:420px;
        top:60%;
        opacity:0.04;
    }
}

/* -------------------------------------
   Enterprise Hero Brand Glow
------------------------------------- */

.enterprise-hero-title{
    position:relative;
    z-index:2;
}

.enterprise-hero-title::before{
    content:"";
    position:absolute;

    left:50%;
    top:55%;
    transform:translate(-50%, -50%);

    width:520px;
    height:240px;

    background:
        radial-gradient(circle at 30% 40%, rgba(99,179,46,0.35) 0%, rgba(99,179,46,0.18) 25%, rgba(99,179,46,0) 60%),
        radial-gradient(circle at 70% 60%, rgba(90,44,160,0.30) 0%, rgba(90,44,160,0.15) 25%, rgba(90,44,160,0) 60%);

    filter:blur(42px);
    opacity:0.55;

    z-index:-1;
    pointer-events:none;
}

@media (max-width: 900px){
    .enterprise-hero-title::before{
        width:360px;
        height:180px;
        filter:blur(32px);
        opacity:0.45;
    }
}
/* -------------------------------------
   Enterprise Hero Nav – Match Home Hero
------------------------------------- */

.enterprise-hero-nav{
    gap: 24px;
}

.enterprise-hero-navlink{
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;
}

.enterprise-hero-navlink a{
    position: relative;
    display: inline-block;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.enterprise-hero-navlink a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #63B32E 0%, #5A2CA0 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
    border-radius: 999px;
}

.enterprise-hero-navlink a:hover{
    color: #5A2CA0;
    transform: translateY(-1px);
}

.enterprise-hero-navlink a:hover::after{
    transform: scaleX(1);
}

.enterprise-hero-navlink.current-menu-item a,
.enterprise-hero-navlink a[aria-current="page"]{
    color: #5A2CA0;
}

.enterprise-hero-navlink.current-menu-item a::after,
.enterprise-hero-navlink a[aria-current="page"]::after{
    transform: scaleX(1);
}


/* About / podcast / contact / blog helpers */

.sojen-two-column-story,
.sojen-featured-post {
	gap: 40px;
}

.sojen-card-stack {
	display: grid;
	gap: 18px;
}

.sojen-card-grid--4 {
	gap: 22px;
}

.sojen-card-grid--3 {
	gap: 24px;
}

.sojen-contact-form-shell {
	max-width: 900px;
	padding: 36px;
	border-radius: 24px;
	background: rgba(255,255,255,0.94);
	box-shadow: 0 18px 48px rgba(31, 41, 71, 0.08);
	border: 1px solid rgba(107, 122, 163, 0.12);
}

.sojen-post-label {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.68;
}

.sojen-post-card a,
.sojen-featured-post-card a {
	font-weight: 700;
	text-decoration: none;
}

.sojen-platform-links {
	flex-wrap: wrap;
}

@media (max-width: 781px) {
	.sojen-contact-form-shell {
		padding: 24px;
	}
}


/* -------------------------------------
   Closing CTA – SoJen Brand Consistency
------------------------------------- */

.closing-cta-sojen{
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 25%, rgba(99,179,46,0.10) 0%, rgba(99,179,46,0) 28%),
        radial-gradient(circle at 80% 30%, rgba(90,44,160,0.10) 0%, rgba(90,44,160,0) 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    border-top: 1px solid rgba(99,179,46,0.10);
    border-bottom: 1px solid rgba(90,44,160,0.08);
}

.closing-cta-sojen::before{
    content:"";
    position:absolute;
    inset:auto -80px -120px auto;
    width:320px;
    height:320px;
    background: radial-gradient(circle, rgba(90,44,160,0.10) 0%, rgba(90,44,160,0) 70%);
    pointer-events:none;
}

.closing-cta-sojen::after{
    content:"";
    position:absolute;
    inset:-120px auto auto -100px;
    width:320px;
    height:320px;
    background: radial-gradient(circle, rgba(99,179,46,0.10) 0%, rgba(99,179,46,0) 70%);
    pointer-events:none;
}

.closing-cta-sojen > .wp-block-group,
.closing-cta-sojen .wp-block-buttons,
.closing-cta-sojen h2,
.closing-cta-sojen p{
    position: relative;
    z-index: 1;
}

/* ---------------------------------
   Header
--------------------------------- */

.sojen-site-header-wrap {
	position: relative;
	z-index: 100;
}

.sojen-top-banner {
	background: linear-gradient(90deg, rgba(92, 79, 255, 0.08), rgba(0, 189, 214, 0.08));
	border-bottom: 1px solid rgba(100, 115, 160, 0.12);
}

.sojen-top-banner__inner {
	padding: 10px 0;
	gap: 16px;
}

.sojen-top-banner__text {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	opacity: 0.82;
}

.sojen-site-header {
	position: sticky;
	top: 0;
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.88);
	border-bottom: 1px solid rgba(100, 115, 160, 0.1);
}

.sojen-site-header__inner {
	min-height: 78px;
	gap: 24px;
}

.sojen-site-brand {
	gap: 14px;
}

.sojen-site-logo img {
	border-radius: 10px;
}

.sojen-site-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.1;
	text-decoration: none;
}

.sojen-site-title a {
	text-decoration: none;
}

.sojen-site-tagline {
	margin: 2px 0 0;
	font-size: 0.83rem;
	line-height: 1.4;
	opacity: 0.68;
}

.sojen-primary-nav {
	gap: 10px;
}

.sojen-primary-nav .wp-block-navigation-item__content {
	font-weight: 700;
	text-decoration: none;
	padding: 0.45rem 0.2rem;
}

.sojen-primary-nav .current-menu-item > .wp-block-navigation-item__content,
.sojen-primary-nav .current_page_item > .wp-block-navigation-item__content,
.sojen-primary-nav .current-menu-ancestor > .wp-block-navigation-item__content {
	opacity: 1;
}

/* ---------------------------------
   Footer
--------------------------------- */

.sojen-site-footer {
	padding: 72px 0 28px;
	background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
	border-top: 1px solid rgba(107, 122, 163, 0.12);
}

.sojen-site-footer__inner {
	gap: 32px;
}

.sojen-site-footer__grid {
	gap: 28px;
}

.sojen-footer-title {
	margin: 0 0 14px;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.2;
}

.sojen-footer-title a {
	text-decoration: none;
}

.sojen-footer-heading {
	margin: 0 0 14px;
	font-size: 0.96rem;
	font-weight: 800;
	line-height: 1.2;
}

.sojen-footer-copy {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.75;
	opacity: 0.82;
	max-width: 36rem;
}

.sojen-footer-copy--small {
	font-size: 0.94rem;
	line-height: 1.7;
}

.sojen-footer-links {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.sojen-footer-links li {
	margin: 0 0 10px;
	line-height: 1.6;
	opacity: 0.82;
}

.sojen-footer-links a {
	text-decoration: none;
}

.sojen-footer-divider {
	margin: 18px 0 0;
	opacity: 0.22;
}

.sojen-footer-bottom {
	padding-top: 18px;
	gap: 16px;
}

.sojen-footer-meta {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.68;
}

.sojen-footer-actions {
	margin-top: 16px;
}

/* ---------------------------------
   Responsive
--------------------------------- */

@media (max-width: 781px) {
	.sojen-top-banner__inner {
		padding: 12px 0;
	}

	.sojen-site-header__inner {
		min-height: 68px;
		align-items: center;
	}

	.sojen-site-brand__text {
		display: none;
	}

	.sojen-site-footer {
		padding: 56px 0 24px;
	}
}
/* =========================================================
   SOJEN.AI INTERIOR PAGE SYSTEM
   For About / Contact / Podcast / Blog
   Keep shared header hidden on pages with hero-embedded nav
========================================================= */

body.home .sojen-site-header-wrap,
body.page-enterprise .sojen-site-header-wrap,
body.sojen-page-enterprise .sojen-site-header-wrap {
	display: none;
}

/* Shared light page sections */
.sojen-section {
	padding: 88px 0;
	position: relative;
}

.sojen-page-hero {
	padding: 120px 0 96px;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 18%, rgba(92, 79, 255, 0.16), transparent 30%),
		radial-gradient(circle at 70% 28%, rgba(0, 189, 214, 0.10), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.sojen-page-hero__inner {
	position: relative;
	z-index: 2;
}

.sojen-eyebrow {
	margin: 0 0 12px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.7;
}

.sojen-page-hero__title,
.sojen-section-title {
	margin: 0 0 18px;
	line-height: 1.14;
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: #2b2b35;
}

.sojen-page-hero__copy,
.sojen-section-copy {
	max-width: 720px;
	font-size: 1.04rem;
	line-height: 1.75;
	opacity: 0.9;
	color: #5b5b6a;
}

.sojen-section-intro {
	margin-bottom: 32px;
}

.sojen-button-row {
	margin-top: 28px;
	gap: 16px;
}

/* Shared SoJen boxed cards */
.sojen-card,
.sojen-contact-form-shell,
.sojen-featured-post-card {
	padding: 28px;
	border-radius: 24px;
	background: rgba(255,255,255,0.96);
	border: 1px solid rgba(104, 120, 165, 0.12);
	box-shadow: 0 18px 48px rgba(31, 41, 71, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.5s ease;
}

.sojen-card:hover,
.sojen-contact-form-shell:hover,
.sojen-featured-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(31, 41, 71, 0.12);
}

.sojen-card-title {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 1.2rem;
	line-height: 1.3;
	color: #2b2b35;
}

.sojen-post-card p,
.sojen-featured-post-card p,
.sojen-card p {
	color: #5b5b6a;
	line-height: 1.7;
}

/* Branded soft section backgrounds */
.sojen-statement-band {
	background:
		linear-gradient(135deg, rgba(92, 79, 255, 0.08), rgba(0, 189, 214, 0.08)),
		#f7f9ff;
}

.sojen-closing-cta,
.sojen-featured-post-row,
.sojen-contact-form-section {
	background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

/* Make contact form wrapper look integrated */
.sojen-contact-form-shell {
	max-width: 920px;
	margin: 0 auto;
}

/* Motion */
.sojen-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.sojen-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.sojen-reveal-left {
	opacity: 0;
	transform: translateX(-28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.sojen-reveal-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.sojen-reveal-right {
	opacity: 0;
	transform: translateX(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.sojen-reveal-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 781px) {
	.sojen-section {
		padding: 72px 0;
	}

	.sojen-page-hero {
		padding: 92px 0 78px;
	}

	.sojen-card,
	.sojen-contact-form-shell,
	.sojen-featured-post-card {
		padding: 22px;
	}
}
/* Force-hide shared header on pages that already render their own hero header/nav */
body.home .sojen-site-header-wrap,
body.page-enterprise .sojen-site-header-wrap,
body.page-id-381 .sojen-site-header-wrap,
body.sojen-page-enterprise .sojen-site-header-wrap {
	display: none !important;
}
/* =========================================================
   INTERIOR PAGE REFINEMENT
   Match About / Contact / Podcast / Blog more closely to
   the SoJen.AI light system used across the site
========================================================= */

.sojen-page-hero {
	padding: 88px 0 64px !important;
	min-height: 0 !important;
	background:
		radial-gradient(circle at 82% 16%, rgba(111, 74, 167, 0.10), transparent 28%),
		radial-gradient(circle at 18% 18%, rgba(79, 176, 74, 0.10), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%) !important;
	border-bottom: 1px solid rgba(120, 120, 145, 0.10);
}

.sojen-page-hero__inner {
	max-width: 1040px;
}

.sojen-page-hero__title {
	font-size: clamp(34px, 3.2vw, 52px) !important;
	line-height: 1.08 !important;
	letter-spacing: 0.15px;
	font-weight: 800;
	max-width: 980px;
	color: #4b3a63 !important;
	margin-bottom: 14px !important;
}

.sojen-page-hero__copy {
	font-size: 16px !important;
	line-height: 1.65 !important;
	max-width: 820px !important;
	color: var(--muted) !important;
}

.sojen-eyebrow {
	color: #6f4aa7 !important;
	opacity: 0.9 !important;
	font-size: 13px !important;
	letter-spacing: 1.4px !important;
	font-weight: 700 !important;
}

/* Section rhythm */
.sojen-section {
	padding: 52px 0 56px !important;
}

.sojen-section-title {
	font-size: clamp(26px, 2.2vw, 36px) !important;
	line-height: 1.18 !important;
	font-weight: 800 !important;
	color: #2b2b35 !important;
	max-width: 900px;
}

.sojen-section-copy,
.sojen-section p,
.sojen-post-card p,
.sojen-card p,
.sojen-featured-post-card p {
	font-size: 15px !important;
	line-height: 1.7 !important;
	color: var(--muted) !important;
}

/* Make the boxed sections read more clearly as SoJen light cards */
.sojen-card,
.sojen-contact-form-shell,
.sojen-featured-post-card {
	background: #ffffff !important;
	border: 1px solid rgba(120, 120, 145, 0.14) !important;
	box-shadow: 0 10px 30px rgba(22, 22, 33, 0.08) !important;
	border-radius: 18px !important;
}

.sojen-card:hover,
.sojen-contact-form-shell:hover,
.sojen-featured-post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 38px rgba(22, 22, 33, 0.12) !important;
}

/* Stronger SoJen light treatment for the major full-width bands */
.sojen-featured-post-row,
.sojen-contact-form-section,
.sojen-closing-cta {
	background: linear-gradient(180deg, #f7f7fb 0%, #ffffff 42%, #ffffff 100%) !important;
}

.sojen-statement-band {
	background:
		radial-gradient(circle at 20% 25%, rgba(99,179,46,0.08) 0%, rgba(99,179,46,0) 24%),
		radial-gradient(circle at 80% 30%, rgba(90,44,160,0.08) 0%, rgba(90,44,160,0) 26%),
		linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%) !important;
	border-top: 1px solid rgba(99,179,46,0.08);
	border-bottom: 1px solid rgba(90,44,160,0.06);
}

/* Buttons closer to the current site language */
.sojen-btn .wp-block-button__link {
	border-radius: 10px !important;
	padding: 10px 16px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

.sojen-btn-primary .wp-block-button__link {
	background: linear-gradient(180deg, var(--green-2), var(--green)) !important;
	box-shadow: 0 10px 20px rgba(79, 176, 74, 0.18) !important;
	color: #ffffff !important;
}

.sojen-btn-secondary .wp-block-button__link {
	background: #fff !important;
	border: 1px solid rgba(79, 176, 74, 0.55) !important;
	color: #2d6f33 !important;
	box-shadow: var(--shadow-soft) !important;
}

/* Better alignment for section intros on these new pages */
.sojen-section-intro {
	margin-bottom: 28px !important;
}

.sojen-featured-post,
.sojen-two-column-story {
	align-items: stretch;
}

@media (max-width: 782px) {
	.sojen-page-hero {
		padding: 64px 0 44px !important;
	}

	.sojen-page-hero__title {
		font-size: 34px !important;
	}

	.sojen-section {
		padding: 42px 0 44px !important;
	}
}
.sojen-primary-nav a[aria-current="page"] {
	color: var(--purple);
}

.sojen-primary-nav a[aria-current="page"]::after {
	transform: scaleX(1);
}
/* =========================================================
   SOJEN.AI SOCIAL NETWORK UNDER CONSTRUCTION
========================================================= */

body.page-social-network .sojen-site-header-wrap,
body.sojen-page-social-network .sojen-site-header-wrap {
	display: block;
}

.sojen-page-hero--social-construction {
	background:
		radial-gradient(circle at 82% 16%, rgba(111, 74, 167, 0.10), transparent 28%),
		radial-gradient(circle at 18% 18%, rgba(79, 176, 74, 0.10), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.sojen-social-construction-section {
	background: linear-gradient(180deg, #f7f7fb 0%, #ffffff 42%, #ffffff 100%);
}

.sojen-social-construction-grid {
	gap: 32px;
}

.sojen-social-construction-card {
	padding: 28px;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(120, 120, 145, 0.14);
	box-shadow: 0 10px 30px rgba(22, 22, 33, 0.08);
	position: relative;
	overflow: hidden;
}

.sojen-social-preview-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.sojen-social-construction-copy-card {
	min-height: 100%;
}

.sojen-construction-scene {
	position: relative;
	margin-top: 26px;
	height: 180px;
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.85), rgba(248,250,255,0.95));
	border: 1px solid rgba(120, 120, 145, 0.10);
	overflow: hidden;
}

.sojen-stripe {
	position: absolute;
	left: -10%;
	width: 120%;
	height: 18px;
	background: repeating-linear-gradient(
		45deg,
		#111111 0 18px,
		#f4c400 18px 36px
	);
	opacity: 0.9;
}

.sojen-stripe-1 { top: 24px; }
.sojen-stripe-2 { top: 76px; }
.sojen-stripe-3 { top: 128px; }

.sojen-piece {
	position: absolute;
	width: 26px;
	height: 26px;
	background: linear-gradient(180deg, #6f4aa7, #8a63c8);
	border-radius: 6px;
	box-shadow: 0 6px 14px rgba(22,22,33,0.12);
	animation: sojenPieceFloat 3s ease-in-out infinite;
}

.sojen-piece-1 { top: 42px; left: 38%; animation-delay: 0s; }
.sojen-piece-2 { top: 88px; left: 62%; animation-delay: 0.6s; }
.sojen-piece-3 { top: 138px; left: 46%; animation-delay: 1.1s; }

.sojen-bee {
	position: absolute;
	font-size: 30px;
	line-height: 1;
	filter: drop-shadow(0 6px 10px rgba(0,0,0,0.14));
	animation: sojenBeeFly 4.8s ease-in-out infinite;
}

.sojen-bee-1 { top: 10px; left: 12%; animation-delay: 0s; }
.sojen-bee-2 { top: 62px; left: 70%; animation-delay: 0.9s; }
.sojen-bee-3 { top: 116px; left: 20%; animation-delay: 1.8s; }

@keyframes sojenBeeFly {
	0%   { transform: translate(0, 0) rotate(-6deg); }
	20%  { transform: translate(30px, -10px) rotate(4deg); }
	40%  { transform: translate(60px, 8px) rotate(-3deg); }
	60%  { transform: translate(32px, 16px) rotate(5deg); }
	80%  { transform: translate(-10px, 6px) rotate(-4deg); }
	100% { transform: translate(0, 0) rotate(-6deg); }
}

@keyframes sojenPieceFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@media (max-width: 782px) {
	.sojen-social-construction-card {
		padding: 22px;
	}

	.sojen-construction-scene {
		height: 160px;
	}

	.sojen-bee {
		font-size: 26px;
	}
}

/* =========================================================
   FOUNDER VIDEO OVERRIDE
========================================================= */

.sojen-founder-columns {
	gap: 48px;
	align-items: center;
}

.sojen-founder-columns .wp-block-column:first-child {
	max-width: 520px;
}

.sojen-video-card {
	position: relative !important;
	display: block !important;
	max-width: 640px !important;
	width: 100% !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	border-radius: 16px !important;
	overflow: hidden !important;
	box-shadow: 0 18px 48px rgba(31,41,71,0.12) !important;
	background: #ffffff !important;
	min-height: 220px;
}

.sojen-video-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 24px 60px rgba(31,41,71,0.18) !important;
}

.sojen-video-card img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	filter: none !important;
}

.sojen-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 52px;
	background: rgba(0,0,0,0.7);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.sojen-video-triangle {
	width: 0;
	height: 0;
	border-left: 18px solid #ffffff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 4px;
}

@media (max-width: 781px) {
	.sojen-founder-columns {
		gap: 28px;
		flex-direction: column;
	}
}