/* Hero Full Screen Styles */

.contact-link-global {
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 220;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.contact-link-global:hover,
.contact-link-global:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .contact-link-global {
        top: 12px;
        right: 12px;
        padding: 7px 12px;
        font-size: 14px;
    }
}

.fixed-logo-ignos {
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 100;
    width: 120px;
    height: auto;
    pointer-events: none;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .fixed-logo-ignos {
        top: 12px;
        left: 12px;
        width: 80px;
    }
}

.motivational-section {
    width: 100vw;
    min-height: 100vh;
    background: rgb(10,10,10);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.contact-section-short {
    width: 100vw;
    height: auto;
    min-height: 100vh;
    background: rgb(10,10,10);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 20px 24px;
    overflow: visible;
    box-sizing: border-box;
}

.contact-section-short-layout {
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: auto 1px auto 1px auto;
    align-items: stretch;
}

.contact-section-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px 40px;
    align-items: start;
    min-height: 0;
    padding: 0 0 24px;
}

.contact-panel-anchor {
    grid-column: 1;
    grid-row: 1;
}

.contact-panel-subtitle {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: stretch;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
}

.contact-panel-subtitle p {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
    max-width: 100%;
    text-wrap: balance;
}

.contact-section-short.is-visible .contact-panel-subtitle {
    animation: contactTitleReveal 0.9s ease-out 0.15s forwards;
}

.contact-info-cards {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 28px;
    box-sizing: border-box;
    min-height: 100%;
    border-radius: 0;
}

.contact-card-contact {
    color: rgb(10,10,10);
    background: #ffffff;
}

.contact-card-location {
    color: #ffffff;
    background: #000000;
    border: 1px solid #ffffff;
}

.contact-card-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 24px;
    color: inherit;
}

.contact-card-contact .contact-card-title {
    color: rgb(10,10,10);
}

.contact-card-location .contact-card-title {
    color: #ffffff;
}

.contact-card-email,
.contact-card-phone {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: inherit;
}

.contact-card-email a,
.contact-card-phone a {
    color: inherit;
    text-decoration: none;
}

.contact-card-email {
    margin-bottom: 8px;
}

.contact-card-address {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.4;
    color: inherit;
}

.contact-connect-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.contact-connect-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
    color: #ffffff;
    white-space: nowrap;
}

.contact-connect-sep {
    display: inline-block;
    width: 1px;
    height: 28px;
    background: #ffffff;
    flex-shrink: 0;
}

.contact-connect-link {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.contact-connect-link:hover,
.contact-connect-link:focus {
    opacity: 1;
    text-decoration: none;
}

.contact-connect-link:visited,
.contact-panel a:visited,
.contact-section-short a:visited {
    color: inherit;
    text-decoration: none;
}

.contact-panel-title {
    color: #fff;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(30px);
}

.contact-panel-label {
    color: rgb(10,10,10);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 20px;
}

.contact-panel p {
    margin: 0 0 10px;
    color: inherit;
    font-size: 16px;
    line-height: 1.25;
}

.contact-panel a {
    color: inherit;
    text-decoration: none;
}

.contact-panel-contact p {
    max-width: 100%;
}

.contact-link-email {
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    display: inline-block;
    max-width: 100%;
}

.contact-panel a:hover,
.contact-panel a:focus {
    text-decoration: underline;
}

.contact-section-short-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    color: #fff;
    padding: 0;
    min-height: 0;
    overflow: visible;
}

.contact-section-short-brand.hero-content {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 0 30px 0;
}

.contact-section-short-brand-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-section-short-brand .hero-text {
    font-size: 240px;
    text-align: left;
    align-self: flex-start;
    line-height: 0.8;
    display: block;
    position: relative;
    top: -10px;
    color: rgba(126, 126, 126, 0.42);
    clip-path: inset(15% 0 20% 0);
    opacity: 0;
    transform: translateY(40px);
}

.contact-brand-copyright {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
}

.contact-brand-footer-line {
    width: 100%;
    margin-top: -6px;
    padding-top: 0;
    border-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contact-brand-links {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.72);
}

.contact-brand-links a,
.contact-brand-links a:visited,
.contact-brand-links a:hover,
.contact-brand-links a:focus {
    color: inherit;
    text-decoration: none;
}

.contact-section-divider {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.contact-section-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: dividerSweep 1.4s ease-out 1;
    animation-fill-mode: forwards;
}

.contact-section-short.is-visible .contact-panel-title {
    animation: contactTitleReveal 0.9s ease-out forwards;
}

.contact-section-short.is-visible .contact-section-short-brand .hero-text {
    animation: contactHeroReveal 0.95s ease-out forwards;
}

.motivational-content {
    width: 100%;
    text-align: center;
}

.motivational-content h2, .motivational-section h2, section.motivational-section h2 {
    color: #fff !important;
    font-size: 9rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0 16px;
    line-height: 1.1;
    text-shadow: 2px 2px 24px rgba(0,0,0,0.35);
    opacity: 1;
    transform: none;
}

.motivational-section.is-visible .motivational-content h2,
.motivational-section.is-visible h2 {
    animation: messageFadeIn 1.1s ease-out forwards;
}

.motivational-section-split {
    --motivational-title-size: 9rem;
    --motivational-secondary-size: calc(var(--motivational-title-size) * 0.32);
    --motivational-inline-padding: 60px;
    --motivational-header-clearance: 110px;
    display: grid;
    grid-template-rows: 33% 67%;
    height: 100vh;
    min-height: 100vh;
    align-items: stretch;
    justify-items: stretch;
    padding: calc(36px + var(--motivational-header-clearance)) 0 36px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(28px);
}

.motivational-section.is-visible.motivational-section-split {
    animation: motivationalSectionFadeIn 0.95s ease-out forwards;
}

.motivational-section-split .motivational-row {
    min-height: 0;
    padding: 0 var(--motivational-inline-padding);
    box-sizing: border-box;
}

.motivational-section-split .motivational-row-top {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 24px;
}

.motivational-section-split .motivational-row-top .motivational-content {
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    min-height: 100%;
}

.motivational-section-split .motivational-row-top .motivational-content h2 {
    font-size: var(--motivational-title-size);
    padding: 0;
}

.motivational-section-split .motivational-row-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: center;
    justify-items: stretch;
    gap: 24px;
}

.motivational-row-spacer {
    min-height: 1px;
}

.motivational-secondary-text {
    color: #fff;
    text-align: left;
    grid-column: 2;
    justify-self: stretch;
}

.motivational-secondary-text p {
    margin: 0;
    font-size: var(--motivational-secondary-size);
    line-height: 1.55;
    max-width: none;
    width: 100%;
    text-wrap: balance;
}

.tech-section {
    --tech-inline-padding: 72px;
    --tech-gap: 28px;
    --tech-block-gap: 56px;
    background: #efefef;
    color: rgb(10, 10, 10);
    padding: 110px 0;
    border-top: 1px solid rgba(10, 10, 10, 0.12);
    border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}

.tech-shell {
    width: 100%;
    padding: 0 var(--tech-inline-padding);
    box-sizing: border-box;
    display: grid;
    gap: 0;
}

.tech-section [data-sal] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.tech-header,
.tech-module-main,
.tech-module-content,
.tech-module-index,
.tech-pill-list li {
    opacity: 0;
    transform: translateY(26px);
}

.tech-module-index {
    transform: translateX(-24px);
    filter: blur(8px);
}

.tech-section.is-visible .tech-header {
    animation: techRiseIn 520ms cubic-bezier(0.22, 0.61, 0.36, 1) 80ms both;
}

.tech-module.is-visible .tech-module-main {
    animation: techRiseIn 500ms cubic-bezier(0.22, 0.61, 0.36, 1) 80ms both;
}

.tech-module.is-visible .tech-module-index {
    animation: techIndexIn 560ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.tech-module.is-visible .tech-module-content {
    animation: techRiseIn 500ms cubic-bezier(0.22, 0.61, 0.36, 1) 150ms both;
}

.tech-module.is-visible .tech-pill-list li {
    animation: techPillIn 430ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
    animation-delay: calc(220ms + var(--tech-pill-delay, 0ms));
}

.tech-module-main,
.tech-module-content,
.tech-pill-list li {
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.tech-module:hover .tech-module-main,
.tech-module:hover .tech-module-content {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(10, 10, 10, 0.08);
}

.tech-module:hover .tech-pill-list li {
    transform: translateY(-2px);
}

@keyframes techRiseIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes techIndexIn {
    from {
        opacity: 0;
        transform: translateX(-24px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes techPillIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-header,
    .tech-module-main,
    .tech-module-content,
    .tech-module-index,
    .tech-pill-list li,
    .experience-intro,
    .experience-years,
    .experience-line-item,
    .experience-logo-item,
    .experience-cert-logo-item {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
        transition: none !important;
    }
}

.tech-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--tech-gap);
    align-items: start;
    min-height: 42vh;
}

.tech-marker {
    grid-column: 1 / span 3;
    align-self: start;
    font-size: clamp(2.8rem, 4vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: rgb(10, 10, 10);
    border-left: 4px solid rgb(10, 10, 10);
    padding-left: 14px;
}

.tech-title {
    grid-column: 1 / span 8;
    margin: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(3.4rem, 5.5vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.04em;
    max-width: min(54vw, 920px);
    text-wrap: balance;
    justify-self: start;
    text-align: left;
    color: rgb(10, 10, 10);
}

.tech-summary {
    grid-column: 9 / span 4;
    background: rgb(10, 10, 10);
    color: #fff;
    padding: 24px;
    display: flex;
    align-items: center;
    min-height: 220px;
}

.tech-summary p {
    margin: 0;
    font-size: 2.3rem;
    line-height: 1.42;
    color: #fff;
}

.tech-module {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--tech-gap);
    align-items: start;
    min-height: clamp(56vh, 64vh, 78vh);
    margin-top: var(--tech-block-gap);
}

.tech-header + .tech-module {
    margin-top: 24px;
}

.tech-module-main {
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.14);
    padding: 30px;
    display: grid;
    gap: 14px;
    color: rgb(10, 10, 10);
}

.tech-module-content {
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.14);
    padding: 30px;
    color: rgb(10, 10, 10);
    align-self: start;
}

.tech-module-index {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(8rem, 14vw, 19rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.08em;
    color: rgba(10, 10, 10, 0.14);
}

.tech-module-number {
    font-size: clamp(2.6rem, 3.6vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: inherit;
}

.tech-module-title {
    margin: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(2.4rem, 2.5vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    color: inherit;
}

.tech-copy {
    margin: 0 0 20px;
    font-size: 1.9rem;
    line-height: 1.55;
    color: rgb(10, 10, 10);
}

.tech-pill-list,
.tech-audience-list,
.tech-tag-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.tech-pill-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-pill-list li {
    border: 1px solid rgba(10, 10, 10, 0.18);
    padding: 13px 15px;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgb(10, 10, 10);
    background: #f3f3f3;
    display: grid;
    gap: 6px;
    align-content: start;
}

.tech-pill-title {
    display: block;
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.tech-pill-text {
    display: block;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.45;
}

.tech-tag-list {
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-tag-list li {
    border: 1px solid rgba(10, 10, 10, 0.12);
    padding: 10px 12px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgb(10, 10, 10);
    background: #fff;
}

.tech-audience-list {
    margin-top: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-audience-list li {
    border: 1px solid rgba(10, 10, 10, 0.18);
    padding: 11px 13px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(10, 10, 10);
    background: #f5f5f5;
}

.tech-module--01 .tech-module-main {
    grid-column: 1 / span 5;
}

.tech-module--01 .tech-module-index {
    grid-column: 6 / span 2;
}

.tech-module--01 .tech-module-content {
    grid-column: 8 / span 5;
}

.tech-module--02 .tech-module-main {
    grid-column: 1 / span 5;
    background: rgb(10, 10, 10);
    color: #fff;
}

.tech-module--02 .tech-module-index {
    grid-column: 6 / span 2;
}

.tech-module--02 .tech-module-content {
    grid-column: 8 / span 5;
}

.tech-module--02 .tech-copy {
    color: rgb(10, 10, 10);
}

.tech-module--03 .tech-module-main {
    grid-column: 1 / span 5;
}

.tech-module--03 .tech-module-index {
    grid-column: 6 / span 2;
}

.tech-module--03 .tech-module-content {
    grid-column: 8 / span 5;
}

.tech-module--03 .tech-tag-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-section {
    --experience-inline-padding: 72px;
    --experience-gap: 28px;
    background: rgb(10, 10, 10);
    color: #fff;
    padding: 96px 0 88px;
    border-top: 1px solid #fff;
    border-bottom: 0;
}

.experience-shell {
    width: 100%;
    padding: 0 var(--experience-inline-padding);
    box-sizing: border-box;
}

.experience-section [data-sal] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.experience-intro,
.experience-years,
.experience-line-item,
.experience-logo-item,
.experience-cert-logo-item {
    opacity: 0;
}

.experience-intro {
    transform: translateX(-24px);
}

.experience-years {
    transform: translateX(24px);
}

.experience-line-item {
    transform: translateY(20px);
}

.experience-logo-item,
.experience-cert-logo-item {
    transform: translateY(12px);
}

.experience-section.is-visible .experience-intro {
    animation: experienceIntroIn 560ms cubic-bezier(0.22, 0.61, 0.36, 1) 80ms both;
}

.experience-section.is-visible .experience-years {
    animation: experienceYearsIn 560ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms both;
}

.experience-line-item.is-visible {
    animation: experienceCardIn 520ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.experience-line-item:nth-child(1).is-visible {
    animation-delay: 60ms;
}

.experience-line-item:nth-child(2).is-visible {
    animation-delay: 120ms;
}

.experience-line-item:nth-child(3).is-visible {
    animation-delay: 180ms;
}

.experience-line-item.is-visible .experience-logo-item,
.experience-line-item.is-visible .experience-cert-logo-item {
    animation: experienceLogoIn 420ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
    animation-delay: calc(200ms + var(--experience-logo-delay, 0ms));
}

@keyframes experienceIntroIn {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes experienceYearsIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes experienceCardIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes experienceLogoIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-hero {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--experience-gap);
    align-items: start;
    align-content: start;
    margin-bottom: 36px;
}

.experience-years {
    grid-column: 8 / span 5;
    grid-row: 1;
    border: 1px solid #fff;
    background: #fff;
    color: rgb(10, 10, 10);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: start;
}

.experience-years-value {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(8rem, 13vw, 16rem);
    font-weight: 900;
    line-height: 0.84;
    letter-spacing: -0.07em;
    color: rgb(10, 10, 10);
}

.experience-years-label {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(2rem, 2.8vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgb(10, 10, 10);
}

.experience-intro {
    grid-column: 1 / span 7;
    grid-row: 1;
    border: 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 34px;
    display: grid;
    gap: 18px;
    align-content: start;
    align-self: start;
}

.experience-title {
    margin: 0;
    font-family: 'Arial Black', 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(4.6rem, 7.5vw, 9.2rem);
    line-height: 0.82;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    color: #fff;
}

.experience-lead {
    margin: 0;
    font-size: 2.3rem;
    line-height: 1.4;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
}

.experience-copy {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.experience-lines {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 18px;
}

.experience-line-item {
    padding: 12px 14px;
    border: 1px solid rgba(10, 10, 10, 0.18);
    background: #cfcfcf;
    color: rgb(10, 10, 10);
}

.experience-line-item:first-child {
    grid-column: 1 / -1;
    margin-bottom: 32px;
}

.experience-line-item:nth-child(2) {
    grid-column: 1 / span 2;
    background: rgb(10, 10, 10);
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.experience-line-item:nth-child(2) .experience-line-title,
.experience-line-item:nth-child(2) .experience-line-text {
    color: #fff;
}

.experience-line-item:nth-child(3) {
    grid-column: 3 / span 1;
    background: #fff;
    border: 1px solid #fff;
    color: rgb(10, 10, 10);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.experience-line-item:nth-child(3) .experience-line-title,
.experience-line-item:nth-child(3) .experience-line-text {
    color: rgb(10, 10, 10);
}

.experience-cert-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.experience-cert-logo-item {
    height: 104px;
    width: auto;
    max-width: 32%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.experience-line-title {
    margin: 0 0 8px;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(1.9rem, 2.1vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: rgb(10, 10, 10);
}

.experience-line-text {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.5;
    color: rgb(10, 10, 10);
}

.experience-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
    width: 100%;
}

.experience-logo-item {
    width: auto;
    flex: 0 1 auto;
    height: 84px;
    max-width: 14%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.experience-line-item:first-child .experience-line-title,
.experience-line-item:first-child .experience-line-text {
    display: none;
}

.experience-line-item:first-child {
    background: #fff;
}

.blog-area {
    --blog-inline-padding: 60px;
    position: relative;
    z-index: 9;
    background: rgb(10, 10, 10);
    padding: 76px 0 82px;
}

.blog-area-featured {
    overflow: hidden;
}

.blog-area [data-sal] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.blog-area .container {
    max-width: 100%;
}

.blog-area .blog-section-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 var(--blog-inline-padding);
    margin-bottom: 34px;
    opacity: 1;
    transform: none;
}

.blog-area .blog-section-title .subtitle {
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.72);
    padding: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
}

.blog-area .blog-section-title .title {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 900;
    color: #fff;
    margin: 0;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-shadow: 2px 2px 24px rgba(0, 0, 0, 0.35);
}

.blog-area .row.row--15 {
    padding: 0 var(--blog-inline-padding);
}

.blog-area .row.row--15 > [class*="col-"] {
    display: flex;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card {
    height: 100%;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .thumbnail {
    overflow: hidden;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .thumbnail a,
.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .thumbnail .card-image a {
    display: block;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .thumbnail img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.08);
    transition: filter 0.35s ease;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card:hover .inner .thumbnail img,
.blog-area .row.row--15 > [class*="col-"] .rainbow-card:focus-within .inner .thumbnail img {
    filter: grayscale(100%) contrast(1.14);
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .content {
    padding: 22px;
    background: #fff;
    flex: 1;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .content .title {
    margin: 10px 0 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .content .title a {
    color: rgb(10, 10, 10);
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .content .title a:hover,
.blog-area .row.row--15 > [class*="col-"] .rainbow-card .inner .content .title a:focus {
    color: rgb(10, 10, 10);
    opacity: 0.72;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-meta-list li,
.blog-area .row.row--15 > [class*="col-"] .rainbow-meta-list li a {
    color: #6b7280;
}

.blog-area .row.row--15 > [class*="col-"] .rainbow-meta-list li.separator {
    color: #9aa0aa;
}

@media (max-width: 768px) {
    .contact-section-short-layout {
        min-height: auto;
    }

    .contact-panel-anchor {
        width: 100%;
        max-width: 100%;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card-email,
    .contact-card-phone {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }

    .motivational-section-split {
        --motivational-title-size: clamp(4.8rem, 9.5vw, 6.2rem);
        --motivational-secondary-size: clamp(1.9rem, 3.9vw, 2.5rem);
        --motivational-inline-padding: 40px;
        --motivational-header-clearance: 82px;
        grid-template-rows: auto auto;
        height: auto;
        min-height: 100vh;
        padding: calc(28px + var(--motivational-header-clearance)) 0 28px;
    }

    .motivational-section-split .motivational-row-top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .motivational-section-split .motivational-row-top .motivational-content {
        text-align: center;
    }

    .motivational-section-split .motivational-row-top .motivational-content h2 {
        padding: 0;
    }

    .motivational-section-split .motivational-row-bottom {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .motivational-row-spacer {
        display: none;
    }

    .motivational-secondary-text {
        text-align: center;
    }

    .motivational-secondary-text p {
        margin: 0 auto;
    }

    .blog-area {
        --blog-inline-padding: 40px;
        padding: 68px 0 72px;
    }

    .tech-section {
        --tech-inline-padding: 44px;
        --tech-gap: 18px;
        --tech-block-gap: 40px;
        padding: 84px 0;
    }

    .experience-section {
        --experience-inline-padding: 44px;
        --experience-gap: 18px;
        padding: 80px 0 74px;
    }

    .experience-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        margin-bottom: 26px;
    }

    .experience-lines {
        grid-template-columns: 1fr;
    }

    .experience-years,
    .experience-intro {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .experience-years {
        grid-row: 1;
    }

    .experience-intro {
        grid-row: 2;
    }

    .experience-line-item:first-child,
    .experience-line-item:nth-child(2),
    .experience-line-item:nth-child(3) {
        grid-column: 1 / -1;
    }

    .experience-cert-logo-item {
        height: 80px;
    }

    .experience-years {
        min-height: 240px;
    }

    .experience-intro {
        padding: 24px;
        gap: 14px;
    }

    .experience-lead {
        font-size: 2rem;
    }

    .experience-copy,
    .experience-line-text {
        font-size: 1.65rem;
    }

    .tech-header {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 16px;
    }

    .tech-title,
    .tech-summary,
    .tech-module--01 .tech-module-index,
    .tech-module--01 .tech-module-main,
    .tech-module--01 .tech-module-content,
    .tech-module--02 .tech-module-index,
    .tech-module--02 .tech-module-main,
    .tech-module--02 .tech-module-content,
    .tech-module--03 .tech-module-index,
    .tech-module--03 .tech-module-main,
    .tech-module--03 .tech-module-content {
        grid-column: 1 / -1;
    }

    .tech-module {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-top: var(--tech-block-gap);
    }

    .tech-module-index {
        order: 1;
        justify-content: flex-start;
        font-size: clamp(5.2rem, 16vw, 8.8rem);
        line-height: 0.86;
        margin-bottom: 8px;
    }

    .tech-module-main {
        order: 2;
        padding: 24px;
    }

    .tech-module-content {
        order: 3;
        padding: 24px;
    }

    .tech-audience-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-tag-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-area .blog-section-title {
        margin-bottom: 28px;
    }

    .blog-area .blog-section-title .title {
        font-size: clamp(2.2rem, 7vw, 4.2rem);
    }

    .blog-area .row.row--15 {
        padding: 0 var(--blog-inline-padding);
    }

    .contact-section-short {
        padding: 82px 12px 16px;
    }

    .contact-panel-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    .contact-section-top-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-panel-anchor,
    .contact-panel-subtitle,
    .contact-info-cards {
        grid-column: 1 / -1;
    }

    .contact-panel-subtitle {
        grid-row: auto;
        align-self: start;
    }

    .contact-section-short-brand .hero-text {
        font-size: 160px;
    }

    .contact-brand-footer-line {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px 16px;
    }

    .contact-brand-copyright {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .contact-section-top-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-panel-subtitle p {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-card-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 16px;
    }

    .contact-card-email,
    .contact-card-phone {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .contact-card-address {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .contact-section-data-grid {
        grid-template-columns: 1fr;
    }

    .motivational-section-split {
        --motivational-title-size: clamp(3.2rem, 11vw, 4.2rem);
        --motivational-secondary-size: clamp(1.7rem, 5.2vw, 2.2rem);
        --motivational-inline-padding: 20px;
        --motivational-header-clearance: 70px;
        grid-template-rows: auto auto;
        height: auto;
        min-height: 100vh;
        padding: calc(24px + var(--motivational-header-clearance)) 0 24px;
    }

    .motivational-secondary-text p {
        max-width: 100%;
        line-height: 1.5;
    }

    .blog-area {
        --blog-inline-padding: 20px;
        padding: 60px 0 64px;
    }

    .tech-section {
        --tech-inline-padding: 20px;
        --tech-gap: 14px;
        --tech-block-gap: 32px;
        padding: 68px 0;
    }

    .experience-section {
        --experience-inline-padding: 20px;
        padding: 64px 0 60px;
    }

    .experience-years {
        min-height: 180px;
    }

    .experience-years-value {
        font-size: clamp(6rem, 22vw, 9.4rem);
    }

    .experience-years-label {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .experience-title {
        font-size: clamp(2rem, 8.6vw, 3.4rem);
        line-height: 1;
    }

    .experience-lead {
        font-size: 1.75rem;
    }

    .experience-copy,
    .experience-line-text {
        font-size: 1.55rem;
    }

    .experience-line-item {
        padding: 10px 12px;
    }

    .experience-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 12px;
    }

    .experience-logo-item {
        width: auto;
        max-width: 30%;
        height: 64px;
    }

    .experience-line-title {
        font-size: clamp(1.55rem, 5.2vw, 2rem);
    }

    .tech-title {
        font-size: clamp(1.9rem, 9vw, 3rem);
        line-height: 1;
        max-width: min(92vw, 680px);
    }

    .tech-marker {
        font-size: clamp(2.2rem, 10vw, 3.6rem);
    }

    .tech-summary p {
        font-size: 1.85rem;
    }

    .tech-summary,
    .tech-module-main,
    .tech-module-content {
        padding: 18px;
    }

    .tech-module-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .tech-copy {
        font-size: 1.7rem;
    }

    .tech-pill-list,
    .tech-audience-list,
    .tech-tag-list {
        grid-template-columns: 1fr;
    }

    .blog-area .blog-section-title .title {
        font-size: clamp(1.9rem, 8vw, 3rem);
    }

    .hero-text {
        font-size: 140px;
    }

    .hero-content {
        padding: 0 20px 20px 20px;
    }

    .contact-section-short {
        padding: 72px 10px 14px;
    }

    .contact-section-short-brand .hero-text {
        font-size: 120px;
    }

    .contact-panel p {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-full-screen {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/bg/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-full-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 60px 60px 60px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-full-screen .hero-content {
    opacity: 0;
    transform: translateY(40px);
}

.hero-text {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 360px;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    white-space: nowrap;
}

.hero-full-screen .hero-text {
    color: rgba(0, 0, 0, 1);
}

.hero-full-screen.is-visible .hero-content {
    animation: slideUp 1s ease-out forwards;
}

.hero-full-screen.is-visible .hero-text {
    animation: textToWhite 2.8s ease-out forwards;
}

@keyframes textToWhite {
    0% {
        color: rgba(0, 0, 0, 1);
    }
    100% {
        color: rgba(255, 255, 255, 0.85);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes contactTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactHeroReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes motivationalSectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-section-short-layout {
        min-height: auto;
    }

    .hero-text {
        font-size: clamp(8.8rem, 24vw, 18rem);
        letter-spacing: -0.04em;
        line-height: 0.92;
    }

    .hero-content {
        padding: 0 28px 28px 28px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: clamp(7.2rem, 23vw, 10.5rem);
        letter-spacing: -0.03em;
        line-height: 0.9;
    }

    .hero-content {
        padding: 0 16px 18px 16px;
    }

    .contact-section-short-content h3 {
        font-size: 2.4rem;
    }

    .contact-section-short-brand .hero-text {
        font-size: 120px;
    }

    .contact-panel p {
        font-size: 16px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    opacity: 0.7;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator-unified {
    position: fixed;
    right: 32px;
    z-index: 200;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scroll-indicator-unified svg {
    width: 48px;
    height: 48px;
    display: block;
}

.scroll-indicator-down {
    bottom: 32px;
    animation: arrowCallDown 1.2s ease-in-out infinite;
}

.scroll-indicator-up {
    top: 96px;
    animation: arrowCallUp 1.2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .scroll-indicator-unified {
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .scroll-indicator-unified svg {
        width: 42px;
        height: 42px;
    }

    .scroll-indicator-down {
        bottom: 20px;
    }

    .scroll-indicator-up {
        top: 62px;
    }
}

@keyframes arrowCallDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes arrowCallUp {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
