/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Lato:wght@400;700&family=Montserrat:wght@500&family=Raleway:wght@500;700&display=swap');

/* Color Tokens */
:root {
  /* Tokens - Mode 1 */
  --opacity-100: 1;
  --stroke-weight-1: 1px;
  --color-semantic-text-text-dark: var(--color-primitive-grey-grey-400);
  --color-semantic-background-background-dark: var(--color-primitive-grey-grey-500);
  --color-semantic-background-background-elevated-dark: var(--color-primitive-grey-grey-390);
  --color-semantic-background-background-elevated-light: var(--color-primitive-grey-grey-380);
  --color-semantic-background-background-elevated-lighter: var(--color-primitive-grey-grey-360);
  --color-semantic-background-background-light: var(--color-primitive-white-white-200);
  --color-semantic-text-text-medium: var(--color-primitive-grey-grey-300);
  --stroke-weight-0-12: 0.12480000406503677px;
  --color-semantic-text-text-accent-link1: var(--color-primitive-purple-purple-300);
  --color-semantic-text-text-accent-link-2: var(--color-primitive-green-green-300);
  --color-semantic-text-text-light: var(--color-primitive-white-white-200);
  --color-semantic-accent-accent-green: var(--color-primitive-green-green-400);
  --color-semantic-accent-accent-red: var(--color-primitive-red-red-400);
  --color-semantic-accent-accent-purple: var(--color-primitive-purple-purple-400);
  --color-semantic-accent-accent-purple-light: var(--color-primitive-purple-purple-300);
  --color-primitive-grey-grey-500: #070707;
  --color-primitive-grey-grey-400: #141416;
  --color-primitive-grey-grey-390: #2A2A2F;
  --color-primitive-grey-grey-380: #69696F;
  --color-primitive-grey-grey-360: #8E8E91;
  --color-primitive-grey-grey-300: #8A8594;
  --color-primitive-purple-purple-400: #9152FF;
  --color-primitive-purple-purple-300: #D8B4FE;
  --color-primitive-green-green-400: #12B981;
  --color-primitive-green-green-300: #A3E6B2;
  --color-primitive-red-red-400: #BE133D;
  --color-primitive-white-white-200: #FDFDFF;
  --color-semantic-button-background-dark-default: var(--color-primitive-grey-grey-400);
  --color-semantic-button-background-dark-hover: var(--color-primitive-grey-grey-500);
  --color-semantic-button-background-light-default: var(--color-primitive-white-white-200);
  --color-semantic-button-background-light-hover: var(--color-primitive-grey-grey-300);
  --color-semantic-button-stroke-dark-default: var(--color-primitive-grey-grey-380);
  --color-semantic-button-stroke-dark-hover: var(--color-primitive-white-white-200);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography Styles */
.font-headline-xl {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(50px, 5vw, 96px);
    line-height: 100%;
    text-decoration: none;
    letter-spacing: normal;
}

.font-headline-l {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 100%;
    text-decoration: none;
    letter-spacing: normal;
}

.font-headline-m {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    text-decoration: none;
    letter-spacing: normal;
}

.font-headline-s {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    text-decoration: none;
    letter-spacing: normal;
}

.font-body-strong {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
    letter-spacing: normal;
}

.font-body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
    letter-spacing: normal;
}

.font-labels {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    letter-spacing: 2.56px;
    text-transform: uppercase;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--color-primitive-grey-grey-500);
    color: var(--color-semantic-text-text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-semantic-background-background-dark);
    border-bottom: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--color-semantic-text-text-light);
    text-decoration: none;
}

.logo-o {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-semantic-accent-accent-purple);
    text-stroke: 2px var(--color-semantic-accent-accent-purple);
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    align-items: center;
}

.nav-link-chip {
    color: var(--color-semantic-text-text-light);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    background: var(--color-semantic-background-background-elevated-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.nav-link-chip:hover {
    color: var(--color-semantic-text-text-accent-link1);
    background: var(--color-semantic-background-background-elevated-light);
}

.nav-shop {
    background: var(--color-semantic-button-background-dark-default);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 2px;
    padding: 0.5rem 1rem;
    color: var(--color-semantic-text-text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-shop svg {
    width: 16px;
    height: 16px;
}

.nav-shop svg path {
    stroke: var(--color-semantic-accent-accent-green) !important;
    fill: none;
}

.nav-shop:hover {
    background: var(--color-semantic-button-background-dark-hover);
    border-color: var(--color-semantic-button-stroke-dark-hover);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(50px, 5vw, 96px);
    line-height: 100%;
    color: var(--color-semantic-text-text-light);
    margin-bottom: 2rem;
}

.headline-gradient-with-ux {
    background: linear-gradient(180deg, #E2DCF4 0%, #7F769B 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.headline-gradient-magic {
    background: linear-gradient(180deg, #948EB3 0%, #737292 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-blurb {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-medium);
    margin-bottom: 2rem;
}

.text-accent-link {
    color: var(--color-semantic-text-text-accent-link1);
}

.text-accent-link-2 {
    color: var(--color-semantic-text-text-accent-link-2);
}

/* Gradient Bar Image */
.gradient-bar-image {
    margin-bottom: 1.5rem;
    width: 100%;
}

.gradient-bar-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 600px;
}

/* Hero Chips */
.hero-chips {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-semantic-background-background-elevated-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-semantic-text-text-light);
}

.chip svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.chip-green {
    color: var(--color-semantic-accent-accent-green);
    border-color: var(--color-semantic-accent-accent-green);
}

.chip-purple {
    color: var(--color-semantic-accent-accent-purple);
    border-color: var(--color-semantic-accent-accent-purple);
}

/* General purpose chip for use throughout the site */
.site-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--color-semantic-background-background-elevated-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: normal;
    color: var(--color-semantic-text-text-light);
    width: fit-content;
}

.site-chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-image-greyscale {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-image-color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-container:hover .hero-image-greyscale {
    opacity: 0;
}

.hero-image-container:hover .hero-image-color {
    opacity: 1;
}

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

/* Case Studies Section */
.case-studies {
    padding: 6rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
    border-bottom: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.case-study-card {
    background: rgba(42, 42, 47, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.37), 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.case-study-card:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 82, 255, 0.5);
    background: rgba(42, 42, 47, 0.6);
    box-shadow: 0px 12px 40px 0px rgba(145, 82, 255, 0.2), 0px 8px 24px 0px rgba(0, 0, 0, 0.3);
}

.case-study-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 288px;
}

.case-study-image img {
    position: absolute;
    width: calc(100% + 9px);
    height: 288px;
    left: -4.5px;
    top: 0.5px;
    object-fit: cover;
    object-position: 50% 50%;
}

.case-study-content {
    padding: 1.5rem 1.75rem;
    text-align: center;
    background: rgba(42, 42, 47, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.case-study-card h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    color: var(--color-semantic-text-text-medium);
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 16%;
    color: var(--color-semantic-text-text-medium);
    text-transform: uppercase;
}

.case-studies-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9.75rem 0;
}

.button-process {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* About Section */
.about {
    padding: 8rem 7.5rem;
    max-width: 1440px;
    margin: 0 auto;
    background: var(--color-semantic-background-background-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.about-heading {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: var(--color-semantic-text-text-medium);
    text-align: center;
    margin-bottom: 1.25rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    text-align: center;
}

.about-content p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-medium);
}

.button-resume {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

/* Blog Section */
.blog {
    padding: 4rem 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
    border-bottom: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: var(--color-semantic-text-text-medium);
    flex: 1;
}

.button-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-medium);
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 540px));
    gap: 1rem;
    justify-content: center;
}

.blog-card {
    background: var(--color-semantic-background-background-elevated-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    max-width: 540px;
    box-shadow: 0px 8px 12px 6px rgba(105, 105, 111, 0.15), 0px 4px 4px 0px rgba(105, 105, 111, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 82, 255, 0.5);
    background: rgba(42, 42, 47, 0.6);
    box-shadow: 0px 12px 40px 0px rgba(145, 82, 255, 0.2), 0px 8px 24px 0px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    width: 100%;
    height: 171px;
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: var(--color-semantic-background-background-elevated-dark);
}

.blog-card-image img {
    width: 102%;
    height: 102%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: -1%;
    padding: 0;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-card-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--color-semantic-background-background-elevated-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-semantic-text-text-light);
    width: fit-content;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
}

.blog-card-chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.blog-card h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    color: var(--color-semantic-text-text-light);
}

.blog-card p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--color-semantic-text-text-medium);
    line-height: 150%;
    height: 59px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Blog Listing Page */
.blog-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
}

.blog-hero-content h1 {
    margin-bottom: 1.5rem;
}

.blog-hero-subtitle {
    color: var(--color-semantic-text-text-medium);
}

.blog-listing {
    padding: 0 2rem 6rem;
    max-width: 1440px;
    margin: 0 auto;
}

/* Blog Post Page */
.blog-post-hero {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.button-back-to-blog {
    align-self: flex-start;
    margin-bottom: 1rem;
}

.blog-post-header-image {
    display: none;
}

.blog-post-body-image {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.blog-post-body-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: inline-block;
}

.blog-post-title {
    margin-top: 1rem;
    text-align: center;
}

.blog-post-subtitle {
    color: var(--color-semantic-text-text-medium);
    margin-top: 1rem;
    text-align: center;
}

.blog-post-date {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--color-semantic-text-text-medium);
    margin-top: 0.5rem;
    text-align: center;
}

.blog-post-content {
    padding: 0 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-container {
    width: 100%;
}

.blog-post-body {
    line-height: 1.5;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body p:last-child {
    margin-bottom: 0;
}

.blog-post-body a {
    color: var(--color-semantic-text-text-accent-link-2);
    text-decoration: none;
}

.blog-post-body a.text-accent-link {
    color: var(--color-semantic-text-text-accent-link1);
}

.blog-post-body a:hover {
    text-decoration: underline;
}

.blog-post-body a.underlined {
    text-decoration: underline;
}


.blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post-body ol li {
    margin-bottom: 1.5rem;
}

.blog-post-body ol li:last-child {
    margin-bottom: 0;
}

.blog-post-body h2,
.blog-post-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-body h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: var(--color-semantic-text-text-light);
}

.blog-post-body h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: var(--color-semantic-text-text-light);
}

/* Form Section */
.contact-form {
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
    background: var(--color-semantic-background-background-elevated-dark);
    display: flex;
    align-items: center;
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

.contact-form-image {
    flex: 1 1 0;
    aspect-ratio: 1024 / 1024;
    min-width: 0;
    min-height: 0;
}

.contact-form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-container {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 94px;
    min-width: 0;
    min-height: 0;
}

.contact-form-content {
    width: 100%;
    max-width: 431px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-form-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 100%;
}

.contact-form-title p {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: var(--color-semantic-text-text-medium);
    text-align: center;
    margin: 0;
    width: 100%;
}

.contact-form-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: var(--color-semantic-text-text-medium);
    text-align: center;
    margin: 0;
}

.contact-form-fields-button {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: flex-start;
}

.contact-form .form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    background: var(--color-semantic-background-background-elevated-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: var(--color-semantic-text-text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input {
    height: 55px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-semantic-text-text-light);
    opacity: 0.5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2.56px;
    text-transform: uppercase;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-semantic-accent-accent-purple);
    opacity: 1;
}

.contact-form textarea {
    height: 192px;
    resize: vertical;
}

.contact-form button.button {
    width: 100%;
}

/* Honeypot field - must be hidden to prevent layout issues */
.contact-form input[name="bot-field"] {
    display: none !important;
}

/* Button Component */
.button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    padding: 1rem;
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 2px;
    background: var(--color-semantic-button-background-dark-default);
    color: var(--color-semantic-text-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    text-align: center;
}

.button:hover {
    background: var(--color-semantic-button-background-dark-hover);
    border-color: var(--color-semantic-button-stroke-dark-hover);
}

.button-primary {
    background: var(--color-semantic-accent-accent-purple);
    border-color: var(--color-semantic-accent-accent-purple);
}

.button-primary:hover {
    background: var(--color-semantic-accent-accent-purple);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.button-view-expertise {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
}

.button-view-expertise svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.button-view-expertise:hover svg {
    transform: translateY(2px);
}


/* Footer */
footer {
    padding: 2rem 3.5rem;
    background: var(--color-semantic-background-background-dark);
    border-top: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.button-back-to-top {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.footer-contact p {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-light);
    margin: 0;
}

.footer-contact a {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-light);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-semantic-text-text-accent-link1);
}

.footer-contact .font-body-strong {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.footer-links a {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-light);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-semantic-text-text-accent-link1);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.footer-social a {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--color-semantic-text-text-light);
    text-decoration: none;
    background: var(--color-semantic-background-background-elevated-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--color-semantic-text-text-accent-link1);
    background: var(--color-semantic-background-background-elevated-light);
}

.footer-credits {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-semantic-button-stroke-dark-default);
    margin-top: 1rem;
}

.footer-credits p {
    margin: 0;
    color: var(--color-semantic-text-text-medium);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-semantic-text-text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Styles */
@media (max-width: 700px) {
    /* Navigation - Ensure menu icon is visible */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-semantic-background-background-dark);
        border-bottom: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Hero Section */
    .hero {
        margin-top: 64px;
        padding: 2rem 0.5rem;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    /* Design Systems H2's - 24px below 700px */
    .design-systems-section-headline,
    .roi-bar-headline {
        font-size: 24px !important;
    }

    /* Pipeline responsive at 700px */
    .visual-pipeline {
        gap: 1rem;
        padding: 1.5rem;
    }

    .pipeline-svg-icon {
        width: 70px;
        /* Maintain aspect ratio */
    }

    .pipeline-svg {
        height: 70px;
    }

    .hero-blurb {
        font-size: 14px;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .hero-buttons .button {
        width: 100%;
        justify-content: center;
    }

    .gradient-bar-image {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0 auto;
    }

    .gradient-bar-img {
        max-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: block;
        margin: 0;
        padding: 0;
        object-fit: contain;
    }

    .hero-image-container {
        max-width: 100%;
        margin: 2rem auto 0;
        padding: 0 0.5rem;
    }

    /* Case Studies */
    .case-studies {
        padding: 3rem 0.5rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-card {
        width: 100%;
    }

    .case-studies-button-container {
        padding: 3rem 0.5rem;
    }

    .case-studies-button-container .button {
        width: 100%;
    }

    /* About Section */
    .about {
        padding: 3rem 0.5rem;
    }

    .about-heading {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 1rem;
    }

    .about-content {
        padding: 0;
    }

    .about-content p {
        font-size: 14px;
    }

    .button-resume {
        width: 100%;
        justify-content: center;
    }

    /* Blog Section */
    .blog {
        padding: 3rem 0.5rem;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .blog h2 {
        font-size: clamp(28px, 8vw, 40px);
    }

    /* Blog Hero Section (blog.html) */
    .blog-hero {
        padding: 5rem 0.5rem 2rem;
    }

    .blog-hero-content {
        padding: 0 0.5rem;
    }

    .blog-hero-content h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .blog-hero-subtitle {
        padding: 0 0.5rem;
    }

    /* Blog Listing Section (blog.html) */
    .blog-listing {
        padding: 0 0.5rem 3rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .blog-post-title {
        font-size: 32px;
        line-height: 1.1;
    }

    .font-headline-xl {
        font-size: 32px !important;
        line-height: 1.1;
    }

    h1.font-headline-xl {
        font-size: 32px !important;
        line-height: 1.1;
    }

    .blog-hero-content h1 {
        font-size: 32px !important;
        line-height: 1.1;
    }

    .blog-subtitle {
        padding: 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .blog-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 1rem;
        overflow: visible;
    }

    .blog-card-content {
        overflow: visible;
    }

    .blog-card h3 {
        font-size: 24px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible;
        white-space: normal;
    }

    .blog-card p {
        height: auto;
        min-height: auto;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .button-view-all {
        width: 100%;
        justify-content: center;
    }

    /* Contact Form */
    .contact-form {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        width: 100%;
    }

    .contact-form-container {
        width: 100%;
        padding: 3rem 0.5rem;
    }

    .contact-form-title p {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.3;
    }

    .contact-form .form-fields {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form button {
        width: 100%;
    }

    /* Footer */
    footer {
        padding: 2rem 0.5rem;
    }

    .footer-content {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 540px));
        justify-content: center;
    }

    .contact-form {
        flex-direction: column;
    }

    .contact-form-image {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .contact-form-container {
        width: 100%;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 950px) {
    /* Navigation - Show menu icon when nav items get cramped */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-semantic-background-background-dark);
        border-bottom: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link-chip,
    .nav-shop {
        width: 100%;
        justify-content: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hero Section */
    .hero {
        margin-top: 64px;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-blurb {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

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

    .hero-buttons .button {
        width: 100%;
        justify-content: center;
    }

    .gradient-bar-img {
        max-width: 100%;
    }

    .hero-image-container {
        max-width: 300px;
        margin: 2rem auto 0;
    }

    /* Case Studies */
    .case-studies {
        padding: 3rem 1rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-card {
        width: 100%;
    }

    .case-studies-button-container {
        padding: 3rem 0;
    }

    /* About Section */
    .about {
        padding: 3rem 1.5rem;
    }

    .about-heading {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 1rem;
    }

    .about-content p {
        font-size: 14px;
    }

    /* Blog Section */
    .blog {
        padding: 3rem 1rem;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .blog h2 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .blog-hero {
        padding: 6rem 1rem 3rem;
    }

    .blog-hero-content {
        padding: 0 1rem;
    }

    .blog-listing {
        padding: 0 1rem 4rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        max-width: 100%;
        width: 100%;
    }

    /* Contact Form */
    .contact-form {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        background: var(--color-semantic-background-background-elevated-dark);
        display: flex;
        width: 100%;
        position: relative;
    }

    .contact-form-image {
        display: none !important;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .contact-form-container {
        width: 100%;
        padding: 60px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1 1 auto;
        min-height: auto;
    }

    .contact-form-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-form-title {
        width: 100%;
    }

    .contact-form-title p {
        font-size: 32px;
        line-height: 1.5;
    }

    .contact-form .form-fields {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    /* Footer */
    footer {
        padding: 32px 24px;
    }

    .footer-content {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        display: none;
    }

    .footer-social {
        align-items: center;
        text-align: center;
    }

    .footer-credits {
        padding-top: 1rem;
        margin-top: 0.5rem;
    }

    .footer-credits p {
        font-size: 12px;
    }

    .button-back-to-top {
        align-self: center;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    nav {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 20px;
    }

    /* Hero */
    .hero {
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    /* Typography adjustments */
    .font-headline-xl {
        font-size: 32px;
    }

    .font-headline-l {
        font-size: 24px;
    }

    .font-headline-m {
        font-size: 24px;
    }
}

/* Global 320px Typography Override - Project Requirement */
@media (max-width: 320px) {
    /* Ensure base typography classes follow project requirements at 320px */
    .font-headline-xl {
        font-size: 32px !important;
    }

    .font-headline-l {
        font-size: 24px !important;
    }

    .font-headline-s {
        font-size: 24px;
    }

    /* Buttons */
    .button {
        font-size: 14px;
        padding: 0.75rem;
    }

    /* Case Studies */
    .case-study-content {
        padding: 1rem;
    }

    .case-study-card h3 {
        font-size: 24px;
    }

    /* Blog */
    .blog-card {
        padding: 1rem;
    }

    .blog-card h3 {
        font-size: 24px;
    }
}

/* Index.html (Under Construction Page) Styles */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--color-primitive-grey-grey-500);
    text-align: center;
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

.main-heading {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(32px, 6vw, 64px);
    color: var(--color-semantic-text-text-light);
    margin: 2rem 0;
    line-height: 1.2;
}

.status-message {
    max-width: 600px;
    margin: 0 auto;
}

.status-message p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-semantic-text-text-medium);
}

/* Index.html Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
        min-height: 100vh;
    }

    .banner-container {
        margin: 0 auto 2rem;
        padding: 0 1rem;
    }

    .banner-image {
        width: 100%;
        max-width: 100%;
    }

    .main-heading {
        font-size: clamp(24px, 8vw, 40px);
        margin: 1.5rem 0;
        padding: 0 1rem;
    }

    .status-message {
        max-width: 100%;
        padding: 0 1rem;
    }

    .status-message p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }

    .banner-container {
        margin: 0 auto 1.5rem;
        padding: 0 0.5rem;
    }

    .main-heading {
        font-size: 24px;
        margin: 1rem 0;
    }

    .status-message p {
        font-size: 14px;
    }
}

/* About/Resume Page Styles */
.about-page-section {
    padding: 2rem 7.5rem 4rem;
    max-width: 1440px;
    margin: 0 auto;
    background: var(--color-semantic-background-background-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-page-container {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-page-heading {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: var(--color-semantic-text-text-medium);
    text-align: center;
    margin-bottom: 1rem;
}

.resume-header-section {
    padding: 4rem 7.5rem 2rem;
    max-width: 1440px;
    margin: 80px auto 0;
    background: var(--color-semantic-background-background-dark);
}

.resume-section {
    padding: 4rem 7.5rem;
    max-width: 1440px;
    margin: 0 auto;
    background: var(--color-semantic-background-background-dark);
}

.resume-container {
    max-width: 900px;
    margin: 0 auto;
}

.resume-header {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 2rem;
    border-bottom: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
}

.resume-name {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 100%;
    color: var(--color-semantic-text-text-light);
    margin-bottom: 0.5rem;
}

.resume-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-semantic-text-text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resume-download {
    text-align: center;
    margin: 0;
    flex-shrink: 0;
}

.button-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.resume-section-block {
    margin-bottom: 3rem;
}

.resume-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    gap: 2rem;
    flex-wrap: wrap;
}

.resume-section-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: var(--color-semantic-text-text-light);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.resume-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-semantic-button-stroke-dark-default);
}

.resume-item-header {
    margin-bottom: 0.75rem;
}

.resume-item-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-semantic-text-text-medium);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.resume-item-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: var(--color-semantic-text-text-light);
    margin-bottom: 0.25rem;
}

.resume-item-company {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-semantic-text-text-accent-link1);
    margin-bottom: 0.5rem;
}

.resume-item-description {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-semantic-text-text-medium);
    margin-top: 0.5rem;
    list-style: none;
    padding-left: 0;
}

.resume-item-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.resume-item-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-semantic-text-text-accent-link1);
    font-weight: bold;
}

.resume-item-description li:last-child {
    margin-bottom: 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-name {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-semantic-text-text-light);
    margin-bottom: 0.25rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--color-semantic-background-background-elevated-dark);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-semantic-text-text-accent-link1) 0%, var(--color-semantic-text-text-accent-link-2) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.skill-percentage {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-semantic-text-text-medium);
    text-align: right;
}

/* About/Resume Page Responsive Styles */
@media (max-width: 1024px) {
    .resume-header-section {
        padding: 4rem 3rem 2rem;
    }

    .about-page-section {
        padding: 2rem 3rem 4rem;
    }

    .resume-section {
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px) {
    .resume-header-section {
        padding: 3rem 1.5rem 1.5rem;
        margin-top: 64px;
    }

    .about-page-section {
        padding: 1.5rem 1.5rem 3rem;
    }

    .about-page-heading {
        font-size: clamp(32px, 8vw, 48px);
    }

    .resume-section {
        padding: 3rem 1.5rem;
    }

    .resume-name {
        font-size: clamp(32px, 8vw, 48px);
    }

    .resume-title {
        font-size: 16px;
    }

    .resume-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .resume-section-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .resume-download {
        width: 100%;
    }

    .resume-download .button {
        width: 100%;
        justify-content: center;
    }

    .resume-item {
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    .resume-item-title {
        font-size: 20px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .resume-header-section {
        padding: 2rem 1rem 1rem;
    }

    .about-page-section {
        padding: 1rem 1rem 2rem;
    }

    .resume-section {
        padding: 2rem 1rem;
    }

    .resume-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .resume-download {
        margin-bottom: 2rem;
    }

    .resume-section-block {
        margin-bottom: 2rem;
    }

    .resume-item {
        margin-bottom: 1.5rem;
    }
}

/* Process Page Styles */
.process-hero {
    padding: 8rem 4rem 4rem;
    text-align: center;
    background: var(--color-semantic-background-background-dark);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.process-hero h1 {
    color: var(--color-semantic-text-text-medium);
}

.process-intro {
    padding: 4rem;
    background: var(--color-semantic-background-background-dark);
}

.process-intro-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-intro-content p {
    color: var(--color-semantic-text-text-medium);
}

.process-steps {
    padding: 4rem;
    background: var(--color-semantic-background-background-dark);
}

.process-steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.process-step-card {
    background: var(--color-semantic-background-background-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 8px 2px rgba(105, 105, 111, 0.1), 0px 2px 4px 0px rgba(105, 105, 111, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 24px 4px rgba(105, 105, 111, 0.2), 0px 6px 12px 0px rgba(105, 105, 111, 0.3);
    border-color: var(--color-semantic-accent-accent-purple);
}

.process-step-number {
    position: absolute;
    top: -1.5rem;
    left: 2.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--color-semantic-background-background-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-accent-accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--color-semantic-accent-accent-purple);
}

.process-step-title {
    color: var(--color-semantic-text-text-accent-link1);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: clamp(28px, 4vw, 40px);
}

.process-step-quote {
    color: var(--color-semantic-text-text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 18px;
}

.process-step-description {
    color: var(--color-semantic-text-text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.process-step-toolkit {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-semantic-button-stroke-dark-default);
}

.process-toolkit-label {
    color: var(--color-semantic-text-text-accent-link1);
    margin-bottom: 0.5rem;
}

.process-toolkit-items {
    color: var(--color-semantic-text-text-medium);
    line-height: 1.6;
}

.process-cta {
    padding: 4rem;
    background: var(--color-semantic-background-background-dark);
}

.process-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Process Page Responsive Styles */
@media (max-width: 1024px) {
    .process-hero {
        padding: 6rem 3rem 3rem;
        min-height: 35vh;
    }

    .process-intro {
        padding: 3rem;
    }

    .process-steps {
        padding: 3rem;
    }

    .process-steps-grid {
        gap: 2.5rem;
    }

    .process-cta {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .process-hero {
        padding: 5rem 2rem 2rem;
        min-height: 30vh;
        margin-top: 64px;
    }

    .process-intro {
        padding: 2rem 1.5rem;
    }

    .process-intro-content {
        gap: 1.5rem;
    }

    .process-steps {
        padding: 2rem 1.5rem;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-step-card {
        padding: 2rem;
    }

    .process-step-number {
        top: -1.25rem;
        left: 2rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 20px;
    }

    .process-step-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-top: 0.75rem;
    }

    .process-step-quote {
        font-size: 16px;
    }

    .process-step-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .process-cta {
        padding: 2rem 1.5rem;
    }

    .process-cta-content {
        flex-direction: column;
        gap: 1.5rem;
    }

.process-cta-content .button {
    width: 100%;
    max-width: 300px;
}
}

/* Handoff Page Styles */
.handoff-hero-subtitle {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.handoff-subtitle-headline {
    color: var(--color-semantic-text-text-accent-link1);
    margin-bottom: 1.5rem;
}

.handoff-subtitle-text {
    color: var(--color-semantic-text-text-medium);
    line-height: 1.8;
}

.handoff-sections {
    padding: 4rem;
    background: var(--color-semantic-background-background-dark);
}

.handoff-sections-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.handoff-section-card {
    background: var(--color-semantic-background-background-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.handoff-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 24px 4px rgba(105, 105, 111, 0.2), 0px 6px 12px 0px rgba(105, 105, 111, 0.3);
    border-color: var(--color-semantic-accent-accent-purple);
}


.handoff-section-title {
    color: var(--color-semantic-text-text-accent-link1);
    margin-bottom: 1.5rem;
    font-size: clamp(28px, 4vw, 40px);
}

.handoff-section-copy {
    color: var(--color-semantic-text-text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.handoff-section-copy:last-of-type {
    margin-bottom: 0;
}

.handoff-section-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-semantic-button-stroke-dark-default);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.handoff-detail-label {
    color: var(--color-semantic-text-text-light);
    margin-bottom: 0.5rem;
}

.handoff-detail-text {
    color: var(--color-semantic-text-text-medium);
    line-height: 1.8;
}

/* Handoff Page Responsive Styles */
@media (max-width: 1024px) {
    .handoff-sections {
        padding: 3rem;
    }

    .handoff-sections-container {
        gap: 2.5rem;
    }

    .handoff-hero-subtitle {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .handoff-hero-subtitle {
        margin-top: 2rem;
        text-align: left;
    }

    .handoff-subtitle-headline {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 1rem;
    }

    .handoff-sections {
        padding: 2rem 1.5rem;
    }

    .handoff-sections-container {
        gap: 2rem;
    }

    .handoff-section-card {
        padding: 2rem;
    }

    .handoff-section-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 1rem;
    }

    .handoff-section-copy {
        font-size: 15px;
        line-height: 1.6;
    }

    .handoff-section-details {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .handoff-hero-subtitle {
        margin-top: 1.5rem;
    }

    .handoff-subtitle-headline {
        font-size: 24px;
    }

    .handoff-subtitle-text {
        font-size: 15px;
    }

    .handoff-sections {
        padding: 2rem 1rem;
    }

    .handoff-sections-container {
        gap: 1.5rem;
    }

    .handoff-section-card {
        padding: 1.5rem;
    }

    .handoff-section-title {
        font-size: 22px;
        margin-bottom: 0.75rem;
    }

    .handoff-section-copy {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .handoff-section-details {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        gap: 1rem;
    }

    .handoff-detail-label {
        font-size: 14px;
    }

    .handoff-detail-text {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .handoff-hero-subtitle {
        margin-top: 1rem;
    }

    .handoff-subtitle-headline {
        font-size: 24px;
    }

    .handoff-subtitle-text {
        font-size: 14px;
    }

    .handoff-sections {
        padding: 1.5rem 0.75rem;
    }

    .handoff-sections-container {
        gap: 1.25rem;
    }

    .handoff-section-card {
        padding: 1.25rem;
    }

    .handoff-section-title {
        font-size: 20px;
    }

    .handoff-section-copy {
        font-size: 13px;
    }

    .handoff-section-details {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .handoff-detail-label {
        font-size: 13px;
    }

    .handoff-detail-text {
        font-size: 13px;
    }
}

/* Handoff Section Image Styles */
.handoff-section-visual {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-semantic-background-background-elevated-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image with Copy Layout */
.handoff-image-with-copy {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.handoff-image-section {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1 1 575px;
    min-width: 0;
}

.handoff-image-caption {
    color: var(--color-semantic-text-text-light);
    text-align: center;
    margin: 0;
}

.handoff-image-copy {
    color: var(--color-semantic-text-text-light);
    flex: 0 0 329px;
    margin: 0;
    line-height: 1.6;
}

.handoff-image-copy p {
    margin: 0 0 1rem 0;
}

.handoff-image-copy p:last-child {
    margin-bottom: 0;
}

/* Centered Image Layout (for AI section) */
.handoff-image-centered {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.handoff-image-section-centered {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
    max-width: 785px;
    align-items: center;
}

.handoff-image-copy-centered {
    color: var(--color-semantic-text-text-light);
    max-width: 786px;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.handoff-image-copy-centered p {
    margin: 0 0 1rem 0;
}

.handoff-image-copy-centered p:last-child {
    margin-bottom: 0;
}

.handoff-highlight {
    color: var(--color-semantic-text-text-accent-link-2);
}

.handoff-image-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto;
}

.handoff-image-container-small {
    max-width: 550px;
}

.handoff-section-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}

/* Image Comparison Slider */
.image-comparison-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.image-comparison-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    cursor: ew-resize;
    user-select: none;
}

.comparison-before {
    position: relative;
    width: 100%;
    z-index: 1;
}

.comparison-before img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.comparison-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%, transparent 100%);
    mask-size: 100% 100%;
    mask-position: 0 0;
    mask-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
}

.comparison-after img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: top left;
    pointer-events: none;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 0%;
    width: 3px;
    height: 100%;
    background-color: var(--color-semantic-accent-accent-green);
    transform: translateX(-50%);
    z-index: 10;
    cursor: ew-resize;
}

.comparison-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--color-semantic-accent-accent-green);
    border: 3px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.comparison-slider-handle::before,
.comparison-slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 6px solid transparent;
}

.comparison-slider-handle::before {
    left: 4px;
    border-right-color: white;
    transform: translateY(-50%);
}

.comparison-slider-handle::after {
    right: 4px;
    border-left-color: white;
    transform: translateY(-50%);
}

.comparison-labels-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 16px;
    padding: 0;
}

.comparison-label {
    padding: 8px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    border: 2px solid white;
    pointer-events: none;
}

/* Comparison Labels Responsive - Smaller on mobile */
@media (max-width: 705px) {
    .comparison-label {
        font-size: 12px;
        padding: 6px 12px;
        border-width: 1px;
    }
}

/* Handoff Image Responsive Styles */
@media (max-width: 1024px) {
    .handoff-image-with-copy {
        flex-direction: column;
        align-items: stretch;
    }
    
    .handoff-image-section {
        flex: 1 1 auto;
    }
    
    .handoff-image-copy {
        flex: 1 1 auto;
        max-width: 100%;
    }
    
    .handoff-image-section-centered {
        max-width: 100%;
    }
    
    .handoff-image-copy-centered {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .handoff-section-visual {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .handoff-image-with-copy {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .handoff-section-visual {
        margin: 1.25rem 0;
        padding: 1rem;
    }
    
    .handoff-image-with-copy {
        gap: 1rem;
    }
    
    .handoff-image-caption {
        font-size: 14px;
    }
    
    .handoff-image-copy {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .handoff-section-visual {
        margin: 1rem 0;
        padding: 0.75rem;
    }
    
    .handoff-image-with-copy {
        gap: 0.75rem;
    }
    
    .handoff-image-caption {
        font-size: 13px;
    }
    
    .handoff-image-copy {
        font-size: 13px;
    }
}

/* Design Systems Page Styles */
.design-systems-subtitle {
    margin-top: 2rem;
    color: var(--color-semantic-text-text-medium);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.roi-bar-section {
    padding: 4rem;
    background: var(--color-semantic-background-background-elevated-dark);
}

.roi-bar-container {
    max-width: 1200px;
    margin: 0 auto;
}

.roi-bar-headline {
    color: var(--color-semantic-text-text-medium);
    text-align: center;
    margin-bottom: 3rem;
}

.roi-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.roi-metric {
    text-align: center;
    padding: 2rem;
    background: var(--color-semantic-background-background-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
}

.roi-metric-number {
    color: var(--color-semantic-text-text-accent-link-2);
    margin-bottom: 1rem;
}

.roi-metric-label {
    color: var(--color-semantic-text-text-medium);
}

.design-systems-section {
    padding: 4rem;
    background: var(--color-semantic-background-background-dark);
}

.design-systems-container {
    max-width: 900px;
    margin: 0 auto;
}

.design-systems-section-headline {
    color: var(--color-semantic-text-text-medium);
    margin-bottom: 2rem;
}

.design-systems-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.design-systems-content p {
    color: var(--color-semantic-text-text-medium);
}

.design-systems-content strong {
    color: var(--color-semantic-text-text-light);
}

.design-systems-headline,
.design-systems-section-headline,
.roi-bar-headline {
    color: var(--color-semantic-text-text-medium) !important;
}

.design-systems-body-text {
    color: var(--color-semantic-text-text-light) !important;
}

/* Design Systems Visuals */
.design-systems-visual {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--color-semantic-background-background-elevated-dark);
    border: var(--stroke-weight-1) solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
}

/* Governance Flowchart - Static Professional Style */
/* Governance Flowchart - Simple Image */
.visual-decision-tree {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    /* Container background and border are inherited from .design-systems-visual */
    /* No overrides - uses the standard visual container styling */
}

.flowchart-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Maintain aspect ratio: 1397px / 762px ≈ 1.833 */
    aspect-ratio: 1397 / 762;
}

.flowchart-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Zoom in to remove space at edges - scale up to fill container */
    transform: scale(1.3);
    transform-origin: center center;
}

/* Visual 1: Chaos to Order */
.visual-chaos-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
}

.visual-chaos-side,
.visual-order-side {
    flex: 1;
    text-align: center;
    min-width: 0; /* Allow flex items to shrink properly */
    overflow: hidden; /* Prevent content overflow */
}

.visual-title {
    color: var(--color-semantic-text-text-medium);
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.visual-svg {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.arrow-svg {
    width: 80px;
    height: 50px;
}

.glow-node {
    filter: drop-shadow(0 0 4px currentColor);
    animation: pulse-glow 2s ease-in-out infinite;
}

.glow-arrow {
    filter: drop-shadow(0 0 6px var(--color-semantic-text-text-accent-link-2));
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 4px currentColor);
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 8px currentColor);
    }
}

/* Visual 2: Architecture Pipeline */
.visual-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden; /* Prevent content from being cut off */
}

.pipeline-pulse-container {
    animation: slow-pulse 4s ease-in-out infinite;
}

@keyframes slow-pulse {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.95;
        filter: brightness(1.1);
    }
}

.pipeline-icon {
    flex-shrink: 1;
    z-index: 2;
    min-width: 0; /* Allow icons to shrink */
}

.pipeline-svg-icon {
    width: 100px;
    height: 120px;
    max-width: 100%;
    /* Maintain aspect ratio: 80/100 = 0.8 */
    aspect-ratio: 80 / 100;
}

.pipeline-conduit {
    flex: 1;
    min-width: 0; /* Allow conduit to shrink */
    position: relative;
    z-index: 1;
}

.pipeline-svg {
    width: 100%;
    height: 100px;
    max-width: 100%;
}

.pipeline-tube {
    animation: tube-pulse 3s ease-in-out infinite;
}

@keyframes tube-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}

/* Flowing Particles Animation */
.particle {
    filter: drop-shadow(0 0 4px currentColor);
    animation: flow-right 4s linear infinite;
}

/* Make particles more visible on small screens */
@media (max-width: 480px) {
    .particle {
        filter: drop-shadow(0 0 6px currentColor);
        opacity: 1 !important;
    }
}

.particle-1 {
    animation-delay: 0s;
}

.particle-2 {
    animation-delay: 0.5s;
}

.particle-3 {
    animation-delay: 1s;
}

.particle-4 {
    animation-delay: 1.5s;
}

.particle-5 {
    animation-delay: 2s;
}

.particle-6 {
    animation-delay: 2.5s;
}

.particle-7 {
    animation-delay: 3s;
}

@keyframes flow-right {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(350px);
        opacity: 0;
    }
}

/* Floating Text Labels */
.floating-text {
    filter: drop-shadow(0 0 3px rgba(253, 253, 255, 0.8));
    animation: float-text 3s ease-in-out infinite;
}

.floating-text-1 {
    animation-delay: 0s;
}

.floating-text-2 {
    animation-delay: 1.5s;
}

@keyframes float-text {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}


.design-systems-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.design-systems-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.design-systems-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-semantic-text-text-medium);
}

@media (max-width: 480px) {
    /* Navigation - Ensure menu icon is visible */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .process-hero {
        padding: 4rem 1rem 1.5rem;
        min-height: 25vh;
    }

    .process-intro {
        padding: 2rem 1rem;
    }

    .process-steps {
        padding: 2rem 1rem;
    }

    .process-steps-grid {
        gap: 3rem;
    }

    .process-step-card {
        padding: 1.5rem;
    }

    .process-step-number {
        top: -1rem;
        left: 1.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 18px;
    }

    .process-step-title {
        font-size: 22px;
        margin-top: 0.5rem;
    }

    .process-step-quote {
        font-size: 15px;
        margin-bottom: 1rem;
    }

    .process-step-description {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .process-step-toolkit {
        padding-top: 1rem;
    }

    .process-cta {
        padding: 2rem 1rem;
    }

    /* Design Systems Page Responsive */
    .design-systems-subtitle {
        margin-top: 1.5rem;
        font-size: 14px;
    }

    .roi-bar-section {
        padding: 2rem 1rem;
    }

    .roi-bar-headline {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 2rem;
    }

    .roi-metrics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .roi-metric {
        padding: 1.5rem;
    }

    .roi-metric-number {
        font-size: 32px;
    }

    .roi-metric-label {
        font-size: 14px;
    }

    .design-systems-section {
        padding: 2rem 1rem;
    }

    .design-systems-section-headline {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 1.5rem;
    }

    .design-systems-content {
        gap: 1rem;
    }

    .design-systems-content p {
        font-size: 14px;
    }
}

/* Design Systems Page Responsive - 320px */
@media (max-width: 320px) {
    /* Navigation - Ensure menu icon is visible */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .design-systems-subtitle {
        font-size: 13px;
        margin-top: 1rem;
    }

    .roi-bar-section {
        padding: 1.5rem 0.75rem;
    }

    .roi-bar-headline {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }

    .roi-metric {
        padding: 1rem;
    }

    .roi-metric-number {
        font-size: 28px;
    }

    .roi-metric-label {
        font-size: 13px;
    }

    .design-systems-section {
        padding: 1.5rem 0.75rem;
    }

    .design-systems-section-headline {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .design-systems-content p {
        font-size: 13px;
    }

    .process-cta {
        padding: 1.5rem 0.75rem;
    }

    /* Design Systems Visuals Responsive */
    .visual-chaos-order {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        overflow: visible; /* Allow text to be fully visible */
    }

    .visual-title {
        font-size: 12px !important; /* Smaller text to prevent cutoff on very small screens */
        line-height: 1.3;
    }

    .visual-chaos-side,
    .visual-order-side {
        width: 100%;
        overflow: visible; /* Allow text to be fully visible, SVG will be contained by visual-svg */
    }

    .visual-title {
        font-size: 11px !important; /* Smaller text to prevent cutoff on very small screens */
        line-height: 1.3;
        word-break: break-word;
        padding: 0 0.25rem;
    }

    .visual-svg {
        overflow: hidden; /* Only hide SVG overflow, not text */
    }

    .visual-svg {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

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

    .arrow-svg {
        width: 60px;
        height: 40px;
    }

    .visual-pipeline {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        overflow: visible; /* Allow text to be visible */
    }

    .pipeline-icon {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .pipeline-svg-icon {
        width: 70px;
        /* Maintain aspect ratio */
    }

    .pipeline-conduit {
        min-width: 100%;
        width: 100%;
        overflow: visible; /* Ensure text is visible */
    }

    .pipeline-svg {
        height: 80px; /* Increased from 60px for better visibility */
        width: 100%;
    }

    /* Make floating text larger and more visible on small screens */
    .pipeline-svg text {
        font-size: 16px !important; /* Increased from 14px */
        font-weight: bold;
    }

    .flowchart-image {
        max-width: 100%;
    }
}

/* Design Systems Page Responsive - Tablet */
@media (max-width: 1024px) and (min-width: 481px) {
    .roi-bar-section {
        padding: 3rem;
    }

    .roi-metrics-grid {
        gap: 2rem;
    }

    .design-systems-section {
        padding: 3rem;
    }

    /* Pipeline responsive adjustments */
    .visual-pipeline {
        gap: 1.5rem;
    }

    .pipeline-svg-icon {
        width: 90px;
        /* Maintain aspect ratio */
    }

    .pipeline-svg {
        height: 90px;
    }
}

/* Design Systems Page Responsive - Mobile */
@media (max-width: 768px) {
    .design-systems-subtitle {
        margin-top: 1.5rem;
    }

    .roi-bar-section {
        padding: 2rem 1.5rem;
    }

    .roi-metrics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .design-systems-section {
        padding: 2rem 1.5rem;
    }

    /* Design Systems Visuals Responsive - Tablet */
    .visual-chaos-order {
        gap: 2rem;
        padding: 2rem;
    }

    .visual-pipeline {
        gap: 1.5rem;
        padding: 2rem;
    }

    .pipeline-svg-icon {
        width: 80px;
        /* Maintain aspect ratio */
    }

    .pipeline-svg {
        height: 80px;
    }
}

/* Blog Pages Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .blog-listing {
        padding: 0 1.5rem 4rem;
    }

    .blog-post-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .blog-post-content {
        padding: 0 1.5rem 4rem;
    }

    .blog-post-body h2 {
        font-size: 32px;
    }

    .blog-post-body h3 {
        font-size: 28px;
    }
}

/* iPhone SE and smaller devices (375px) */
@media (max-width: 375px) {
    /* Chaos to Order Visual - Prevent overflow */
    .visual-chaos-order {
        padding: 1rem 0.75rem; /* Add horizontal padding to give text room */
        gap: 1rem;
        overflow: visible; /* Allow text to be fully visible */
    }

    .visual-chaos-side,
    .visual-order-side {
        min-width: 0; /* Allow flex items to shrink */
        overflow: visible; /* Allow text to be fully visible */
        padding: 0 0.5rem; /* Add horizontal padding for text */
    }

    .visual-title {
        font-size: 10px !important; /* Even smaller text to prevent cutoff */
        line-height: 1.4;
        word-break: break-word; /* Allow word breaking if needed */
        padding: 0 0.5rem; /* Add padding to text */
        white-space: normal; /* Allow text wrapping */
        max-width: 100%;
        box-sizing: border-box;
    }

    .visual-svg {
        max-width: 100%;
        width: 100%;
    }

    /* Pipeline Visual - Make text readable */
    .visual-pipeline {
        padding: 1rem;
        gap: 1rem;
    }

    .pipeline-svg {
        height: 100px !important; /* Increased height for better visibility */
    }

    .pipeline-svg text {
        font-size: 18px !important; /* Larger text for readability */
        font-weight: bold;
    }

    /* Make particles more visible */
    .pipeline-svg circle.particle {
        filter: drop-shadow(0 0 8px currentColor) !important;
        opacity: 1 !important;
    }

    .pipeline-svg-icon {
        width: 60px; /* Smaller icons to make room for text */
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 5rem 0.5rem 2rem;
    }

    .blog-hero-content {
        padding: 0 0.5rem;
    }

    .blog-hero-content h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .blog-listing {
        padding: 0 0.5rem 3rem;
    }

    .blog-grid {
        gap: 1rem;
        padding: 0;
    }

    .blog-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .blog-post-hero {
        padding: 5rem 1rem 2rem;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-content {
        padding: 0 1rem 3rem;
    }

    .blog-post-body h2 {
        font-size: 28px;
    }

    .blog-post-body h3 {
        font-size: 24px;
    }
}

/* ========================================
   Workflow Slideshow Carousel Styles
   ======================================== */

.workflow-slideshow-section {
    padding: 6rem 0;
    background-color: var(--color-semantic-background-background-dark);
}

.workflow-slideshow-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.workflow-slideshow-header {
    text-align: center;
    margin-bottom: 4rem;
}

.workflow-slideshow-header .handoff-section-title {
    margin-bottom: 1.5rem;
}

.workflow-slideshow-header .handoff-section-copy {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* Download Buttons */
.workflow-download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.workflow-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid transparent;
}

.button-primary {
    background-color: var(--color-semantic-accent-accent-green);
    color: var(--color-semantic-text-text-light);
    border-color: var(--color-semantic-accent-accent-green);
}

.button-primary:hover {
    background-color: var(--color-semantic-accent-accent-green);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 185, 129, 0.3);
}

.button-secondary {
    background-color: transparent;
    color: var(--color-semantic-accent-accent-green);
    border-color: var(--color-semantic-accent-accent-green);
}

.button-secondary:hover {
    background-color: var(--color-semantic-accent-accent-green);
    color: var(--color-semantic-text-text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 185, 129, 0.3);
}

/* Carousel Wrapper */
.workflow-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
}

.workflow-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--color-semantic-background-background-elevated-dark);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.workflow-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.workflow-carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.workflow-slide-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

.workflow-slide-caption {
    margin-top: 1.5rem;
    color: var(--color-semantic-text-text-medium);
    text-align: center;
}

/* Carousel Navigation Buttons */
.workflow-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--color-semantic-background-background-light);
    border: 2px solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-semantic-text-text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.workflow-carousel-btn:hover {
    background-color: var(--color-semantic-accent-accent-green);
    border-color: var(--color-semantic-accent-accent-green);
    color: var(--color-semantic-text-text-light);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(18, 185, 129, 0.3);
}

.workflow-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.workflow-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.workflow-carousel-prev {
    left: -24px;
}

.workflow-carousel-next {
    right: -24px;
}

/* Carousel Indicators */
.workflow-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.workflow-carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-semantic-background-background-elevated-light);
    border: 2px solid var(--color-semantic-button-stroke-dark-default);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.workflow-carousel-indicator:hover {
    background-color: var(--color-semantic-accent-accent-green);
    border-color: var(--color-semantic-accent-accent-green);
    transform: scale(1.2);
}

.workflow-carousel-indicator.active {
    background-color: var(--color-semantic-accent-accent-green);
    border-color: var(--color-semantic-accent-accent-green);
    width: 24px;
    border-radius: 5px;
}

/* Slide Counter */
.workflow-carousel-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--color-semantic-text-text-medium);
}

.workflow-slide-current {
    font-weight: 700;
    color: var(--color-semantic-text-text-medium);
}

.workflow-slide-separator {
    color: var(--color-semantic-text-text-medium);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .workflow-carousel-prev {
        left: 10px;
    }

    .workflow-carousel-next {
        right: 10px;
    }

    .workflow-carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .workflow-slideshow-section {
        padding: 4rem 0;
    }

    .workflow-slideshow-container {
        padding: 0 1rem;
    }

    .workflow-slideshow-header {
        margin-bottom: 2.5rem;
    }

    .workflow-download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .workflow-download-btn {
        width: 100%;
        justify-content: center;
    }

    .workflow-carousel-slide {
        padding: 1rem;
    }

    .workflow-carousel-prev {
        left: 5px;
    }

    .workflow-carousel-next {
        right: 5px;
    }

    .workflow-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .workflow-carousel-indicators {
        gap: 0.375rem;
    }

    .workflow-carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .workflow-carousel-indicator.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .workflow-slideshow-section {
        padding: 3rem 0;
    }

    .workflow-slideshow-header .handoff-section-title {
        font-size: 32px;
    }

    .workflow-carousel-slide {
        padding: 0.5rem;
    }

    .workflow-slide-caption {
        font-size: 14px;
    }
}

/* Image Lightbox Modal */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-lightbox.active {
    display: flex !important;
}

.image-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    cursor: default;
}

.image-lightbox-content video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.image-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s ease;
    z-index: 10001;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Make images clickable */
.handoff-section-image,
.handoff-image-container img,
.flowchart-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.handoff-section-image:hover,
.handoff-image-container img:hover,
.flowchart-image:hover {
    opacity: 0.9;
}

/* E-Commerce Lab Two-Column Layout */
.ecommerce-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.ecommerce-two-column.ecommerce-reverse {
    grid-template-columns: 1fr 1fr;
}

.ecommerce-two-column .ecommerce-text-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ecommerce-two-column .ecommerce-image-column {
    display: flex;
    flex-direction: column;
}

.ecommerce-two-column.ecommerce-reverse .ecommerce-image-column {
    order: -1;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .ecommerce-two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ecommerce-two-column.ecommerce-reverse .ecommerce-image-column {
        order: 0;
    }
}

/* Web Architecture Grid */
.web-architecture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.web-architecture-card {
    background: var(--color-semantic-background-background-elevated-dark);
    border: 1px solid var(--color-semantic-button-stroke-dark-default);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.web-architecture-card[data-video],
.web-architecture-card[data-lightbox-image] {
    cursor: pointer;
}

.web-architecture-card[data-video]:hover,
.web-architecture-card[data-lightbox-image]:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px rgba(105, 105, 111, 0.2);
}

/* Responsive: Web Architecture Grid */
@media (max-width: 1024px) {
    .web-architecture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .web-architecture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* SunGate Artifacts Grid */
.sungate-artifacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.sungate-artifacts .handoff-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.sungate-artifacts .handoff-section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive: SunGate Artifacts */
@media (max-width: 1024px) {
    .sungate-artifacts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .sungate-artifacts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Toast Component */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    min-width: 320px;
    max-width: 480px;
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease-out;
    box-shadow: 
        0px 11px 15px rgba(107, 112, 117, 0.5),
        0px 9px 46px rgba(107, 112, 117, 0.5),
        0px 24px 38px rgba(107, 112, 117, 0.5);
}

.toast.toast-exit {
    animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-success {
    background-color: var(--color-semantic-accent-accent-green);
}

.toast-error {
    background-color: var(--color-semantic-accent-accent-purple-light);
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-semantic-text-text-dark);
}

.toast-success .toast-icon {
    background-color: var(--color-semantic-accent-accent-green);
}

.toast-error .toast-icon {
    background-color: var(--color-semantic-accent-accent-purple);
}

.toast-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-semantic-text-text-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toast-message {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: var(--color-semantic-text-text-dark);
}

.toast-detail {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--color-semantic-text-text-dark);
}

.toast-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 0.7;
}

.toast-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-semantic-text-text-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}
