/* ============================================================
   D.E.E.P. Landing Page Styles
   css/deep-landing.css

   Covers all four widgets:
     • .deep-hero      (Darts_Widget_Deep_Hero)
     • .deep-path      (Darts_Widget_Deep_Path)
     • .deep-tracks    (Darts_Widget_Deep_Tracks)
     • .deep-why       (Darts_Widget_Deep_Why)

   Design: dark (#0A0A0A) base, #ed4137 accent, white type.
   Fonts:  League Spartan / Barlow Condensed (headings)
           Inter / Barlow (body)
   ============================================================ */

/* ── CSS variables (inherit site-wide, redefine for safety) ── */
.deep-hero,
.deep-path,
.deep-tracks,
.deep-why {
    --deep-orange:  #ed4137;
    --deep-dark:    #0A0A0A;
    --deep-dark2:   #111111;
    --deep-dark3:   #1a1a1a;
    --deep-border:  rgba(255,255,255,.08);
    --deep-text:    #ffffff;
    --deep-muted:   #c0c0c0;
    box-sizing: border-box;
    width: 100%;
}

/* ============================================================
   HERO SECTION  —  .deep-hero
   ============================================================ */

.deep-hero {
    background-color: var(--deep-dark);
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* 3-column grid: left | center | right */
.deep-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 370px;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}

/* ── LEFT ── */
.deep-hero__left {
    padding: 52px 0px 52px 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to right,
        #0A0A0A 60%,
        transparent 100%
    );
}

.deep-hero__program-label {
    font-weight: 600;
    color: var(--deep-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.deep-hero__headline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 20px;
    line-height: 1;
}

.deep-hero__headline-main {
    font-size: clamp(50px, 9vw, 130px);
    font-weight: 700;
    color: var(--deep-text);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    display: block;
}

.deep-hero__headline-sub {
    font-size: clamp(22px, 3.2vw, 37px);
    font-weight: 600;
    color: var(--deep-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    display: block;
}

.deep-hero__accent {
    font-size: clamp(32px, 4vw, 63px);
    color: var(--deep-orange) !important;
}

.deep-hero__tagline {
    font-size: 26px;
    color: #e8e8e8;
    line-height: 1.4;
    margin: 0 0 15px;
}

.deep-hero__description {
    font-size: 19px;
    color: #c0c0c0;
    line-height: 1.7;
    margin: 0 0 30px;
    max-width: 458px;
}

/* The D.A.R.T.S. reference inside description */
.deep-hero__description strong,
.deep-hero__description b {
    color: var(--deep-orange);
    font-weight: 600;
}

/* CTA button */
.deep-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 50px;
    background-color: var(--deep-orange);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
}

.deep-hero__cta:hover {
    background-color: #c82d26;
    transform: translateY(-2px);
    color: #fff !important;
}
/* a:active, a:hover {
    color: #fff !important;
} */

.deep-hero__cta svg {
    flex-shrink: 0;
    stroke: #fff;
    transition: transform 0.2s;
}

.deep-hero__cta:hover svg {
    transform: translateX(3px);
}

/* ── CENTER IMAGE ── */
.deep-hero__center {
    position: relative;
    overflow: hidden;
}

.deep-hero__image-wrap {
    position: absolute;
    inset: 0;
    /* Fade edges into dark background */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
}

.deep-hero__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0.88;
}

/* ── RIGHT PILLARS ── */
.deep-hero__right {
    background: #000;
    /* border-left: 1px solid var(--deep-border); */
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.deep-hero__pillars {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.deep-hero__pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 40px 16px 0px;
    border-bottom: 1px solid var(--deep-border);
}

.deep-hero__pillar:last-child {
    border-bottom: none;
}

.deep-hero__pillar-icon {
    flex-shrink: 0;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-orange);
    margin-top: 2px;
}
.deep-hero__pillar-icon svg {
    stroke: var(--deep-orange);
    width: 40px;
    height: 40px;
    stroke-width: 1.8;
}
.deep-hero__pillar-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deep-hero__pillar-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--deep-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.deep-hero__pillar-desc {
    font-size: 23px;
    color: var(--deep-muted);
    line-height: 1.5;
    display: block;
}

.deep-hero__footer-note {
    border-top: 1px solid var(--deep-border);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deep-hero__footer-note p {
    font-size: 20px;
    color: var(--deep-text);
    margin: 0;
    line-height: 1.5;
}

.deep-hero__footer-accent {
    color: var(--deep-orange) !important;
    font-weight: 600 !important;
}

/* ── Hero Responsive ── */
@media (max-width: 1200px) {
    .deep-hero__inner {
        grid-template-columns: 1fr 340px;
    }
    .deep-hero__center { display: none; }
    .deep-hero__left {
        background: var(--deep-dark);
    }
}

@media (max-width: 860px) {
    .deep-hero__inner {
        grid-template-columns: 1fr;
    }
    .deep-hero__right {
        border-left: none;
        border-top: 1px solid var(--deep-border);
    }
    .deep-hero__left {
        padding: 40px 24px 32px;
    }
}

@media (max-width: 480px) {
    .deep-hero__headline-main {
        font-size: 52px;
    }
    .deep-hero__headline-sub {
        font-size: 22px;
    }
    .deep-hero__left {
        padding: 32px 18px;
    }
    .deep-hero__right {
        padding: 28px 18px;
    }
}


/* ============================================================
   PATH SECTION  —  .deep-path
   ============================================================ */

.deep-path {
    background-color: #000000;
    padding: 56px 0 48px;
    border-top: 1px solid var(--deep-border);
    border-bottom: 1px solid var(--deep-border);
}

.deep-path__inner {
    max-width: 1365px;
    margin: 0 auto;
    padding: 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 28px 22px;
}
.deep-path__label, .deep-why__title, .deep-why__footer-line {
    font-size: 30px;
    font-weight: 400;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 0;
}
.deep-path__subtitle {
    font-size: 17px;
    color: var(--deep-muted);
    text-align: center;
    margin: 0 auto 44px;
    line-height: 1.6;
}
/* .deep-path__step-content */
/* Steps row */
.deep-path__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.deep-path__step {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 0 20px;
    /* max-width: 280px; */
}

.deep-path__step-header {
    display: flex;
    align-items: center;
    gap: 32px;
}

.deep-path__step-number {
    width: 48px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid #22ed82;
    color: #22ed82;
    font-size: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.deep-path__step-icon {
    color: #cccccc;
}
.deep-path__step-icon svg {
    stroke: #179f57;
    width: 44px;
    height: 44px;
}
.deep-path__step-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--deep-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
}

.deep-path__step-desc {
    color: var(--deep-muted);
    line-height: 1.6;
    margin: 0;
}

/* Arrow between steps */
.deep-path__arrow {
    flex-shrink: 0;
    color: #179f57;
    display: flex;
    align-items: center;
    padding-top: 10px;
    margin: 0 4px;
}

.deep-path__arrow svg {
    stroke: #179f57;
    width: 37px;
    height: 32px;
    opacity: 0.7;
}

.deep-path__footer {
    color: var(--deep-muted);
    text-align: center;
    margin: 30px 0 0;
    letter-spacing: 0.3px;
}

/* Path Responsive */
@media (max-width: 768px) {
    .deep-path__steps {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .deep-path__step {
        max-width: none;
        padding: 0;
    }
    .deep-path__arrow {
        align-self: flex-start;
        transform: rotate(90deg);
        margin: 0;
    }
}


/* ============================================================
   TRACK CARDS  —  .deep-tracks / .deep-track-card
   ============================================================ */

.deep-tracks {
    background-color: var(--deep-dark);
    padding: 48px 0 56px;
}

.deep-tracks__inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
}

.deep-tracks__heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--deep-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 36px;
}

/* Grid — adapts to track count */
.deep-tracks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* 1 track → full width centered */
.deep-tracks--cols-1 .deep-tracks__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
}

/* 2 tracks */
.deep-tracks--cols-2 .deep-tracks__grid {
    grid-template-columns: repeat(2, 1fr);
}

/* ── Card ── */
.deep-track-card {
    background-color: #0f0f0f;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.deep-track-card:hover {
    transform: translateY(-6px);
    border-color: var(--track-accent, var(--deep-orange));
}

/* Hero image area */
.deep-track-card__image {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.deep-track-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.deep-track-card:hover .deep-track-card__image img {
    transform: scale(1.05);
}

.deep-track-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.75) 100%
    );
}

.deep-track-card__image--placeholder {
    background: linear-gradient(
        135deg,
        #1a0500 0%,
        #0a0a0a 60%
    );
}

/* Card body */
.deep-track-card__body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.deep-track-card__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.deep-track-card__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--track-accent, var(--deep-orange));
    margin-top: 2px;
}

.deep-track-card__icon svg {
    stroke: currentColor;
    width: 32px;
    height: 32px;
}

.deep-track-card__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--deep-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0 0 4px;
}

.deep-track-card__subtitle {
    font-weight: 500;
    font-size: 16px;
    /* colour set inline from PHP */
    margin: 0;
    line-height: 1.3;
}

.deep-track-card__description {
    font-size: 16px;
    color: var(--deep-muted);
    line-height: 1.65;
    margin: 0 0 14px;
}

/* Features list */
.deep-track-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.deep-track-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.4;
}

.deep-track-card__check {
    flex-shrink: 0;
    /* stroke colour set inline from PHP */
    width: 16px;
    height: 16px;
}

/* CTA button — outline style, accent colour from track */
.deep-track-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid var(--track-accent, var(--deep-orange));
    /* color set inline from PHP */
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-top: auto;
    align-self: flex-start;
    width: 100%;
    justify-content: space-between;
}

.deep-track-card__cta:hover {
    background-color: var(--track-accent, var(--deep-orange));
    color: #fff !important;
    transform: translateY(-1px);
}

.deep-track-card__cta svg {
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.deep-track-card__cta:hover svg {
    transform: translateX(3px);
}

/* Tracks Responsive */
@media (max-width: 1024px) {
    .deep-tracks__grid,
    .deep-tracks--cols-3 .deep-tracks__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .deep-tracks__grid,
    .deep-tracks--cols-2 .deep-tracks__grid,
    .deep-tracks--cols-3 .deep-tracks__grid {
        grid-template-columns: 1fr;
    }
    .deep-tracks__inner {
        padding: 0 18px;
    }
}


/* ============================================================
   WHY SECTION  —  .deep-why
   ============================================================ */

.deep-why {
    background-color: var(--deep-dark);
    padding: 56px 0 17px;
    border-top: 1px solid var(--deep-border);
}

.deep-why__inner {
    max-width: 1420px;
    margin: auto;
    padding: 70px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
}
.deep-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
    align-items: start;
    padding-top: 15px;
}

/* Benefit item */
.deep-why__benefit {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 23px;
    padding: 20px 40px 0px;
}

.deep-why__benefit-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #179f57;
    /* subtle halo */
    /* background: rgba(237,65,55,.07);
    border-radius: 50%;
    border: 1px solid rgba(237,65,55,.2); */
}

.deep-why__benefit-icon svg {
    stroke: #179f57;
    width: 40px;
    height: 40px;
}
.deep-why__benefit:nth-child(2) {
    border-left: 1px solid rgba(255,255,255,0.15);
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 0 30px;
}

@media (max-width: 767px) {
    
.deep-why__benefit-icon svg {
    width: 20px;
    height: 20px;
}
    .deep-why__benefit:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 25px 0;
        margin: 25px 0;
    }
}
.deep-why__benefit-title {
    font-weight: 500;
    color: var(--deep-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.deep-why__benefit-desc {
    color: var(--deep-muted);
    line-height: 1.65;
    margin: 0;
}

/* Footer tagline */
.deep-why__footer {
    margin-top: 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.deep-why__footer-accent {
    font-size: clamp(14px, 2.2vw, 22px);
    color: var(--deep-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Why Responsive */
@media (max-width: 900px) {
    .deep-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 560px) {
.deep-hero__cta{
    padding: 10px 21px;
    font-size: 14px;
}
.deep-hero__tagline {font-size: 18px;}
.deep-hero__description {
    font-size: 16px;}
.deep-hero__pillar-title {
    font-size: 18px;}
.deep-hero__pillar-desc {
    font-size: 15px;}
.deep-hero__footer-note p {
    font-size: 15px;}
.deep-hero__pillar-icon svg {
    width: 30px;
    height: 30px;
}
.deep-hero__pillar {
    gap: 6px;
    padding: 14px 20px 14px 0px;
}
.deep-path__label, .deep-why__title, .deep-why__footer-line {
    font-size: 20px;
}
.deep-why__inner {
    padding: 30px;}
.deep-path__step-number {
    width: 40px;
    height: 40px;
    font-size: 23px;}
.deep-track-card__title {
	font-size: 15px;}
	.deep-track-card__featured {
		font-size: 14px;}
.deep-track-card__cta {
    padding: 6px 10px;
    font-size: 14px;}
.deep-path__step{
    flex-direction: column;
    gap: 6px;
}
.deep-why__benefit {
    flex-direction: column;
    gap: 13px;
    padding: 10px 20px 0px;
}

    .deep-why__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .deep-why__inner {
        padding: 0 18px;
    }
    .deep-why {
        padding: 44px 0 52px;
    }
}
