/*
Theme Name: Seyon Solutions
Theme URI: https://seyonsolutions.local
Author: GitHub Copilot
Description: Custom local theme that recreates the Seyon Solutions marketing site.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: seyon-solutions
*/

@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@400;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --seyon-green: #054a22;
    --seyon-green-deep: #043018;
    --seyon-green-soft: #0e6b36;
    --seyon-cream: #f7f1e7;
    --seyon-sand: #efe5d7;
    --seyon-muted: #5a645f;
    --seyon-ink: #10261a;
    --seyon-border: rgba(5, 74, 34, 0.12);
    --seyon-shadow: 0 24px 70px rgba(4, 48, 24, 0.14);
    --seyon-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #10261a;
    font-family: 'Manrope', sans-serif;
    background: #f5f4f2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.seyon-site {
    min-height: 100vh;
}

.seyon-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.seyon-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.seyon-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.seyon-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
}

.seyon-brand img {
    width: 260px;
}

.seyon-brand__text {
    display: none;
}

.seyon-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.seyon-nav__item {
    position: relative;
}

.seyon-nav__item > a,
.seyon-nav__item > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 24px 0 18px;
    position: relative;
}

.seyon-nav__item.is-active > a,
.seyon-nav__item.is-active > span {
    color: #1976ff;
}

.seyon-nav__item.is-active > a::after,
.seyon-nav__item.is-active > span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: #1976ff;
}

.seyon-nav__caret {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.seyon-nav__item:hover .seyon-nav__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.seyon-nav__submenu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 310px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--seyon-border);
    border-radius: 18px;
    box-shadow: var(--seyon-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.seyon-nav__submenu a {
    padding: 10px 12px;
    border-radius: 12px;
}

.seyon-nav__submenu a:hover {
    background: rgba(5, 74, 34, 0.06);
}

.seyon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.seyon-button:hover {
    transform: translateY(-2px);
}

.seyon-button--primary {
    color: #fff;
    background: #1976ff;
    box-shadow: none;
}

.seyon-button--ghost {
    color: var(--seyon-green);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(5, 74, 34, 0.16);
}

.seyon-button--outline {
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.92);
}

.seyon-hero {
    position: relative;
    min-height: 388px;
    padding: 0;
    background: #054a22;
    overflow: hidden;
}

.seyon-hero__backdrop {
    position: absolute;
    inset: 0;
}

.seyon-hero__backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 86, 29, 0.88) 0%, rgba(3, 86, 29, 0.75) 35%, rgba(5, 115, 67, 0.3) 68%, rgba(0, 0, 0, 0.04) 100%);
}

.seyon-hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
}

.seyon-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 388px;
}

.seyon-hero__copy {
    max-width: 960px;
    padding: 18px 24px 22px;
    text-align: center;
}

.seyon-hero .seyon-title {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.12;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.18);
}

.seyon-title,
.seyon-section h2,
.seyon-page h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1.9rem, 3.5vw, 2.95rem);
    line-height: 1.14;
}

.seyon-subtitle {
    margin: 18px auto 0;
    max-width: none;
    font-size: clamp(0.88rem, 1.35vw, 1.05rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.seyon-hero .seyon-subtitle {
    font-size: clamp(1.12rem, 2vw, 1.38rem);
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.seyon-section {
    padding: 36px 0 0;
    padding-top: 72px;
}

.seyon-section__intro {
    max-width: 760px;
}

.seyon-section__eyebrow {
    margin-bottom: 12px;
    color: var(--seyon-green-soft);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.seyon-section h2,
.seyon-page h1 {
    font-size: clamp(2.3rem, 3vw, 3.5rem);
}

.seyon-heading--compact {
    font-size: clamp(1.85rem, 2.35vw, 2.65rem) !important;
    line-height: 1.2;
}

.seyon-section__lede,
.seyon-page__copy {
    margin: 16px 0 0;
    color: var(--seyon-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.seyon-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.seyon-hero .seyon-button {
    min-height: 46px;
    padding: 0 26px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.seyon-section__lede,
.seyon-page__copy {
    margin: 16px 0 0;
    color: var(--seyon-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.seyon-grid {
    display: grid;
    gap: 24px;
}

.seyon-grid--features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seyon-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seyon-card {
    position: relative;
    padding: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--seyon-border);
    border-radius: var(--seyon-radius);
    box-shadow: 0 12px 32px rgba(5, 74, 34, 0.08);
}

.seyon-card--feature {
    min-height: 100%;
}

.seyon-card--service {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.seyon-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 74, 34, 0.08), rgba(5, 74, 34, 0.16));
    border-radius: 20px;
}

.seyon-card__media--wide {
    width: 120px;
    height: 88px;
}

.seyon-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.seyon-card h3 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: 1.65rem;
    line-height: 1.1;
}

.seyon-card p {
    margin: 14px 0 0;
    color: var(--seyon-muted);
    line-height: 1.75;
}

.seyon-card__action {
    margin-top: 22px;
}

.seyon-split {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: center;
}

.seyon-split--salesforce {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
    gap: 18px;
    align-items: center;
}

.seyon-split--salesforce h2 {
    margin: 8px 0 0;
    font-size: clamp(2.3rem, 3.5vw, 3.4rem);
    line-height: 1.05;
}

.seyon-split--salesforce .seyon-section__lede {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.65;
}

.seyon-split--salesforce .seyon-checklist {
    gap: 14px;
    margin-top: 18px;
}

.seyon-split--salesforce .seyon-checklist__item {
    padding: 16px 18px;
}

.seyon-split--salesforce .seyon-hero__actions {
    gap: 12px;
    margin-top: 18px;
}

.seyon-split__media {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--seyon-shadow);
    background: #f4f8f6;
}

.seyon-split__media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
}

.seyon-split__media--salesforce {
    max-width: 420px;
    margin: 0 auto;
    padding: 10px;
    background: linear-gradient(180deg, #f7fdff 0%, #eaf9ff 100%);
}

.seyon-split__media--salesforce img {
    width: 100%;
    max-width: 392px;
    margin: 0 auto;
}

.seyon-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.seyon-checklist__item {
    padding: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--seyon-border);
    border-radius: 20px;
}

.seyon-checklist__item h4 {
    margin: 0 0 10px;
    color: var(--seyon-green);
    font-size: 1rem;
}

.seyon-checklist__item p {
    margin: 0;
    color: var(--seyon-muted);
    line-height: 1.65;
}

.seyon-portfolio,
.seyon-contact {
    padding: 42px;
    background: linear-gradient(135deg, rgba(5, 74, 34, 0.94), rgba(14, 107, 54, 0.9));
    color: #fff;
    border-radius: 32px;
    box-shadow: var(--seyon-shadow);
}

.seyon-portfolio h2,
.seyon-contact h2 {
    color: #fff;
}

.seyon-portfolio p,
.seyon-contact p,
.seyon-contact li,
.seyon-contact a {
    color: rgba(255, 255, 255, 0.88);
}

.seyon-contact__list {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    font-size: 1.04rem;
}

.seyon-contact__list strong {
    color: #fff;
}

.seyon-footer {
    padding: 24px 0 48px;
}

.seyon-footer__note {
    padding: 18px 22px;
    color: var(--seyon-green-deep);
    font-weight: 700;
    line-height: 1.7;
    background: linear-gradient(135deg, rgba(25, 118, 255, 0.08), rgba(5, 74, 34, 0.06));
    border: 1px solid rgba(25, 118, 255, 0.12);
    border-radius: 20px;
}

.seyon-footer__bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: var(--seyon-muted);
    font-size: 0.92rem;
}

.seyon-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.seyon-page {
    padding: 72px 0;
}

.seyon-page__panel {
    max-width: 860px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--seyon-border);
    border-radius: 28px;
    box-shadow: 0 12px 32px rgba(5, 74, 34, 0.08);
}

.seyon-page__meta {
    color: var(--seyon-green-soft);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.seyon-started-hero {
    padding: 88px 0 42px;
    background:
        radial-gradient(circle at top left, rgba(25, 118, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #f7faf8 0%, #edf5ef 100%);
}

.seyon-started-hero__inner {
    max-width: 900px;
    text-align: left;
}

.seyon-started-hero .seyon-page__meta,
.seyon-started-hero .seyon-page__copy,
.seyon-started-section .seyon-section__eyebrow,
.seyon-started-summary .seyon-section__eyebrow {
    color: var(--seyon-green-soft);
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.04;
}

.seyon-started-hero .seyon-page__meta,
.seyon-started-section .seyon-section__eyebrow,
.seyon-started-summary .seyon-section__eyebrow {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    line-height: 1.2;
}

.seyon-started-hero h1,
.seyon-started-hero h2 {
    margin: 12px 0 0;
    color: var(--seyon-green);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.04;
    max-width: 900px;
}

.seyon-started-hero p {
    max-width: 820px;
    margin: 20px 0 0;
    color: var(--seyon-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.seyon-started-section {
    padding: 28px 0 0;
}

.seyon-started-section__intro {
    max-width: none;
    margin-bottom: 30px;
}

.seyon-started-section__intro h2,
.seyon-started-summary h2 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    line-height: 1.2;
}

.seyon-started-section__intro p,
.seyon-started-summary p {
    margin: 16px 0 0;
    color: var(--seyon-muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.seyon-started-section__intro p {
    max-width: 980px;
}

.seyon-started-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.seyon-started-card {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 249, 0.96));
    border: 1px solid rgba(5, 74, 34, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(5, 74, 34, 0.08);
}

.seyon-started-card__heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.seyon-started-card__heading img {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    box-shadow: 0 10px 18px rgba(25, 118, 255, 0.12);
}

.seyon-started-card h3 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: 1.38rem;
    line-height: 1.22;
}

.seyon-started-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.seyon-started-card li {
    position: relative;
    padding-left: 22px;
    color: var(--seyon-muted);
    line-height: 1.7;
}

.seyon-started-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1976ff;
}

.seyon-started-section--summary {
    padding: 42px 0 72px;
}

.seyon-started-summary {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 34px 36px;
    background: linear-gradient(135deg, rgba(5, 74, 34, 0.95), rgba(14, 107, 54, 0.9));
    border-radius: 28px;
    box-shadow: var(--seyon-shadow);
}

.seyon-started-summary h2,
.seyon-started-summary p,
.seyon-started-summary .seyon-section__eyebrow {
    color: #fff;
}

.seyon-started-summary .seyon-section__eyebrow {
    opacity: 0.94;
}

.seyon-started-card__summary-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.seyon-started-card__summary-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.seyon-started-card__summary-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #9fd8f1;
}

.seyon-staffing-hero {
    padding: 88px 0 42px;
    background:
        radial-gradient(circle at top left, rgba(25, 118, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #f6faf8 0%, #edf5ef 100%);
}

.seyon-staffing-hero--compact {
    padding-bottom: 28px;
}

.seyon-staffing-hero__layout,
.seyon-staffing-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 30px;
    align-items: center;
}

.seyon-staffing-hero__content {
    max-width: 820px;
}

.seyon-staffing-hero__content h1 {
    margin: 12px 0 0;
    color: var(--seyon-green);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.55rem, 4vw, 4.3rem);
    font-weight: 800;
    line-height: 1.02;
}

.seyon-staffing-hero__content p {
    margin: 20px 0 0;
    color: var(--seyon-muted);
    font-size: 1.08rem;
    line-height: 1.82;
}

.seyon-staffing-hero__media,
.seyon-staffing-callout,
.seyon-staffing-model,
.seyon-staffing-subpage,
.seyon-staffing-phase,
.seyon-staffing-role,
.seyon-staffing-capability,
.seyon-staffing-industry {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 247, 0.98));
    border: 1px solid rgba(5, 74, 34, 0.1);
    box-shadow: 0 18px 44px rgba(5, 74, 34, 0.08);
}

.seyon-staffing-hero__media {
    overflow: hidden;
    min-height: 100%;
}

.seyon-staffing-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.seyon-staffing-section {
    padding: 18px 0 24px;
}

.seyon-staffing-section--alt {
    padding-top: 8px;
}

.seyon-staffing-models,
.seyon-staffing-subpages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.seyon-staffing-model,
.seyon-staffing-subpage,
.seyon-staffing-phase,
.seyon-staffing-role,
.seyon-staffing-callout {
    padding: 28px;
}

.seyon-staffing-model h3,
.seyon-staffing-subpage h3,
.seyon-staffing-phase h3,
.seyon-staffing-capability h3,
.seyon-staffing-industry h3 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: 1.45rem;
    line-height: 1.18;
}

.seyon-staffing-model p,
.seyon-staffing-subpage p,
.seyon-staffing-phase p,
.seyon-staffing-callout p,
.seyon-staffing-capability p,
.seyon-staffing-industry p {
    margin: 14px 0 0;
    color: var(--seyon-muted);
    line-height: 1.8;
}

.seyon-staffing-subpage .seyon-button {
    margin-top: 20px;
}

.seyon-staffing-industries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.seyon-staffing-industry {
    overflow: hidden;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
}

.seyon-staffing-industry img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.seyon-staffing-industry__content {
    padding: 24px 24px 26px;
}

.seyon-staffing-capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.seyon-staffing-capability {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    align-items: start;
}

.seyon-staffing-capability img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 10px 18px rgba(25, 118, 255, 0.12);
}

.seyon-staffing-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.seyon-staffing-list li,
.seyon-staffing-role {
    position: relative;
    padding-left: 22px;
    color: var(--seyon-muted);
    line-height: 1.75;
}

.seyon-staffing-list li::before,
.seyon-staffing-role::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1976ff;
}

.seyon-staffing-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.seyon-staffing-role {
    padding: 24px 24px 24px 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 247, 0.98));
}

.seyon-staffing-role::before {
    left: 20px;
}

.seyon-staffing-phases {
    display: grid;
    gap: 18px;
}

.seyon-staffing-phase {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.seyon-staffing-phase__number,
.seyon-staffing-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(25, 118, 255, 0.12);
    color: #155fc5;
    font-weight: 800;
}

.seyon-staffing-phase__number {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
}

.seyon-staffing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.seyon-staffing-badges span {
    padding: 10px 14px;
    justify-content: flex-start;
    font-size: 0.88rem;
}

.seyon-augment-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 52px;
    background:
        radial-gradient(circle at 16% 20%, rgba(132, 201, 82, 0.16), transparent 28%),
        radial-gradient(circle at 86% 24%, rgba(111, 180, 67, 0.18), transparent 26%),
        radial-gradient(circle at 74% 74%, rgba(111, 180, 67, 0.14), transparent 20%),
        linear-gradient(180deg, #fbfcf8 0%, #eef6e8 100%);
}

.seyon-augment-hero::before {
    content: '';
    position: absolute;
    inset: 5% auto auto 50%;
    width: min(48vw, 680px);
    height: min(34vw, 460px);
    background:
        radial-gradient(circle at 20% 50%, rgba(74, 140, 54, 0.12) 0 2px, transparent 3px),
        radial-gradient(circle at 50% 40%, rgba(74, 140, 54, 0.1) 0 2px, transparent 3px),
        radial-gradient(circle at 78% 44%, rgba(74, 140, 54, 0.12) 0 2px, transparent 3px),
        radial-gradient(circle at 35% 72%, rgba(74, 140, 54, 0.1) 0 2px, transparent 3px),
        radial-gradient(circle at 66% 74%, rgba(74, 140, 54, 0.1) 0 2px, transparent 3px);
    background-size: 22px 22px;
    opacity: 0.55;
    transform: translateX(-8%);
    pointer-events: none;
}

.seyon-augment-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
    gap: 34px;
    align-items: center;
}

.seyon-augment-hero__content {
    max-width: 650px;
}

.seyon-augment-hero__meta {
    color: #17833b;
    letter-spacing: 0.12em;
}

.seyon-augment-hero__content h1 {
    margin: 20px 0 0;
    color: #0b5f2b;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.95rem, 5vw, 5.15rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.03;
}

.seyon-augment-hero__divider {
    width: 60px;
    height: 4px;
    margin-top: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5ba83e, #2b7d2d);
}

.seyon-augment-hero__content p {
    max-width: 600px;
    margin: 18px 0 0;
    color: #425044;
    font-size: 1.1rem;
    line-height: 1.82;
}

.seyon-augment-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.seyon-augment-highlight {
    position: relative;
    display: grid;
    justify-items: start;
    gap: 14px;
    padding-right: 12px;
}

.seyon-augment-highlight:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, rgba(11, 95, 43, 0.05), rgba(11, 95, 43, 0.18), rgba(11, 95, 43, 0.05));
}

.seyon-augment-highlight__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #19853d;
}

.seyon-augment-highlight__icon svg,
.seyon-augment-node svg,
.seyon-augment-message__icon svg {
    width: 100%;
    height: 100%;
}

.seyon-augment-highlight h2 {
    margin: 0;
    color: #0b5f2b;
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.12;
}

.seyon-augment-visual {
    position: relative;
    min-height: 650px;
    padding-top: 26px;
}

.seyon-augment-visual__halo {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(120, 188, 78, 0.4);
    pointer-events: none;
}

.seyon-augment-visual__halo--outer {
    inset: 22px 18px 180px 18px;
}

.seyon-augment-visual__halo--inner {
    inset: 84px 90px 236px 90px;
    opacity: 0.72;
}

.seyon-augment-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    color: #19853d;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 239, 0.98));
    border: 8px solid rgba(174, 219, 146, 0.7);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(105, 165, 74, 0.16);
    z-index: 3;
}

.seyon-augment-node--top-left {
    top: 18px;
    left: 52px;
}

.seyon-augment-node--top-right {
    top: 28px;
    right: 38px;
}

.seyon-augment-node--mid-left {
    top: 242px;
    left: -8px;
}

.seyon-augment-node--mid-right {
    top: 292px;
    right: -6px;
}

.seyon-augment-visual__stage {
    position: absolute;
    inset: 122px 30px 112px 46px;
    display: grid;
    place-items: end center;
    border-radius: 50px;
    background:
        radial-gradient(circle at 50% 78%, rgba(138, 202, 87, 0.32), rgba(138, 202, 87, 0) 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(116, 180, 72, 0.04));
}

.seyon-augment-visual__stage::before {
    content: '';
    position: absolute;
    inset: auto 12% 6% 12%;
    height: 118px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 165, 74, 0.26) 0%, rgba(105, 165, 74, 0.08) 52%, rgba(105, 165, 74, 0) 76%);
    filter: blur(8px);
}

.seyon-augment-visual__stage::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 14%;
    width: min(86%, 470px);
    height: 136px;
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 237, 0.98)),
        linear-gradient(180deg, rgba(96, 158, 60, 0.18), rgba(96, 158, 60, 0.08));
    box-shadow:
        inset 0 -14px 0 rgba(97, 159, 60, 0.18),
        0 18px 36px rgba(82, 132, 58, 0.16);
    transform: translateX(-50%);
}

.seyon-augment-visual__stage img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(72%, 340px);
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(67, 116, 47, 0.14));
}

.seyon-augment-message {
    position: absolute;
    right: 0;
    bottom: 4px;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    width: min(100%, 490px);
    padding: 22px 28px;
    color: #fff;
    background: linear-gradient(135deg, #0d6a2f 0%, #0a5727 100%);
    border-radius: 28px;
    box-shadow: 0 20px 42px rgba(13, 106, 47, 0.28);
    z-index: 4;
}

.seyon-augment-message__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 14px;
    color: #0d6a2f;
    background: #fff;
    border-radius: 50%;
}

.seyon-augment-message strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.22;
}

.seyon-learn-hero {
    padding: 88px 0 42px;
    background:
        radial-gradient(circle at top left, rgba(25, 118, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #f7faf8 0%, #edf5ef 100%);
}

.seyon-learn-hero__inner {
    max-width: 900px;
}

.seyon-learn-hero h1 {
    margin: 12px 0 0;
    color: var(--seyon-green);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.04;
}

.seyon-learn-hero p {
    max-width: 820px;
    margin: 20px 0 0;
    color: var(--seyon-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.seyon-learn-section {
    padding: 10px 0 72px;
}

.seyon-learn-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
    gap: 28px;
    align-items: start;
}

.seyon-learn-content {
    display: grid;
    gap: 24px;
}

.seyon-learn-panel,
.seyon-learn-form-card {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 247, 0.97));
    border: 1px solid rgba(5, 74, 34, 0.1);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(5, 74, 34, 0.08);
}

.seyon-learn-panel h2,
.seyon-learn-form-card h2 {
    margin: 12px 0 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: clamp(1.9rem, 2.5vw, 2.55rem);
    line-height: 1.12;
}

.seyon-learn-panel p,
.seyon-learn-form-card > p {
    margin: 16px 0 0;
    color: var(--seyon-muted);
    line-height: 1.8;
}

.seyon-learn-steps {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.seyon-learn-step {
    padding: 22px 24px;
    background: rgba(5, 74, 34, 0.04);
    border: 1px solid rgba(5, 74, 34, 0.08);
    border-radius: 22px;
}

.seyon-learn-step h3 {
    margin: 0;
    color: var(--seyon-green);
    font-size: 1.05rem;
}

.seyon-learn-step p {
    margin-top: 10px;
    font-size: 0.98rem;
}

.seyon-learn-pillars {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.seyon-learn-pillars li {
    min-height: 100%;
}

.seyon-learn-pillars li::after {
    content: none;
}

.seyon-learn-pillars li img {
    position: static;
}

.seyon-learn-pillars li span {
    position: static;
    display: block;
    padding: 0;
    max-width: none;
    font-size: 1rem;
    letter-spacing: 0;
}

.seyon-learn-pillar {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    min-height: 180px;
    padding: 22px;
    color: var(--seyon-green-deep);
    border: 1px solid rgba(5, 74, 34, 0.1);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(5, 74, 34, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 246, 0.98));
}

.seyon-learn-pillar--microsoft {
    background: linear-gradient(180deg, rgba(243, 249, 255, 0.98), rgba(235, 244, 255, 0.98));
}

.seyon-learn-pillar--work {
    background: linear-gradient(180deg, rgba(243, 248, 255, 0.98), rgba(240, 243, 255, 0.98));
}

.seyon-learn-pillar--fabric {
    background: linear-gradient(180deg, rgba(247, 243, 255, 0.98), rgba(241, 236, 255, 0.98));
}

.seyon-learn-pillar--foundry {
    background: linear-gradient(180deg, rgba(240, 248, 255, 0.98), rgba(232, 243, 255, 0.98));
}

.seyon-learn-pillar--platform {
    background: linear-gradient(180deg, rgba(241, 249, 247, 0.98), rgba(234, 244, 241, 0.98));
}

.seyon-learn-pillar--talent {
    background: linear-gradient(180deg, rgba(248, 246, 240, 0.98), rgba(242, 239, 231, 0.98));
}

.seyon-learn-pillar__icon-wrap {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(5, 74, 34, 0.08);
}

.seyon-learn-pillar__icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px;
}

.seyon-learn-pillar__content {
    display: grid;
    gap: 10px;
}

.seyon-learn-pillar__content strong {
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: 1.34rem;
    line-height: 1.18;
}

.seyon-learn-pillar__content span {
    color: var(--seyon-muted);
    line-height: 1.75;
}

.seyon-learn-pillars--single {
    grid-template-columns: minmax(0, 1fr);
}

.seyon-learn-panel--visuals {
    overflow: hidden;
}

.seyon-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.seyon-visual-grid--stacked {
    grid-template-columns: minmax(0, 1fr);
}

.seyon-visual-card {
    overflow: hidden;
    display: grid;
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(5, 74, 34, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(5, 74, 34, 0.08);
}

.seyon-visual-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.seyon-visual-card__body {
    padding: 20px 20px 22px;
}

.seyon-visual-card__body h3 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: 1.2rem;
    line-height: 1.2;
}

.seyon-visual-card__body p {
    margin: 12px 0 0;
    color: var(--seyon-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.seyon-visual-card--horizontal {
    grid-template-columns: 180px minmax(0, 1fr);
}

.seyon-visual-card--horizontal img {
    height: 100%;
    min-height: 180px;
}

.seyon-form-message {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.seyon-form-message--success {
    color: #0e5e31;
    background: rgba(14, 107, 54, 0.1);
    border: 1px solid rgba(14, 107, 54, 0.14);
}

.seyon-form-message--error {
    color: #8f2a1d;
    background: rgba(181, 58, 40, 0.09);
    border: 1px solid rgba(181, 58, 40, 0.16);
}

.seyon-form-message--warning {
    color: #855600;
    background: rgba(243, 177, 37, 0.16);
    border: 1px solid rgba(243, 177, 37, 0.24);
}

.seyon-checkbox-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--seyon-green-deep);
    background: rgba(5, 74, 34, 0.04);
    border: 1px solid rgba(5, 74, 34, 0.1);
    border-radius: 16px;
}

.seyon-checkbox-field input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #1976ff;
}

.seyon-checkbox-field span {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.seyon-form-inline-error {
    display: block;
    margin-top: -8px;
    color: #8f2a1d;
    font-size: 0.88rem;
}

.seyon-captcha-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 96px;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.seyon-captcha-field__control {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 32px;
}

.seyon-captcha-field input {
    position: absolute;
    inset: 0 auto 0 0;
    width: 32px;
    height: 32px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.seyon-captcha-field__box {
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    background: #fff;
    border: 2px solid #5f6368;
    border-radius: 2px;
}

.seyon-captcha-field input:checked + .seyon-captcha-field__box::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 2px;
    width: 10px;
    height: 18px;
    border-right: 3px solid #1a73e8;
    border-bottom: 3px solid #1a73e8;
    transform: rotate(40deg);
}

.seyon-captcha-field__label {
    color: #1f1f1f;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.seyon-captcha-field__brand {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 72px;
}

.seyon-captcha-field__mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: conic-gradient(from 210deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
    position: relative;
}

.seyon-captcha-field__mark::after {
    content: '';
    position: absolute;
    inset: 7px;
    background: #fff;
    border-radius: 50%;
}

.seyon-captcha-field__text {
    color: #5f6368;
    font-size: 0.74rem;
    line-height: 1;
}

.seyon-form-privacy {
    margin: -2px 0 0;
    color: var(--seyon-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.seyon-form-privacy a {
    text-decoration: underline;
}

.seyon-contact-form-page {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.92fr);
    gap: 28px;
    align-items: start;
}

.seyon-contact-form-page__content {
    display: grid;
    gap: 24px;
}

.seyon-contact-form-page__card {
    width: 100%;
    max-width: none;
}

.seyon-about-hero {
    padding: 88px 0 42px;
    background:
        radial-gradient(circle at top left, rgba(25, 118, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #f7faf8 0%, #edf5ef 100%);
}

.seyon-about-hero__inner {
    max-width: 900px;
}

.seyon-about-hero h1 {
    margin: 12px 0 0;
    color: var(--seyon-green);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.04;
}

.seyon-about-hero p {
    max-width: 820px;
    margin: 20px 0 0;
    color: var(--seyon-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.seyon-promo-embed-section {
    padding: 18px 0 8px;
}

.seyon-promo-embed {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 242, 0.96));
    border: 1px solid rgba(5, 74, 34, 0.1);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(5, 74, 34, 0.08);
}

.seyon-promo-embed--home {
    margin: 0 0 32px;
}

.seyon-promo-embed__intro h2,
.seyon-promo-embed__intro h3 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    line-height: 1.1;
}

.seyon-promo-embed__intro h2 {
    font-size: clamp(2rem, 2.8vw, 3rem);
}

.seyon-promo-embed__intro h3 {
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.seyon-promo-embed__intro p {
    margin: 16px 0 0;
    color: var(--seyon-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.seyon-promo-embed__frame {
    overflow: hidden;
    border-radius: 24px;
    background: #07141b;
    box-shadow: 0 26px 50px rgba(7, 20, 27, 0.18);
}

.seyon-promo-embed__frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #07141b;
}

.seyon-about-story__layout,
.seyon-about-direction {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.seyon-about-story__lead h2,
.seyon-about-direction h2,
.seyon-about-closing h2 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.1;
}

.seyon-about-story__copy,
.seyon-about-direction__copy {
    display: grid;
    gap: 18px;
    color: var(--seyon-muted);
    font-size: 1.04rem;
    line-height: 1.85;
}

.seyon-about-story__copy p,
.seyon-about-direction__copy p,
.seyon-about-closing p {
    margin: 0;
}

.seyon-about-section--alt {
    padding-top: 44px;
}

.seyon-about-capabilities,
.seyon-about-outcomes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.seyon-about-capability,
.seyon-about-outcome {
    padding: 20px 22px;
    color: var(--seyon-green-deep);
    font-weight: 700;
    line-height: 1.55;
    background: linear-gradient(135deg, rgba(25, 118, 255, 0.09), rgba(5, 74, 34, 0.06));
    border: 1px solid rgba(25, 118, 255, 0.12);
    border-radius: 20px;
}

.seyon-about-principles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.seyon-about-principle {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 247, 0.97));
    border: 1px solid rgba(5, 74, 34, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(5, 74, 34, 0.08);
}

.seyon-about-principle h3 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: 1.45rem;
    line-height: 1.2;
}

.seyon-about-principle p {
    margin: 14px 0 0;
    color: var(--seyon-muted);
    line-height: 1.8;
}

.seyon-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.seyon-legal-card {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 246, 0.96));
    border: 1px solid rgba(5, 74, 34, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(5, 74, 34, 0.08);
}

.seyon-legal-card h2 {
    margin: 0;
    color: var(--seyon-green);
    font-family: 'Hanuman', serif;
    font-size: 1.55rem;
    line-height: 1.2;
}

.seyon-legal-card p {
    margin: 14px 0 0;
    color: var(--seyon-muted);
    line-height: 1.8;
}

.seyon-about-section--closing {
    padding: 48px 0 72px;
}

.seyon-about-closing {
    padding: 34px 36px;
    background: linear-gradient(135deg, rgba(5, 74, 34, 0.95), rgba(14, 107, 54, 0.9));
    border-radius: 28px;
    box-shadow: var(--seyon-shadow);
}

.seyon-about-closing .seyon-section__eyebrow,
.seyon-about-closing h2,
.seyon-about-closing p {
    color: #fff;
}

.seyon-about-closing p {
    max-width: 860px;
    margin-top: 16px;
    line-height: 1.8;
}

.seyon-about-closing a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seyon-about-closing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.seyon-learn-form {
    margin-top: 24px;
}

.seyon-learn-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
}

.seyon-field {
    display: grid;
    gap: 8px;
}

.seyon-field--full {
    grid-column: 1 / -1;
}

.seyon-field span {
    color: var(--seyon-green-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seyon-field input,
.seyon-field select,
.seyon-field textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--seyon-ink);
    font: inherit;
    background: #fff;
    border: 1px solid rgba(5, 74, 34, 0.16);
    border-radius: 16px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.seyon-field input:focus,
.seyon-field select:focus,
.seyon-field textarea:focus {
    border-color: #1976ff;
    box-shadow: 0 0 0 4px rgba(25, 118, 255, 0.12);
}

.seyon-field textarea {
    resize: vertical;
    min-height: 144px;
}

.seyon-field small {
    color: #8f2a1d;
    font-size: 0.88rem;
}

.seyon-learn-form__submit {
    width: 100%;
    margin-top: 20px;
    min-height: 54px;
    font-size: 1rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1080px) {
    .seyon-split,
    .seyon-grid--services {
        grid-template-columns: 1fr;
    }

    .seyon-augment-hero__layout,
    .seyon-augment-highlights {
        grid-template-columns: 1fr;
    }

    .seyon-augment-hero__content {
        max-width: none;
    }

    .seyon-augment-highlight {
        grid-template-columns: 54px minmax(0, 1fr);
        align-items: center;
        padding-right: 0;
    }

    .seyon-augment-highlight:not(:last-child)::after {
        display: none;
    }

    .seyon-augment-visual {
        min-height: 610px;
    }

    .seyon-staffing-hero__layout,
    .seyon-staffing-split,
    .seyon-staffing-models,
    .seyon-staffing-industries,
    .seyon-staffing-capabilities,
    .seyon-staffing-subpages,
    .seyon-staffing-role-grid {
        grid-template-columns: 1fr;
    }

    .seyon-about-story__layout,
    .seyon-about-direction,
    .seyon-about-capabilities,
    .seyon-about-principles,
    .seyon-about-outcomes,
    .seyon-legal-grid,
    .seyon-promo-embed {
        grid-template-columns: 1fr;
    }

    .seyon-learn-layout,
    .seyon-learn-pillars,
    .seyon-visual-grid,
    .seyon-contact-form-page {
        grid-template-columns: 1fr;
    }

    .seyon-visual-card--horizontal {
        grid-template-columns: 1fr;
    }

    .seyon-visual-card--horizontal img {
        min-height: 0;
        height: 220px;
    }

    .seyon-started-grid,
    .seyon-started-summary {
        grid-template-columns: 1fr;
    }

    .seyon-grid--features,
    .seyon-checklist {
        grid-template-columns: 1fr;
    }

    .seyon-header__bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0 14px;
    }

    .seyon-nav {
        flex-wrap: wrap;
        gap: 18px 24px;
    }
}

@media (max-width: 720px) {
    .seyon-shell {
        width: min(calc(100% - 24px), var(--seyon-max));
    }

    .seyon-augment-hero {
        padding-top: 70px;
        padding-bottom: 34px;
    }

    .seyon-augment-hero__content h1 {
        font-size: clamp(2.5rem, 12vw, 3.7rem);
    }

    .seyon-augment-highlights {
        gap: 16px;
    }

    .seyon-augment-highlight {
        gap: 12px;
    }

    .seyon-augment-visual {
        min-height: 520px;
        padding-top: 8px;
    }

    .seyon-augment-node {
        width: 72px;
        height: 72px;
        border-width: 6px;
    }

    .seyon-augment-node--top-left {
        left: 24px;
    }

    .seyon-augment-node--top-right {
        right: 18px;
    }

    .seyon-augment-node--mid-left {
        top: 214px;
        left: 0;
    }

    .seyon-augment-node--mid-right {
        top: 244px;
        right: 0;
    }

    .seyon-augment-visual__halo--outer {
        inset: 26px 8px 168px 8px;
    }

    .seyon-augment-visual__halo--inner {
        inset: 92px 48px 224px 48px;
    }

    .seyon-augment-visual__stage {
        inset: 110px 14px 104px 14px;
    }

    .seyon-augment-visual__stage::after {
        height: 104px;
    }

    .seyon-augment-message {
        position: relative;
        right: auto;
        bottom: auto;
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 14px;
        width: 100%;
        margin-top: auto;
        padding: 18px 20px;
    }

    .seyon-augment-message__icon {
        width: 56px;
        height: 56px;
        padding: 10px;
    }

    .seyon-staffing-hero {
        padding-top: 72px;
    }

    .seyon-staffing-hero__media img {
        min-height: 260px;
    }

    .seyon-staffing-industry {
        grid-template-columns: 1fr;
    }

    .seyon-staffing-industry img {
        min-height: 220px;
    }

    .seyon-staffing-phase,
    .seyon-staffing-capability {
        grid-template-columns: 1fr;
    }

    .seyon-about-hero {
        padding-top: 72px;
    }

    .seyon-promo-embed {
        padding: 20px;
    }

    .seyon-learn-hero {
        padding-top: 72px;
    }

    .seyon-learn-form__grid,
    .seyon-learn-pillars,
    .seyon-visual-grid {
        grid-template-columns: 1fr;
    }

    .seyon-visual-card img {
        height: 200px;
    }

    .seyon-nav__submenu {
        position: static;
        min-width: 0;
        margin-top: 8px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .seyon-title {
        font-size: 2.15rem;
    }

    .seyon-started-hero .seyon-page__meta,
    .seyon-started-hero .seyon-page__copy,
    .seyon-started-section .seyon-section__eyebrow,
    .seyon-started-summary .seyon-section__eyebrow {
        font-size: 0.78rem;
    }

    .seyon-started-hero .seyon-page__copy {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        letter-spacing: 0.06em;
    }

    .seyon-hero,
    .seyon-hero__inner {
        min-height: 330px;
    }

    .seyon-portfolio,
    .seyon-contact,
    .seyon-page__panel,
    .seyon-card,
    .seyon-about-principle,
    .seyon-about-closing,
    .seyon-started-card,
    .seyon-started-summary {
        padding: 24px;
    }

    .seyon-footer__bar {
        flex-direction: column;
    }
}