

/* --------------------------------------------------
   HERO LAYOUT — SPLIT LEFT TEXT / RIGHT IMAGE
-------------------------------------------------- */

.jinn-hero {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .9)),
        url("/../images/img-hero.webp") center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Overlay but non-blocking */
.jinn-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .15) 20%,
            rgba(0, 0, 0, .8) 100%);
    pointer-events: none;
    z-index: 1;
}

.jinn-hero .hero-body {
    position: relative;
    z-index: 2;
}

/* TEXT */
.jinn-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.jinn-hero-subtitle {
    font-size: 1.25rem;
    color: #c9d0d0;
    margin-bottom: 28px;
    max-width: 760px;
}

/* IMAGE ON RIGHT */
.jinn-hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jinn-hero-image {
    max-width: 100%;
    width: 480px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .05);
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

/* Mobile: stack layout + reduce heading */
@media screen and (max-width: 1023px) {
    .jinn-hero-title {
        font-size: 2.2rem;
    }

    .jinn-hero-subtitle {
        font-size: 1.1rem;
    }

    .jinn-hero-image {
        margin-top: 22px;
        width: 360px;
    }
}

@media screen and (max-width: 600px) {
    .jinn-hero-image {
        width: 300px;
    }
}





/* --------------------------------------------------
   STUDIO SECTION
-------------------------------------------------- */
.studio-section {
    background: #000;
    /* slightly deeper than hero */
    padding: 120px 0;
}

.studio-section .column.is-12 {
    max-width: 1050px;
    margin: 0 auto;
}

.studio-title {
    color: white;
    position: relative;
    margin-bottom: 18px;
}

.studio-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #15c79a;
    margin-top: 10px;
    border-radius: 2px;
}

.studio-text {
    color: #bfc8c9;
    margin-bottom: 16px;
}

.studio-buttons .button {
    margin-right: 10px;
}

/* IMAGE */
.studio-image-wrapper {
    display: flex;
    justify-content: center;
}

.studio-image {
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
}





/* --------------------------------------------------
   CAPABILITIES SECTION
-------------------------------------------------- */
.capabilities-section {
    background: #000;
    /* padding-top: 150px; */
}

.capabilities-header {
    text-align: center;
    margin-bottom: 60px;
}

.capabilities-title {
    color: white;
    position: relative;
    display: inline-block;
}

.capabilities-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #15c79a;
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.capabilities-subtext {
    color: #a9b3b5;
    max-width: 680px;
    margin: 12px auto 0 auto;
}

/* Cards */
.capability-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 26px;
    height: 100%;
    transition: all .35s ease;
    text-align: center;
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21, 199, 154, .5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6);
}

.capability-icon {
    margin-bottom: 18px;
}

.capability-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.capability-text {
    color: #bfc8c9;
    font-size: .95rem;
}


/* --------------------------------------------------
   PROJECTS SECTION
-------------------------------------------------- */
.projects-section {
    background: #000;
    padding: 120px 0;
}

/* Header */
.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-title {
    color: white;
    display: inline-block;
    position: relative;
}

.projects-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 12px auto 0;
    background: #15c79a;
    border-radius: 2px;
}

.projects-subtext {
    color: #a9b3b5;
    max-width: 680px;
    margin: 12px auto 0;
}

/* Project Cards */
.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all .35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21, 199, 154, .5);
    box-shadow: 0 10px 50px rgba(0, 0, 0, .7);
}

/* Image */
.project-image img {
    width: 100%;
    display: block;
    height: 380px;
    object-fit: cover;
}

/* Content */
.project-content {
    padding: 22px;
}

.project-title {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.project-text {
    color: #bfc8c9;
    font-size: .95rem;
    margin-bottom: 16px;
}

.project-meta {
    color: #15c79a;
    font-size: .85rem;
    opacity: .9;
}

.project-link {
    display: inline-block;
    margin-top: 6px;
    color: #15c79a;
    font-size: .9rem;
    letter-spacing: .3px;
    transition: .25s ease;
    opacity: .9;
}

.project-link:hover {
    color: #3FE6B8;
    opacity: 1;
    transform: translateX(4px);
}

/* --------------------------------------------------
   PROJECTS — PITCH CTA
-------------------------------------------------- */
.pitch-cta {
    margin-top: 80px;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.pitch-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.pitch-text {
    color: #bfc8c9;
    max-width: 720px;
    margin: 0 auto 22px auto;
    font-size: .98rem;
}

/* CTA Button */
.pitch-button {
    background: transparent;
    border: 1px solid #15C79A;
    color: #A4F5D9;
    padding: 12px 22px;
    transition: .3s ease;
}

.pitch-button:hover {
    background: #15C79A;
    color: #000;
    border-color: #15C79A;
}

/* --------------------------------------------------
   TEAM SECTION
-------------------------------------------------- */
.team-section {
    background: #0a0a0a;
    padding: 120px 0;
}

/* Header */
.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-title {
    color: white;
    position: relative;
    display: inline-block;
}

.team-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 12px auto 0;
    background: #15C79A; /* replaced blue */
    border-radius: 2px;
}

.team-subtext {
    color: #9fb1ad;
    max-width: 700px;
    margin: 10px auto 0;
}

/* Cards */
.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21, 199, 154, .6); /* green glow */
    box-shadow: 0 10px 40px rgba(0, 0, 0, .7),
                0 0 14px rgba(21, 199, 154, .4);
}

/* Avatar */
.team-image img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .1);
    margin-bottom: 16px;
}

/* Text */
.team-name {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-role {
    color: #15C79A;  /* Soft mint */
    font-size: .9rem;
    margin-bottom: 10px;
}

.team-text {
    color: #c7d4d1;
    font-size: .95rem;
}

/* Social */
.team-social {
    margin-top: 14px;
}

.linkedin-link i {
  font-size: 22px;
  color: #15C79A;
  opacity: .9;
  transition: .25s ease;
}

.linkedin-link:hover i {
  color: #3BE3B8;
  opacity: 1;
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 0 6px rgba(21, 199, 154, .45));
}


/* --------------------------------------------------
   TEAM — CAREERS CTA
-------------------------------------------------- */
/* --------------------------------------------------
   CAREERS BANNER (Distinct from Pitch CTA)
-------------------------------------------------- */
.careers-banner {
    margin-top: 80px;
    padding: 40px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.careers-heading {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.careers-line {
    color: #bfc8c9;
    max-width: 700px;
    font-size: .98rem;
}

/* Right CTA */
.careers-apply {
    background: #15C79A;
    color: #000;
    border: none;
    padding: 12px 22px;
    transition: .25s ease;
    box-shadow: 0 0 0 rgba(21,199,154,0);
}

.careers-apply:hover {
    background: #0FB185;
    transform: translateX(3px);
    box-shadow: 0 0 12px rgba(21,199,154,.6);
}



@media screen and (max-width: 900px) {
    .careers-banner {
        flex-direction: column;
        text-align: center;
    }

    .careers-right {
        width: 100%;
    }

    .careers-apply {
        width: 100%;
    }
}



/* --------------------------------------------------
   PRESS / NEWS
-------------------------------------------------- */
.press-section {
    background: #000;
    padding: 120px 0;
}

/* Header */
.press-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Featured Article */
.press-feature {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

.press-feature-image img {
    width: 100%;
    display: block;
}

.press-feature-body {
    padding: 22px 24px 24px 24px;
}

.press-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8EF2D2;
    border: 2px solid rgba(21, 199, 154, 0.4);
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.press-feature-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.press-feature-text {
    color: #bfc8c9;
    font-size: 0.96rem;
    margin-bottom: 12px;
}

.press-feature-meta {
    color: #7f8a90;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Right List */
.press-list {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 24px;
    margin-left: 8px;
}

.press-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.press-item:last-child {
    border-bottom: none;
}

.press-item-meta {
    color: #7f8a90;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.press-item-title {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 4px;
    transition: .25s ease;
}

.press-item-title:hover {
    color: #15C79A;
}

/* Link CTA */
.press-item-link {
    color: #15C79A;
    font-size: 0.9rem;
    opacity: .9;
    transition: .25s ease;
}

.press-item-link:hover {
    color: #3BE3B8;
    opacity: 1;
    transform: translateX(3px);
    text-shadow: 0 0 10px rgba(21, 199, 154, 0.4);
}


/* OPTMIZATIONS MOBILE */
/* Reverse hero columns only on mobile */
@media screen and (max-width: 768px) {
    .hero-columns {
        display: flex;
        flex-direction: column-reverse;
    }
}