/* Homepage — Ehsami Digital Engineering */
.eds-home {
    overflow: clip;
}

.eds-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--eds-teal-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.eds-section-kicker > i {
    width: 26px;
    height: 2px;
    background: currentColor;
}

.eds-section-kicker--inverse {
    color: rgba(255, 255, 255, 0.78);
}

.eds-section-heading {
    max-width: 820px;
    margin-bottom: 36px;
}

.eds-section-heading h2 {
    margin: 13px 0 0;
    color: var(--eds-brand-800);
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    line-height: 1.55;
}

.eds-section-heading > p,
.eds-section-heading--split > p {
    margin: 16px 0 0;
    color: var(--eds-text-secondary);
    font-size: 1rem;
    line-height: 2;
}

.eds-section-heading--split {
    display: grid;
    max-width: none;
    gap: 20px;
}

.eds-section-heading--split h2 {
    max-width: 760px;
}

.eds-section-heading--split > p {
    max-width: 530px;
}

/* Hero */
.eds-home-hero {
    position: relative;
    padding-block: 72px 58px;
    background:
        radial-gradient(circle at 82% 12%, rgba(50, 184, 197, 0.11), transparent 25%),
        linear-gradient(rgba(8, 124, 132, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 124, 132, 0.045) 1px, transparent 1px),
        var(--eds-surface);
    background-size: auto, 32px 32px, 32px 32px, auto;
}

.eds-home-hero::after {
    position: absolute;
    inset-block: 0;
    inset-inline-end: 0;
    width: min(36vw, 560px);
    border-inline-start: 1px solid rgba(8, 124, 132, 0.08);
    background: linear-gradient(135deg, rgba(8, 124, 132, 0.025), rgba(244, 122, 32, 0.025));
    content: "";
    pointer-events: none;
}

.eds-home-hero__mesh {
    position: absolute;
    inset-block-start: 54px;
    inset-inline-end: clamp(20px, 4vw, 72px);
    width: 110px;
    height: 110px;
    border: 1px solid rgba(8, 124, 132, 0.16);
    border-radius: 50%;
    opacity: 0.72;
}

.eds-home-hero__mesh::before,
.eds-home-hero__mesh::after {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(8, 124, 132, 0.16);
    border-radius: 50%;
    content: "";
}

.eds-home-hero__mesh::after {
    inset: 47px -18px auto;
    height: 1px;
    border: 0;
    background: rgba(8, 124, 132, 0.18);
}

.eds-home-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 48px;
}

.eds-home-hero h1 {
    max-width: 850px;
    margin: 18px 0 20px;
    color: var(--eds-brand-800);
    font-size: clamp(2.35rem, 6.2vw, 4.65rem);
    font-weight: 850;
    line-height: 1.34;
    letter-spacing: -0.035em;
}

.eds-home-hero h1 em {
    position: relative;
    color: var(--eds-teal-700);
    font-style: normal;
    white-space: nowrap;
}

.eds-home-hero h1 em::after {
    position: absolute;
    inset: auto 0 5px;
    z-index: -1;
    height: 10px;
    background: rgba(50, 184, 197, 0.14);
    content: "";
}

.eds-home-hero__lead {
    max-width: 750px;
    margin: 0;
    color: var(--eds-text-secondary);
    font-size: clamp(1rem, 2vw, 1.16rem);
    line-height: 2.1;
}

.eds-home-hero__actions {
    margin-top: 30px;
}

.eds-home-hero__proof {
    display: grid;
    margin: 30px 0 0;
    padding: 23px 0 0;
    border-top: 1px solid var(--eds-border);
    gap: 11px;
    list-style: none;
}

.eds-home-hero__proof li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--eds-text-secondary);
    font-size: 0.87rem;
}

.eds-home-hero__proof .eds-icon {
    width: 18px;
    height: 18px;
    color: var(--eds-teal-600);
}

/* Architecture visual in hero */
.eds-system-blueprint {
    position: relative;
    padding: 14px;
    border: 1px solid rgba(11, 29, 51, 0.15);
    border-radius: var(--eds-radius-xl);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 36px 90px rgba(6, 17, 30, 0.14);
}

.eds-system-blueprint::before {
    position: absolute;
    z-index: -1;
    inset: 26px -18px -18px 26px;
    border: 1px solid rgba(8, 124, 132, 0.15);
    border-radius: var(--eds-radius-xl);
    content: "";
}

.eds-system-blueprint__topbar,
.eds-system-blueprint__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 6px 16px;
    color: var(--eds-text-muted);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.eds-system-blueprint__topbar span,
.eds-system-blueprint__status span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.eds-system-blueprint__topbar i,
.eds-system-blueprint__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--eds-teal-600);
    box-shadow: 0 0 0 5px rgba(8, 124, 132, 0.1);
}

.eds-system-blueprint__canvas {
    position: relative;
    display: grid;
    min-height: 420px;
    align-content: center;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--eds-border);
    border-radius: 18px;
    background:
        linear-gradient(rgba(11, 29, 51, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 29, 51, 0.045) 1px, transparent 1px),
        #f8fafb;
    background-size: 24px 24px;
}

.eds-system-blueprint__canvas::before,
.eds-system-blueprint__canvas::after {
    position: absolute;
    border: 1px dashed rgba(8, 124, 132, 0.28);
    border-radius: 50%;
    content: "";
}

.eds-system-blueprint__canvas::before {
    inset-block-start: -46px;
    inset-inline-end: -38px;
    width: 160px;
    height: 160px;
}

.eds-system-blueprint__canvas::after {
    inset-block-end: -36px;
    inset-inline-start: -44px;
    width: 130px;
    height: 130px;
}

.eds-system-node {
    position: relative;
    z-index: 2;
    display: grid;
    padding: 20px;
    border: 1px solid var(--eds-border-strong);
    border-radius: var(--eds-radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--eds-shadow-sm);
}

.eds-system-node small {
    color: var(--eds-text-muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.eds-system-node strong {
    margin-top: 4px;
    color: var(--eds-brand-800);
    font-size: 1.05rem;
}

.eds-system-node span {
    margin-top: 4px;
    color: var(--eds-text-secondary);
    font-size: 0.72rem;
    direction: ltr;
    text-align: right;
}

.eds-system-node--content {
    border-inline-start: 4px solid var(--eds-teal-600);
}

.eds-system-node--platform {
    border-inline-start: 4px solid var(--eds-orange-500);
}

.eds-system-connector {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 7px 38px;
}

.eds-system-connector span {
    height: 1px;
    border-top: 1px dashed rgba(8, 124, 132, 0.5);
}

.eds-system-connector i {
    padding: 3px 8px;
    border: 1px solid rgba(8, 124, 132, 0.3);
    border-radius: 99px;
    background: var(--eds-teal-50);
    color: var(--eds-teal-700);
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.eds-system-blueprint__satellites {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.eds-system-blueprint__satellites span {
    padding: 7px 9px;
    border: 1px solid var(--eds-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--eds-text-secondary);
    font-size: 0.66rem;
    font-weight: 650;
    text-align: center;
}

.eds-system-blueprint__status {
    padding: 15px 6px 4px;
}

.eds-system-blueprint__status b {
    color: var(--eds-orange-500);
    font-size: 0.62rem;
}

/* Capability strip */
.eds-home-capabilities {
    border-block: 1px solid var(--eds-border);
    background: var(--eds-canvas);
}

.eds-home-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.eds-home-capabilities__grid span {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-inline-end: 1px solid var(--eds-border);
    border-block-end: 1px solid var(--eds-border);
    color: var(--eds-text-secondary);
    font-size: 0.74rem;
    font-weight: 700;
    text-align: center;
}

.eds-home-capabilities__grid span:nth-child(2n) {
    border-inline-end: 0;
}

/* Problem */
.eds-home-problem {
    background: var(--eds-surface);
}

.eds-problem-grid {
    display: grid;
    gap: 14px;
}

.eds-problem-grid article {
    position: relative;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--eds-border);
    border-radius: var(--eds-radius-lg);
    background: var(--eds-surface);
}

.eds-problem-grid article::after {
    position: absolute;
    inset-block-start: -22px;
    inset-inline-end: -22px;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(8, 124, 132, 0.12);
    border-radius: 50%;
    content: "";
}

.eds-problem-grid article > span {
    color: var(--eds-orange-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.eds-problem-grid h3 {
    margin: 12px 0 8px;
    color: var(--eds-brand-800);
    font-size: 1.08rem;
}

.eds-problem-grid p {
    margin: 0;
    color: var(--eds-text-secondary);
    font-size: 0.88rem;
    line-height: 2;
}

/* Solutions */
.eds-home-solutions {
    border-block: 1px solid var(--eds-border);
    background: var(--eds-canvas);
}

.eds-solution-grid {
    display: grid;
    gap: 18px;
}

.eds-solution-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--eds-border);
    border-radius: var(--eds-radius-xl);
    background: var(--eds-surface);
    box-shadow: 0 12px 40px rgba(11, 29, 51, 0.045);
}

.eds-solution-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--eds-teal-600);
    content: "";
}

.eds-solution-card--orange::before {
    background: var(--eds-orange-500);
}

.eds-solution-card--cyan::before {
    background: var(--eds-cyan-500);
}

.eds-solution-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.eds-solution-card__index {
    color: var(--eds-orange-500);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.eds-solution-card header small {
    color: var(--eds-text-muted);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.eds-solution-card h3 {
    margin: 28px 0 9px;
    color: var(--eds-brand-800);
    font-size: 1.45rem;
}

.eds-solution-card > p {
    margin: 0;
    color: var(--eds-text-secondary);
    font-size: 0.9rem;
    line-height: 2;
}

.eds-solution-card ul {
    display: grid;
    margin: 24px 0 26px;
    padding: 20px 0 0;
    border-top: 1px solid var(--eds-border);
    gap: 10px;
    list-style: none;
}

.eds-solution-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--eds-text-secondary);
    font-size: 0.8rem;
}

.eds-solution-card li .eds-icon {
    width: 17px;
    height: 17px;
    margin-top: 6px;
    color: var(--eds-teal-600);
}

.eds-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--eds-teal-700);
    font-size: 0.84rem;
    font-weight: 750;
}

.eds-card-link .eds-icon {
    width: 17px;
    height: 17px;
    transition: transform var(--eds-duration-fast) var(--eds-ease-standard);
}

.eds-card-link:hover {
    text-decoration: none;
}

.eds-card-link:hover .eds-icon {
    transform: translateX(-4px);
}

/* Services */
.eds-service-grid {
    display: grid;
    gap: 12px;
}

.eds-service-card {
    position: relative;
    min-height: 245px;
    padding: 24px;
    border: 1px solid var(--eds-border);
    border-radius: var(--eds-radius-lg);
    background: var(--eds-surface);
    transition:
        border-color var(--eds-duration-fast) var(--eds-ease-standard),
        transform var(--eds-duration-fast) var(--eds-ease-standard),
        box-shadow var(--eds-duration-fast) var(--eds-ease-standard);
}

.eds-service-card:hover {
    border-color: rgba(8, 124, 132, 0.32);
    box-shadow: var(--eds-shadow-sm);
    transform: translateY(-3px);
}

.eds-service-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(8, 124, 132, 0.2);
    border-radius: 13px;
    background: var(--eds-teal-50);
    color: var(--eds-teal-700);
}

.eds-service-card h3 {
    margin: 20px 0 7px;
    color: var(--eds-brand-800);
    font-size: 1.03rem;
}

.eds-service-card p {
    margin: 0;
    color: var(--eds-text-secondary);
    font-size: 0.82rem;
    line-height: 1.95;
}

.eds-service-card > a {
    position: absolute;
    inset-block-end: 22px;
    inset-inline-end: 22px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--eds-border);
    border-radius: 50%;
    color: var(--eds-brand-800);
}

.eds-service-card > a:hover {
    border-color: var(--eds-teal-600);
    background: var(--eds-teal-50);
    color: var(--eds-teal-700);
    text-decoration: none;
}

.eds-service-card > a .eds-icon {
    width: 16px;
    height: 16px;
}

/* Architecture */
.eds-home-architecture {
    position: relative;
    padding-block: 78px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        var(--eds-brand-950);
    background-size: 32px 32px;
    color: rgba(255, 255, 255, 0.78);
}

.eds-home-architecture::before {
    position: absolute;
    inset-block-start: -180px;
    inset-inline-end: -120px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(50, 184, 197, 0.16);
    border-radius: 50%;
    content: "";
}

.eds-home-architecture__grid {
    position: relative;
    display: grid;
    align-items: center;
    gap: 52px;
}

.eds-home-architecture h2 {
    margin: 16px 0 16px;
    color: #fff;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    line-height: 1.55;
}

.eds-home-architecture__content > p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.98rem;
    line-height: 2.05;
}

.eds-button--light {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.eds-button--light:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
}

.eds-architecture-stack {
    display: grid;
    gap: 12px;
}

.eds-architecture-stack article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--eds-radius-lg);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(8px);
}

.eds-architecture-stack article > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(50, 184, 197, 0.35);
    border-radius: 50%;
    color: var(--eds-cyan-500);
    font-size: 0.66rem;
    font-weight: 850;
}

.eds-architecture-stack div {
    display: grid;
}

.eds-architecture-stack small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.eds-architecture-stack strong {
    margin-top: 2px;
    color: #fff;
    font-size: 1.08rem;
    direction: ltr;
    text-align: right;
}

.eds-architecture-stack p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    line-height: 1.8;
}

/* Work */
.eds-home-work {
    background: var(--eds-surface);
}

.eds-work-grid {
    display: grid;
    gap: 20px;
}

.eds-work-card {
    overflow: hidden;
    border: 1px solid var(--eds-border);
    border-radius: var(--eds-radius-xl);
    background: var(--eds-surface);
}

.eds-work-card__visual {
    position: relative;
    display: grid;
    min-height: 260px;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--eds-border);
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        var(--eds-brand-800);
    background-size: 26px 26px;
}

.eds-work-card__visual--2 {
    background-color: var(--eds-teal-700);
}

.eds-work-card__visual--3 {
    background-color: #4b1721;
}

.eds-work-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eds-work-card__visual > small {
    position: absolute;
    inset-block-start: 18px;
    inset-inline-start: 18px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.eds-work-card__screen {
    position: relative;
    width: min(76%, 350px);
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
    transform: perspective(700px) rotateX(4deg) rotateY(-7deg);
}

.eds-work-card__screen::before {
    position: absolute;
    inset: 12px;
    border-radius: 7px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.84) 28%, transparent 28%),
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        rgba(255, 255, 255, 0.08);
    background-size: auto, 100% 20px, auto;
    content: "";
}

.eds-work-card__screen i {
    position: absolute;
    z-index: 2;
    inset-inline-end: 22px;
    width: 42%;
    height: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.78);
}

.eds-work-card__screen i:nth-child(1) { inset-block-start: 28px; }
.eds-work-card__screen i:nth-child(2) { inset-block-start: 58px; width: 32%; opacity: 0.56; }
.eds-work-card__screen i:nth-child(3) { inset-block-end: 28px; height: 48px; opacity: 0.34; }

.eds-work-card__body {
    padding: 24px;
}

.eds-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.eds-tag-list span {
    padding: 4px 8px;
    border-radius: 99px;
    background: var(--eds-canvas);
    color: var(--eds-text-muted);
    font-size: 0.64rem;
    font-weight: 700;
    direction: ltr;
}

.eds-work-card h3 {
    margin: 15px 0 7px;
    font-size: 1.18rem;
}

.eds-work-card h3 a {
    color: var(--eds-brand-800);
}

.eds-work-card h3 a:hover {
    color: var(--eds-teal-700);
    text-decoration: none;
}

.eds-work-card p {
    margin: 0;
    color: var(--eds-text-secondary);
    font-size: 0.85rem;
    line-height: 2;
}

/* Process */
.eds-home-process {
    border-block: 1px solid var(--eds-border);
    background: var(--eds-canvas);
}

.eds-process-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0;
    list-style: none;
    counter-reset: process;
}

.eds-process-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid var(--eds-border);
}

.eds-process-list li:last-child {
    border-bottom: 1px solid var(--eds-border);
}

.eds-process-list > li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(8, 124, 132, 0.25);
    border-radius: 50%;
    background: var(--eds-teal-50);
    color: var(--eds-teal-700);
    font-size: 0.66rem;
    font-weight: 850;
}

.eds-process-list h3 {
    margin: 0 0 4px;
    color: var(--eds-brand-800);
    font-size: 1.02rem;
}

.eds-process-list p {
    margin: 0;
    color: var(--eds-text-secondary);
    font-size: 0.83rem;
    line-height: 1.9;
}

/* Magazine */
.eds-magazine-grid {
    display: grid;
    gap: 16px;
}

.eds-magazine-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--eds-border);
    border-radius: var(--eds-radius-lg);
    background: var(--eds-surface);
}

.eds-magazine-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--eds-text-muted);
    font-size: 0.67rem;
}

.eds-magazine-card__meta span {
    color: var(--eds-teal-700);
    font-weight: 750;
}

.eds-magazine-card h3 {
    margin: 18px 0 8px;
    font-size: 1.12rem;
    line-height: 1.75;
}

.eds-magazine-card h3 a {
    color: var(--eds-brand-800);
}

.eds-magazine-card h3 a:hover {
    color: var(--eds-teal-700);
    text-decoration: none;
}

.eds-magazine-card > p {
    margin: 0 0 24px;
    color: var(--eds-text-secondary);
    font-size: 0.82rem;
    line-height: 1.95;
}

/* CTA */
.eds-home-cta {
    padding-block: 24px 80px;
    background: var(--eds-surface);
}

.eds-home-cta__panel {
    position: relative;
    display: grid;
    gap: 28px;
    padding: 34px;
    overflow: hidden;
    border-radius: var(--eds-radius-xl);
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        var(--eds-brand-800);
    background-size: 28px 28px;
    color: #fff;
}

.eds-home-cta__panel::after {
    position: absolute;
    inset-block-start: -100px;
    inset-inline-end: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(50, 184, 197, 0.2);
    border-radius: 50%;
    content: "";
}

.eds-home-cta h2 {
    position: relative;
    z-index: 1;
    margin: 14px 0 9px;
    max-width: 780px;
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.45rem);
    line-height: 1.55;
}

.eds-home-cta p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.9rem;
    line-height: 2;
}

.eds-home-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.eds-button--accent {
    border-color: var(--eds-orange-500);
    background: var(--eds-orange-500);
    color: #fff;
}

.eds-button--accent:hover {
    border-color: #e66a12;
    background: #e66a12;
    box-shadow: 0 12px 34px rgba(244, 122, 32, 0.24);
}

.eds-home-cta__actions > a:not(.eds-button) {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 650;
}

/* Responsive */
@media (min-width: 640px) {
    .eds-home-capabilities__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eds-home-capabilities__grid span:nth-child(2n) {
        border-inline-end: 1px solid var(--eds-border);
    }

    .eds-home-capabilities__grid span:nth-child(3n) {
        border-inline-end: 0;
    }

    .eds-service-grid,
    .eds-magazine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .eds-home-hero {
        padding-block: 96px 72px;
    }

    .eds-home-hero__proof {
        grid-template-columns: repeat(3, auto);
        justify-content: start;
        gap: 22px;
    }

    .eds-problem-grid,
    .eds-solution-grid,
    .eds-work-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eds-process-list {
        grid-template-columns: repeat(2, 1fr);
        border-block: 1px solid var(--eds-border);
    }

    .eds-process-list li,
    .eds-process-list li:last-child {
        padding: 28px;
        border: 0;
        border-inline-end: 1px solid var(--eds-border);
        border-block-end: 1px solid var(--eds-border);
    }

    .eds-process-list li:nth-child(2n) {
        border-inline-end: 0;
    }

    .eds-process-list li:nth-last-child(-n + 2) {
        border-block-end: 0;
    }

    .eds-home-cta__panel {
        padding: 48px;
    }
}

@media (min-width: 980px) {
    .eds-section-heading--split {
        grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
        align-items: end;
        justify-content: space-between;
    }

    .eds-section-heading--split > .eds-text-link {
        justify-self: end;
        align-self: end;
        margin-bottom: 8px;
    }

    .eds-home-hero__grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(390px, 0.65fr);
        gap: 74px;
    }

    .eds-home-capabilities__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .eds-home-capabilities__grid span,
    .eds-home-capabilities__grid span:nth-child(2n),
    .eds-home-capabilities__grid span:nth-child(3n) {
        border-inline-end: 1px solid var(--eds-border);
        border-block-end: 0;
    }

    .eds-home-capabilities__grid span:last-child {
        border-inline-end: 0;
    }

    .eds-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eds-home-architecture__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
        gap: 76px;
    }

    .eds-magazine-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eds-home-cta__panel {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .eds-home-cta__actions {
        max-width: 280px;
        justify-content: flex-start;
    }
}

@media (min-width: 1180px) {
    .eds-home-hero h1 {
        font-size: 4.35rem;
    }

    .eds-system-blueprint {
        transform: translateY(12px);
    }

    .eds-work-card:first-child {
        transform: translateY(22px);
    }

    .eds-work-card:last-child {
        transform: translateY(44px);
    }

    .eds-home-work {
        padding-bottom: 132px;
    }
}

@media (max-width: 479px) {
    .eds-home-hero h1 {
        font-size: 2.25rem;
    }

    .eds-home-hero__actions .eds-button {
        width: 100%;
    }

    .eds-system-blueprint__canvas {
        min-height: 390px;
        padding: 18px;
    }

    .eds-system-node {
        padding: 17px;
    }

    .eds-system-connector {
        padding-inline: 12px;
    }

    .eds-section-heading h2 {
        font-size: 1.72rem;
    }
}

/* Stage 04 — responsive and visual polish */
.eds-section-heading {
    margin-bottom: clamp(30px, 4vw, 46px);
}

.eds-home-cta__panel {
    box-shadow: 0 28px 72px rgba(6, 17, 30, 0.18);
}

.eds-work-card,
.eds-solution-card,
.eds-magazine-card {
    transition:
        transform var(--eds-duration-standard) var(--eds-ease-standard),
        border-color var(--eds-duration-standard) var(--eds-ease-standard),
        box-shadow var(--eds-duration-standard) var(--eds-ease-standard);
}

.eds-work-card:hover,
.eds-solution-card:hover,
.eds-magazine-card:hover {
    border-color: rgba(8, 124, 132, 0.28);
    box-shadow: 0 20px 52px rgba(11, 29, 51, 0.08);
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .eds-home-hero {
        padding-block: 46px 42px;
    }

    .eds-home-hero::after {
        width: 48vw;
        opacity: 0.65;
    }

    .eds-home-hero__mesh {
        inset-block-start: 24px;
        inset-inline-end: 14px;
        width: 78px;
        height: 78px;
        opacity: 0.46;
    }

    .eds-home-hero__grid {
        gap: 34px;
    }

    .eds-home-hero h1 {
        max-width: 620px;
        margin: 14px 0 16px;
        font-size: clamp(2rem, 9.4vw, 2.5rem);
        line-height: 1.45;
        letter-spacing: -0.025em;
    }

    .eds-home-hero h1 em {
        white-space: normal;
    }

    .eds-home-hero h1 em::after {
        inset-block-end: 3px;
        height: 7px;
    }

    .eds-home-hero__lead {
        font-size: 0.96rem;
        line-height: 1.95;
    }

    .eds-home-hero__actions {
        margin-top: 24px;
    }

    .eds-home-hero__actions .eds-button {
        min-height: 50px;
    }

    .eds-home-hero__proof {
        margin-top: 24px;
        padding-top: 18px;
        gap: 10px;
    }

    .eds-home-hero__proof li {
        align-items: flex-start;
        font-size: 0.8rem;
        line-height: 1.8;
    }

    .eds-home-hero__proof .eds-icon {
        margin-top: 5px;
    }

    .eds-system-blueprint {
        padding: 10px;
        border-radius: 20px;
        box-shadow: 0 24px 56px rgba(6, 17, 30, 0.12);
    }

    .eds-system-blueprint::before {
        inset: 16px -8px -9px 16px;
        border-radius: 20px;
    }

    .eds-system-blueprint__topbar,
    .eds-system-blueprint__status {
        padding-inline: 5px;
        font-size: 0.56rem;
    }

    .eds-system-blueprint__canvas {
        min-height: 326px;
        padding: 16px;
        border-radius: 15px;
    }

    .eds-system-node {
        padding: 15px;
    }

    .eds-system-node strong {
        font-size: 0.98rem;
    }

    .eds-system-connector {
        padding-inline: 10px;
    }

    .eds-system-blueprint__satellites {
        margin-top: 14px;
        gap: 6px;
    }

    .eds-system-blueprint__satellites span {
        padding: 6px 7px;
        font-size: 0.62rem;
    }

    .eds-home-capabilities__grid span {
        min-height: 54px;
        padding: 8px 6px;
        font-size: 0.68rem;
        line-height: 1.65;
    }

    .eds-section-heading {
        margin-bottom: 26px;
    }

    .eds-section-heading h2 {
        margin-top: 10px;
        font-size: clamp(1.55rem, 7.2vw, 1.85rem);
        line-height: 1.62;
    }

    .eds-section-heading > p,
    .eds-section-heading--split > p {
        margin-top: 12px;
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .eds-section-heading--split {
        gap: 12px;
    }

    .eds-section-heading--split > .eds-text-link {
        width: max-content;
    }

    .eds-problem-grid {
        gap: 12px;
    }

    .eds-problem-grid article {
        padding: 22px;
    }

    .eds-problem-grid h3 {
        font-size: 1rem;
        line-height: 1.75;
    }

    .eds-problem-grid p {
        font-size: 0.82rem;
        line-height: 1.9;
    }

    .eds-solution-grid {
        gap: 14px;
    }

    .eds-solution-card {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .eds-solution-card h3 {
        margin-top: 22px;
        font-size: 1.3rem;
    }

    .eds-solution-card > p {
        font-size: 0.84rem;
        line-height: 1.9;
    }

    .eds-solution-card ul {
        margin-block: 20px 22px;
        padding-top: 16px;
        gap: 8px;
    }

    .eds-solution-card li {
        font-size: 0.76rem;
        line-height: 1.8;
    }

    .eds-service-grid {
        gap: 10px;
    }

    .eds-service-card {
        min-height: 0;
        padding: 20px 20px 62px;
    }

    .eds-service-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .eds-service-card h3 {
        margin-top: 16px;
        font-size: 0.98rem;
    }

    .eds-service-card p {
        font-size: 0.78rem;
        line-height: 1.85;
    }

    .eds-service-card > a {
        inset-block-end: 18px;
        inset-inline-end: 20px;
    }

    .eds-home-architecture {
        padding-block: 58px;
    }

    .eds-home-architecture__grid {
        gap: 34px;
    }

    .eds-home-architecture h2 {
        margin-block: 13px 12px;
        font-size: clamp(1.65rem, 7.6vw, 2rem);
        line-height: 1.58;
    }

    .eds-home-architecture__content > p {
        margin-bottom: 22px;
        font-size: 0.88rem;
        line-height: 1.95;
    }

    .eds-home-architecture .eds-button {
        width: 100%;
    }

    .eds-architecture-stack {
        gap: 9px;
    }

    .eds-architecture-stack article {
        grid-template-columns: 36px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .eds-architecture-stack article > span {
        width: 34px;
        height: 34px;
    }

    .eds-architecture-stack strong {
        font-size: 0.98rem;
    }

    .eds-architecture-stack p {
        font-size: 0.7rem;
        line-height: 1.75;
    }

    .eds-work-grid {
        gap: 16px;
    }

    .eds-work-card__visual {
        min-height: 210px;
    }

    .eds-work-card__body {
        padding: 20px;
    }

    .eds-work-card h3 {
        margin-top: 13px;
        font-size: 1.06rem;
    }

    .eds-work-card p {
        font-size: 0.8rem;
        line-height: 1.88;
    }

    .eds-process-list li {
        grid-template-columns: 40px 1fr;
        gap: 14px;
        padding-block: 20px;
    }

    .eds-process-list > li > span {
        width: 38px;
        height: 38px;
    }

    .eds-process-list h3 {
        font-size: 0.96rem;
    }

    .eds-process-list p {
        font-size: 0.77rem;
        line-height: 1.82;
    }

    .eds-magazine-grid {
        gap: 12px;
    }

    .eds-magazine-card {
        padding: 21px;
    }

    .eds-magazine-card h3 {
        margin-top: 14px;
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .eds-magazine-card > p {
        margin-bottom: 18px;
        font-size: 0.78rem;
        line-height: 1.85;
    }

    .eds-home-cta {
        padding-block: 12px 58px;
    }

    .eds-home-cta__panel {
        gap: 22px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .eds-home-cta h2 {
        margin-top: 11px;
        font-size: clamp(1.5rem, 7vw, 1.82rem);
        line-height: 1.58;
    }

    .eds-home-cta p {
        font-size: 0.82rem;
        line-height: 1.9;
    }

    .eds-home-cta__actions {
        display: grid;
        width: 100%;
        gap: 13px;
    }

    .eds-home-cta__actions .eds-button {
        width: 100%;
        min-height: 51px;
    }

    .eds-home-cta__actions > a:not(.eds-button) {
        justify-self: center;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1179px) {
    .eds-home-hero h1 {
        font-size: clamp(3rem, 6.4vw, 3.75rem);
    }

    .eds-home-hero__grid {
        gap: 52px;
    }
}

@media (min-width: 1180px) {
    .eds-home-hero {
        padding-block: 88px 70px;
    }

    .eds-home-hero h1 {
        font-size: 4.18rem;
    }

    .eds-work-card:first-child {
        transform: translateY(14px);
    }

    .eds-work-card:last-child {
        transform: translateY(28px);
    }

    .eds-work-card:first-child:hover,
    .eds-work-card:last-child:hover {
        transform: translateY(8px);
    }

    .eds-home-work {
        padding-bottom: 116px;
    }

    .eds-home-cta {
        padding-block: 36px 96px;
    }

    .eds-home-cta__panel {
        min-height: 270px;
        padding: 54px;
    }
}


/* Stage 13 — curated magazine cards */
.eds-magazine-card--has-image {
    padding: 0;
    overflow: hidden;
}

.eds-magazine-card__visual {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--eds-color-canvas);
    border-bottom: 1px solid var(--eds-color-border);
}

.eds-magazine-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.eds-magazine-card--has-image:hover .eds-magazine-card__visual img {
    transform: scale(1.025);
}

.eds-magazine-card__content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.eds-magazine-card--has-image .eds-magazine-card__content {
    padding: 28px;
}

.eds-magazine-card__content .eds-card-link {
    margin-top: auto;
}

@media (max-width: 640px) {
    .eds-magazine-card--has-image .eds-magazine-card__content {
        padding: 22px;
    }
}


/* Stage 14 — screenshot-driven visual polish */
.eds-home-work {
    background:
        linear-gradient(rgba(8, 124, 132, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 124, 132, 0.025) 1px, transparent 1px),
        var(--eds-surface);
    background-size: 34px 34px;
}

.eds-work-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    box-shadow: 0 18px 46px rgba(11, 29, 51, 0.055);
}

.eds-work-card__visual {
    min-height: 276px;
}

.eds-work-card__visual-meta {
    position: absolute;
    z-index: 3;
    inset: 16px 16px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.eds-work-card__visual-meta small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.eds-work-card__visual-meta b {
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 99px;
    background: rgba(6, 17, 30, 0.3);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.eds-work-card--development .eds-work-card__visual-meta b {
    border-color: rgba(244, 122, 32, 0.48);
    background: rgba(244, 122, 32, 0.22);
}

.eds-work-card__browser {
    position: relative;
    display: block;
    width: min(82%, 390px);
    aspect-ratio: 16 / 10;
    padding-top: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
    transform: perspective(760px) rotateX(3deg) rotateY(-5deg);
}

.eds-work-card__browser > i {
    position: absolute;
    z-index: 2;
    inset-block-start: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(11, 29, 51, 0.22);
}

.eds-work-card__browser > i:nth-child(1) {
    inset-inline-start: 12px;
}

.eds-work-card__browser > i:nth-child(2) {
    inset-inline-start: 22px;
}

.eds-work-card__browser > i:nth-child(3) {
    inset-inline-start: 32px;
}

.eds-work-card__browser img {
    display: block;
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(11, 29, 51, 0.1);
    object-fit: cover;
    object-position: top center;
}

.eds-work-card__cover {
    display: flex;
    width: min(82%, 380px);
    align-items: center;
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.eds-work-card__cover > img {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.eds-work-card__cover > span {
    display: grid;
    gap: 7px;
    text-align: right;
}

.eds-work-card__cover strong {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.55;
}

.eds-work-card__cover em {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-style: normal;
    line-height: 1.8;
}

.eds-work-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.eds-work-card__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.eds-work-card__topline time {
    flex: 0 0 auto;
    color: var(--eds-text-muted);
    font-size: 0.67rem;
    font-weight: 750;
}

.eds-work-card__result {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--eds-border);
    color: var(--eds-text-secondary);
    font-size: 0.76rem;
    line-height: 1.8;
}

.eds-work-card__result .eds-icon {
    width: 17px;
    height: 17px;
    margin-top: 4px;
    flex: 0 0 17px;
    color: var(--eds-teal-600);
}

.eds-work-card__links {
    display: flex;
    margin-top: auto;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.eds-work-card__links > a:not(.eds-card-link) {
    color: var(--eds-text-muted);
    font-size: 0.71rem;
    font-weight: 650;
}

.eds-magazine-card__visual {
    position: relative;
    aspect-ratio: 16 / 9;
}

.eds-magazine-card__fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-content: center;
    justify-items: center;
    gap: 8px;
    padding: 24px;
    background:
        radial-gradient(circle at 75% 20%, rgba(50, 184, 197, 0.18), transparent 30%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        var(--eds-brand-800);
    background-size: auto, 24px 24px, 24px 24px, auto;
    color: #fff;
    text-align: center;
}

.eds-magazine-card__fallback img {
    width: 54px;
    height: 54px;
    margin-bottom: 5px;
    object-fit: contain;
}

.eds-magazine-card__fallback strong {
    font-size: 0.9rem;
    line-height: 1.65;
}

.eds-magazine-card__fallback small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.eds-process-list {
    position: relative;
}

@media (min-width: 768px) {
    .eds-process-list::before {
        position: absolute;
        z-index: 0;
        inset-block-start: 50%;
        inset-inline: 10%;
        border-top: 1px dashed rgba(8, 124, 132, 0.24);
        content: "";
        pointer-events: none;
    }

    .eds-process-list li {
        position: relative;
        z-index: 1;
        background: var(--eds-surface);
    }
}

@media (max-width: 767px) {
    .eds-home .eds-section {
        padding-block: 58px;
    }

    .eds-home-hero {
        padding-block: 38px 36px;
    }

    .eds-home-hero__grid {
        gap: 28px;
    }

    .eds-home-hero__content {
        min-width: 0;
    }

    .eds-home-hero__actions {
        gap: 10px;
    }

    .eds-home-capabilities__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eds-work-card__visual {
        min-height: 220px;
    }

    .eds-work-card__cover {
        width: calc(100% - 36px);
        gap: 14px;
        padding: 20px;
    }

    .eds-work-card__cover > img {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .eds-work-card__cover strong {
        font-size: 0.98rem;
    }

    .eds-work-card__links {
        align-items: flex-start;
        flex-direction: column;
    }

    .eds-magazine-card__visual {
        aspect-ratio: 16 / 8.8;
    }

    .eds-home-work,
    .eds-home-magazine {
        padding-block-start: 64px;
    }
}

@media (max-width: 430px) {
    .eds-home-hero h1 {
        font-size: clamp(1.86rem, 9.1vw, 2.2rem);
        line-height: 1.48;
    }

    .eds-home-hero__lead {
        font-size: 0.9rem;
    }

    .eds-section-kicker {
        font-size: 0.64rem;
    }

    .eds-work-card__visual-meta {
        inset: 12px 12px auto;
    }

    .eds-work-card__visual-meta small {
        max-width: 54%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
