:root {
    --ink: #363839;
    --muted: #70787a;
    --paper: #ffffff;
    --soft: #f6f6f4;
    --line: #deded9;
    --charcoal: #252829;
    --charcoal-2: #313536;
    --teal: #1d8d95;
    --teal-dark: #17686f;
    --rose: #e0978f;
    --rose-2: #ff7a7a;
    --wine: #7c1919;
    --shadow: 0 22px 55px rgba(34, 38, 40, 0.20);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.65;
}

img,
video,
svg {
    max-width: 100%;
}

a {
    color: var(--teal-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    font-family: Raleway, "Open Sans", sans-serif;
    letter-spacing: 0;
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.top-bar {
    color: #d4d4d4;
    background: #3d3d3d;
    font-size: 0.86rem;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    gap: 18px;
}

.social-links,
.top-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-links a,
.top-links a,
.top-links button {
    min-height: 0;
    padding: 0;
    border: 0;
    color: #b3b3b3;
    background: transparent;
    box-shadow: none;
    font: inherit;
}

.top-links button {
    cursor: pointer;
}

.social-links a:hover,
.top-links a:hover,
.top-links button:hover {
    color: #fff;
    filter: none;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 90px;
    padding: 0 clamp(18px, 4vw, 54px);
    background: rgba(48, 48, 48, 0.98);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 218px;
}

.brand img {
    display: block;
    width: min(260px, 32vw);
    height: auto;
}

.brand-mobile {
    display: none !important;
    width: 55px !important;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    min-width: 0;
}

.primary-menu > a,
.nav-group > a,
.login-pill {
    display: inline-flex;
    align-items: center;
    min-height: 90px;
    padding: 0 13px;
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.primary-menu a:hover,
.login-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.nav-group {
    position: relative;
}

.nav-dropdown-toggle {
    display: none;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    padding: 10px;
    border-top: 3px solid var(--rose);
    background: rgba(42, 45, 46, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown.wide {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    width: min(760px, 92vw);
    gap: 10px;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown,
.nav-group.is-open > .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown strong,
.dropdown a {
    display: block;
    padding: 8px 10px;
    color: #fff;
}

.dropdown strong {
    color: var(--rose);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.inline-search {
    display: flex;
    align-items: center;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 5px;
    overflow: hidden;
}

.inline-search input {
    width: clamp(116px, 13vw, 180px);
    min-height: 42px;
    border: 0;
    padding: 0 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    font: inherit;
}

.inline-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.inline-search button {
    width: 46px;
    min-height: 42px;
    border-radius: 0;
    padding: 0;
}

.inline-search svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.search-toggle {
    width: 58px;
    min-height: 90px;
    padding: 0;
    border-radius: 0;
    color: #ededed;
    background: transparent;
    box-shadow: none;
}

.search-toggle:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    filter: none;
}

.search-toggle svg,
.site-search svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
}

.site-search {
    position: fixed;
    top: 90px;
    right: 0;
    left: 0;
    z-index: 69;
    padding: 18px clamp(18px, 4vw, 54px);
    background: rgba(48, 48, 48, 0.98);
    box-shadow: var(--shadow);
}

.site-search[hidden] {
    display: none;
}

.site-search form {
    display: flex;
    width: min(960px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 5px;
    overflow: hidden;
}

.site-search input {
    min-height: 54px;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    font-size: 1.15rem;
}

.site-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.site-search button {
    width: 64px;
    border-radius: 0;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 5px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 5px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(0deg, rgba(124, 25, 25, 0.82), rgba(255, 122, 122, 0.84));
    box-shadow: 0 4px 3px rgba(40, 40, 40, 0.20);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.button:hover,
button:hover {
    color: #fff;
    filter: brightness(1.05);
    text-decoration: none;
}

.ghost-dark {
    border: 1px solid var(--line);
    color: var(--ink);
    background: #fff;
}

.ghost-dark:hover {
    color: var(--ink);
}

.hero-slider {
    position: relative;
    min-height: calc(100vh - 90px);
    overflow: hidden;
    color: #fff;
    background: var(--charcoal);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 70px 18px 110px;
    text-align: center;
    background:
        linear-gradient(rgba(31, 35, 38, 0.28), rgba(31, 35, 38, 0.55)),
        url("/assets/images/site/hero-slide-1.webp") center / cover no-repeat;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease, transform 1600ms ease;
}

.hero-slide:nth-child(2) {
    background:
        linear-gradient(rgba(31, 35, 38, 0.34), rgba(31, 35, 38, 0.62)),
        url("/assets/images/site/bckg-3-bw.jpg") center / cover no-repeat;
}

.hero-slide:nth-child(3) {
    background:
        linear-gradient(rgba(31, 35, 38, 0.36), rgba(31, 35, 38, 0.66)),
        url("/assets/images/site/bckg-5-bw.jpg") center / cover no-repeat;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 2;
    height: 62px;
    background: #fff;
    clip-path: polygon(0 62%, 100% 0, 100% 100%, 0 100%);
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 980px;
    text-shadow: 0 4px 7px rgba(52, 52, 52, 0.42);
}

.hero-copy p {
    margin: 0 0 10px;
    font-family: Raleway, sans-serif;
    font-size: clamp(1.6rem, 4vw, 4.8rem);
    font-weight: 200;
    letter-spacing: 0.08em;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(3.1rem, 8vw, 7.5rem);
    font-weight: 200;
    line-height: 0.96;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-button {
    margin-top: 58px;
    min-height: 52px;
    padding-inline: 34px;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-dots {
    position: absolute;
    bottom: 84px;
    left: 50%;
    z-index: 4;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dots span {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
}

.hero-dots .is-active {
    background: rgba(255, 255, 255, 0.9);
}

.eyebrow,
.meta {
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wwh-band {
    padding: 34px 0 70px;
    background: #fff;
}

.wwh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.wwh section {
    padding: 28px 30px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.wwh section:last-child {
    border-right: 0;
}

.wwh span {
    display: block;
    color: var(--teal);
    font-family: Raleway, sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 200;
}

.wwh p {
    margin: 12px 0 0;
}

.intro-section {
    position: relative;
    padding: 84px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
        url("/assets/images/site/bckg-3-bw.jpg") center / cover fixed;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.intro-grid h2,
.section-title h2,
.delivery-panel h2,
.approach-panel h2,
.page-hero h1,
.article-page h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 200;
    line-height: 1.05;
}

.intro-copy p:first-child {
    margin-top: 0;
}

.evolve-section {
    padding: 88px 0;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(rgba(37, 40, 41, 0.82), rgba(37, 40, 41, 0.90)),
        url("/assets/images/site/bckg-5-bw.jpg") center / cover fixed;
}

.section-title.centered {
    max-width: 900px;
    margin: 0 auto 40px;
}

.evolve-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
}

.evolve-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 32px;
    align-items: center;
}

.evolve-media-grid video {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.evolve-grid article {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 4px 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.evolve-grid span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    grid-row: span 2;
    margin-bottom: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(224, 151, 143, 0.8);
    font-family: Raleway, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
}

.evolve-grid h3,
.process-steps h3,
.community-grid h2 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

.evolve-grid p {
    margin: 0;
}

.evolve-button {
    margin-top: 34px;
    text-transform: uppercase;
}

.process-ribbon {
    padding: 68px 0;
    background: var(--soft);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-steps article {
    position: relative;
    padding: 26px 22px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(36, 42, 45, 0.08);
}

.process-steps strong {
    display: block;
    color: var(--rose);
    font-family: Raleway, sans-serif;
    font-size: 2.2rem;
    font-weight: 200;
}

.delivery-section {
    padding: 78px 0;
    background: #fff;
}

.delivery-grid,
.community-grid,
.blog-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    gap: 28px;
    align-items: start;
}

.delivery-grid {
    grid-template-columns: 0.95fr 1.05fr;
}

.delivery-panel,
.approach-panel,
.tag-panel,
.ascent-panel,
.recent-panel,
.article-card,
.category-panel,
.portfolio-grid article,
.process-card,
.contact-form,
.login-inline {
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(36, 42, 45, 0.08);
}

.delivery-panel,
.approach-panel,
.tag-panel,
.ascent-panel,
.recent-panel {
    padding: 28px;
}

.community-section {
    padding: 70px 0;
    color: #fff;
    background:
        linear-gradient(rgba(37, 40, 41, 0.88), rgba(37, 40, 41, 0.92)),
        url("/assets/images/site/bckg-3-bw.jpg") center / cover fixed;
}

.community-grid {
    grid-template-columns: 1fr 0.8fr 1fr;
}

.community-grid article {
    color: var(--ink);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-flex;
    border: 1px solid var(--ink);
    border-radius: 5px;
    padding: 4px 8px;
    color: var(--ink);
    background: var(--rose);
    font-size: 0.92rem;
}

.recent-list {
    display: grid;
    gap: 8px;
}

.recent-list a {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: var(--ink);
}

.recent-list span {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 4px;
    color: #fff;
    background: var(--charcoal-2);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: #fff;
    background:
        linear-gradient(rgba(37, 40, 41, 0.74), rgba(37, 40, 41, 0.84)),
        url("/assets/images/site/hero-slide-1.webp") center 66% / cover fixed;
}

.stat {
    display: grid;
    place-items: center;
    min-height: 190px;
    padding: 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.36);
}

.stat strong {
    font-family: Raleway, sans-serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 200;
    line-height: 1;
}

.stat span {
    font-family: Raleway, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.page-hero {
    padding: 110px 0 78px;
    color: #fff;
    background:
        linear-gradient(rgba(37, 40, 41, 0.58), rgba(37, 40, 41, 0.80)),
        url("/assets/images/site/hero-slide-1.webp") center / cover;
}

.page-hero.compact {
    padding: 92px 0 66px;
}

.page-hero.processes {
    background:
        linear-gradient(rgba(23, 104, 111, 0.66), rgba(37, 40, 41, 0.82)),
        url("/assets/images/site/bckg-5-bw.jpg") center / cover;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    font-size: 1.15rem;
}

.article-strip,
.article-page,
.process-grid,
.portfolio-grid,
.auth-page {
    padding: 70px 0;
}

.blog-layout {
    grid-template-columns: 290px minmax(0, 1fr);
    padding: 68px 0;
}

.category-panel {
    position: sticky;
    top: 100px;
    padding: 22px;
}

.category-panel h2 {
    margin-top: 0;
}

.category-panel details {
    border-top: 1px solid var(--line);
    padding: 12px 0;
}

.category-panel summary {
    cursor: pointer;
    font-weight: 800;
}

.category-panel a {
    display: block;
    padding: 6px 0 0 12px;
}

.search-panel {
    display: flex;
    margin-bottom: 22px;
    border: 1px solid var(--line);
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.search-panel input {
    flex: 1;
    border: 0;
}

.search-panel button {
    border-radius: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.article-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.article-card {
    overflow: hidden;
}

.article-card > div {
    padding: 18px;
}

.article-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.28;
}

.article-card p {
    margin: 0 0 12px;
}

.article-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.article-card:hover .article-image img {
    transform: scale(1.04);
}

.article-image time {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 7px 9px;
    color: #fff;
    background: rgba(37, 40, 41, 0.84);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.read-more {
    font-weight: 800;
}

.article-page h1 {
    max-width: 960px;
}

.article-date {
    color: var(--muted);
    font-weight: 700;
}

.feature-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    margin: 24px 0 28px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.article-body {
    max-width: 900px;
    margin-top: 28px;
    font-size: 1.06rem;
}

pre {
    overflow-x: auto;
    padding: 18px;
    color: #f4f8f8;
    background: #25292b;
    border-radius: 5px;
}

.process-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card,
.portfolio-grid article {
    padding: 24px;
}

.process-card .wwh {
    grid-template-columns: 1fr;
}

.process-card .wwh section {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.process-card .wwh section:last-child {
    border-bottom: 0;
}

.contact-layout {
    padding: 68px 0;
}

.contact-form,
.contact-layout aside,
.login-inline {
    padding: 24px;
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 11px 12px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.protected-note,
.comments-section,
.comment-form,
.admin-panel,
.admin-form,
.admin-stats article,
.comment-moderation article {
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(36, 42, 45, 0.08);
}

.protected-note,
.comments-section {
    margin-top: 30px;
    padding: 26px;
}

.comment-list,
.comment-moderation {
    display: grid;
    gap: 16px;
}

.comment {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.comment time {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
}

.comment-form {
    margin-top: 24px;
    padding: 22px;
}

.admin-shell {
    display: grid;
    gap: 24px;
    padding: 68px 0;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.admin-actions form {
    margin: 0;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.admin-stats article {
    display: grid;
    place-items: center;
    min-height: 135px;
    padding: 20px;
    text-align: center;
}

.admin-stats strong {
    color: var(--rose-2);
    font-family: Raleway, sans-serif;
    font-size: 2.6rem;
    font-weight: 200;
}

.admin-stats span {
    font-weight: 800;
    text-transform: uppercase;
}

.admin-panel,
.admin-form {
    padding: 24px;
}

.admin-table {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--line);
}

.admin-table > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 120px 70px;
    gap: 12px;
    padding: 12px;
    background: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.comment-moderation article {
    padding: 18px;
}

.auth-page {
    display: grid;
    place-items: start center;
    min-height: 420px;
    background: var(--soft);
}

.auth-page .login-inline {
    width: min(460px, calc(100% - 32px));
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.62);
}

.modal-backdrop[hidden] {
    display: none;
}

.login-modal {
    position: relative;
    width: min(500px, 100%);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    box-shadow: var(--shadow);
}

.login-modal h2 {
    margin: 0 0 12px;
    font-size: 2rem;
    font-weight: 300;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    min-height: 36px;
    padding: 0;
    color: var(--ink);
    background: var(--soft);
    box-shadow: none;
    font-size: 1.5rem;
}

.site-footer {
    padding: 28px 0;
    color: #fff;
    background: #2b2f31;
}

.site-footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer a {
    color: #fff;
}

.cookie-consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    width: min(760px, calc(100% - 36px));
    padding: 14px;
    border-radius: 5px;
    color: #fff;
    background: rgba(37, 40, 41, 0.96);
    box-shadow: var(--shadow);
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent a {
    color: var(--rose);
}

.cookie-consent.is-hidden {
    display: none;
}

.flash {
    position: fixed;
    top: 88px;
    right: 18px;
    z-index: 70;
    max-width: 420px;
    padding: 12px 14px;
    color: #fff;
    background: var(--teal-dark);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

@media (max-width: 1180px) {
    .site-header {
        gap: 12px;
    }

    .brand {
        min-width: 180px;
    }

    .primary-menu > a,
    .nav-group > a,
    .login-pill {
        padding-inline: 9px;
        font-size: 0.78rem;
    }
}

@media (max-width: 1040px) {
    .menu-toggle {
        display: block;
    }

    .brand img {
        width: min(260px, 55vw);
    }

    .primary-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        padding: 8px 16px 18px;
        background: rgba(37, 40, 41, 0.99);
    }

    .primary-menu.is-open {
        display: flex;
    }

    .primary-menu > a,
    .nav-group > a,
    .login-pill {
        min-height: 44px;
        justify-content: flex-start;
    }

    .dropdown,
    .dropdown.wide {
        position: static;
        display: grid;
        width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }

    .search-toggle {
        min-height: 44px;
        width: 44px;
    }
}

@media (max-width: 860px) {
    .wwh,
    .intro-grid,
    .evolve-grid,
    .process-steps,
    .delivery-grid,
    .community-grid,
    .stat-band,
    .blog-layout,
    .contact-layout,
    .process-grid,
    .portfolio-grid,
    .article-grid,
    .article-grid.two-col,
    .evolve-media-grid,
    .admin-stats,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .wwh section {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .wwh section:last-child {
        border-bottom: 0;
    }

    .category-panel {
        position: static;
    }

    .site-footer .wrap,
    .cookie-consent {
        grid-template-columns: 1fr;
        align-items: start;
        flex-direction: column;
    }

    .admin-table > div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .top-bar-inner,
    .top-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 6px 0;
    }

    .site-header {
        min-height: 66px;
    }

    .primary-menu > a,
    .nav-group > a,
    .login-pill,
    .search-toggle {
        min-height: 44px;
    }

    .brand-full {
        display: none !important;
    }

    .brand-mobile {
        display: block !important;
    }

    .site-search {
        top: 66px;
    }

    .hero-slider {
        min-height: 620px;
    }

    .hero-copy h1 {
        font-size: 3rem;
        letter-spacing: 0.04em;
    }

    .hero-copy p {
        font-size: 1.55rem;
    }

    .search-panel {
        flex-direction: column;
    }
}

/* Lightweight reconstruction of the visible JoelLipman.com public theme. */
@font-face {
    font-family: "peIcon7";
    src: url("/assets/fonts/Pe-icon-7-stroke.woff") format("woff");
    font-style: normal;
    font-weight: normal;
    font-display: block;
}

[class^="pe-7s-"],
[class*=" pe-7s-"] {
    display: inline-block;
    font-family: "peIcon7";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}

.pe-7s-diamond::before { content: "\e6af"; }
.pe-7s-headphones::before { content: "\e6b5"; }
.pe-7s-hourglass::before { content: "\e6b7"; }
.pe-7s-plugin::before { content: "\e6c1"; }
.pe-7s-rocket::before { content: "\e6c3"; }
.pe-7s-user::before { content: "\e605"; }
.pe-7s-study::before { content: "\e60f"; }
.pe-7s-search::before { content: "\e618"; }
.pe-7s-science::before { content: "\e619"; }
.pe-7s-portfolio::before { content: "\e622"; }
.pe-7s-play::before { content: "\e624"; }
.pe-7s-menu::before { content: "\e636"; }
.pe-7s-link::before { content: "\e641"; }
.pe-7s-light::before { content: "\e643"; }
.pe-7s-graph2::before { content: "\e64c"; }
.pe-7s-gift::before { content: "\e652"; }
.pe-7s-chat::before { content: "\e66d"; }
.pe-7s-cart::before { content: "\e66e"; }
.pe-7s-way::before { content: "\e68e"; }

:root {
    --live-dark: #303030;
    --live-dark-2: #383838;
    --live-text: #292929;
    --live-coral: #d47d74;
    --live-rose: #e0978f;
    --live-red: #9f3033;
    --live-gold: #b39b4c;
    --live-muted: #b8b8b8;
}

body {
    color: var(--live-text);
    font-size: 15px;
    line-height: 1.65;
}

.wrap {
    width: min(1140px, calc(100% - 32px));
}

.top-bar {
    height: 35px;
    color: #aaa;
    background: #3b3b3b;
    font-size: 13px;
}

.top-bar-inner {
    min-height: 35px;
}

.social-links {
    gap: 18px;
}

.social-links a {
    display: grid;
    width: 14px;
    height: 18px;
    place-items: center;
    color: #989898;
    font-size: 11px;
    font-weight: 700;
}

.social-play {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid currentColor;
}

.top-links {
    gap: 22px;
}

.top-links a,
.top-links button {
    color: #b8b8b8;
}

.top-links i {
    margin-right: 5px;
    color: var(--live-rose);
    font-size: 18px;
    vertical-align: -2px;
}

.site-header {
    min-height: 90px;
    padding: 0;
    background: rgba(44, 44, 44, 0.98);
    box-shadow: none;
    backdrop-filter: none;
}

.header-inner {
    display: flex;
    min-height: 90px;
    align-items: center;
    gap: 18px;
}

.brand {
    flex: 0 0 356px;
    min-width: 0;
}

.brand img {
    width: 356px;
}

.primary-menu {
    flex: 1 1 auto;
    gap: 0;
}

.primary-menu > a,
.nav-group > a {
    min-height: 90px;
    padding: 0 14px;
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.primary-menu > a:first-child {
    color: var(--live-coral);
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
    color: var(--live-coral);
    background: transparent;
}

.nav-chevron {
    width: 5px;
    height: 5px;
    margin: 0 0 4px 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.dropdown {
    min-width: 250px;
    padding: 10px 0;
    border-top: 2px solid var(--live-rose);
    border-radius: 0;
    background: rgba(43, 43, 43, 0.99);
}

.dropdown.wide {
    left: -210px;
    width: min(720px, 92vw);
}

.dropdown a,
.dropdown strong {
    padding: 7px 14px;
    font-size: 13px;
}

.menu-column {
    min-width: 0;
}

.submenu-group {
    position: relative;
}

.submenu-trigger {
    display: flex;
    align-items: stretch;
}

.submenu-trigger > a {
    flex: 1 1 auto;
    min-width: 0;
}

.submenu-toggle {
    display: inline-flex;
    width: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.submenu-toggle .nav-chevron {
    margin: 0 3px 0 0;
    transform: rotate(-45deg);
}

.submenu {
    position: absolute;
    z-index: 8;
    top: -10px;
    left: 100%;
    width: 240px;
    padding: 10px 0;
    border-top: 2px solid var(--live-rose);
    background: rgba(43, 43, 43, 0.99);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.submenu-group:hover > .submenu,
.submenu-group:focus-within > .submenu,
.submenu-group.is-open > .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.header-tools {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.header-tools button,
.search-toggle,
.desktop-menu-mark,
.cart-toggle {
    position: relative;
    width: 45px;
    min-height: 90px;
    padding: 0;
    border-radius: 0;
    color: #e6e6e6;
    background: transparent;
    box-shadow: none;
    font-size: 25px;
    font-weight: 400;
}

.desktop-menu-mark {
    color: var(--live-coral) !important;
}

.search-toggle {
    width: 48px;
    min-height: 90px;
}

.cart-toggle span {
    position: absolute;
    right: 2px;
    bottom: 24px;
    min-width: 14px;
    color: #aaa;
    font: 10px/1 "Open Sans", sans-serif;
}

.menu-toggle {
    background: transparent;
    box-shadow: none;
}

.quick-panel,
.cart-panel {
    position: fixed;
    top: 125px;
    right: max(16px, calc((100vw - 1140px) / 2));
    z-index: 85;
    min-width: 190px;
    padding: 14px;
    color: #ddd;
    background: #2d2d2d;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.quick-panel[hidden],
.cart-panel[hidden] {
    display: none;
}

.quick-panel a {
    display: block;
    padding: 7px;
    color: #eee;
}

.site-search {
    position: fixed;
    top: 125px;
    right: 0;
    left: 0;
    z-index: 84;
    padding: 18px 0;
    border: 0;
    background: rgba(45, 45, 45, 0.98);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.site-search form {
    width: min(720px, calc(100% - 32px));
    margin: 0 auto;
}

.site-search input {
    min-height: 48px;
    border: 1px solid #555;
    border-radius: 0;
    color: #fff;
    background: #383838;
}

.site-search button {
    width: 54px;
    min-height: 48px;
    border-radius: 0;
    background: var(--live-coral);
    box-shadow: none;
    font-size: 22px;
}

.hero-slider {
    min-height: 460px;
    color: #fff;
    background: #323232;
}

.hero-slide {
    min-height: 460px;
    padding: 30px 18px 48px;
    background-image: linear-gradient(rgba(38, 45, 50, 0.12), rgba(38, 45, 50, 0.18)), url("/assets/images/site/hero-slide-1.webp");
    background-position: center 49%;
    background-size: cover;
    filter: saturate(0.9);
}

.hero-slide:nth-child(2),
.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(38, 45, 50, 0.08), rgba(38, 45, 50, 0.15)), url("/assets/images/site/hero-slide-1.webp");
}

.hero-slide:nth-child(3) {
    filter: saturate(1.2) contrast(1.02);
}

.hero-slider::after {
    display: none;
}

.hero-copy {
    width: min(1120px, 100%);
    max-width: none;
}

.hero-copy h1 {
    display: grid;
    gap: 12px;
    margin: 0;
    font-size: 72px;
    font-weight: 200;
    line-height: 1.12;
    letter-spacing: 6px;
    text-transform: none;
}

.hero-copy h1 span {
    display: block;
}

.hero-slide.is-active .hero-copy h1 span {
    animation: live-title-reveal 1.1s both;
}

.hero-slide.is-active .hero-copy h1 span:nth-child(2) {
    animation-delay: 150ms;
}

@keyframes live-title-reveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-button {
    min-height: 48px;
    margin-top: 48px;
    padding: 0 32px;
    border-radius: 0;
    color: #fff;
    background: rgba(205, 106, 103, 0.72);
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.hero-button i {
    margin-right: 9px;
    font-size: 19px;
}

.hero-dots {
    bottom: 14px;
    gap: 8px;
}

.hero-dots button,
.hero-dots span {
    width: 11px;
    min-height: 11px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
}

.hero-dots .is-active {
    background: rgba(255, 255, 255, 0.9);
}

.wwh-band {
    min-height: 355px;
    padding: 40px 0 33px;
}

.live-wwh {
    align-items: start;
}

.live-wwh section {
    padding: 0 22px;
    border: 0;
}

.live-wwh i {
    color: var(--live-gold);
    font-size: 64px;
}

.live-wwh h2 {
    margin: 14px 0 14px;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
}

.live-wwh p {
    margin: 0;
    line-height: 1.65;
}

.intro-section {
    position: relative;
    min-height: 502px;
    padding: 68px 0 92px;
    color: #fff;
    background: var(--live-coral);
}

.intro-section::after,
.get-started-band::before,
.get-started-band::after {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 2;
    height: 23px;
    background: #fff;
    clip-path: polygon(0 45%, 2% 25%, 5% 52%, 9% 34%, 13% 58%, 18% 28%, 23% 48%, 29% 25%, 36% 56%, 43% 35%, 50% 51%, 58% 30%, 64% 57%, 72% 32%, 79% 51%, 87% 28%, 94% 55%, 100% 36%, 100% 100%, 0 100%);
    content: "";
}

.intro-section::after {
    bottom: -1px;
}

.intro-copy-live {
    text-align: center;
}

.intro-copy-live h2 {
    margin: 0 auto 34px;
    font-size: 33px;
    font-weight: 300;
    line-height: 1.35;
}

.intro-copy-live p {
    margin: 0 auto 18px;
    max-width: 1120px;
    font-size: 15px;
    line-height: 1.7;
}

.evolve-heading {
    display: grid;
    min-height: 198px;
    place-items: center;
    padding: 36px 0;
    text-align: center;
    background: #fff;
}

.evolve-heading h2 {
    margin: 0 0 9px;
    font-size: 40px;
    font-weight: 300;
}

.evolve-heading p {
    margin: 0;
    color: #929292;
    font-style: italic;
}

.evolve-section {
    min-height: 337px;
    margin-bottom: 20px;
    padding: 29px 0 28px;
    color: var(--live-text);
    text-align: left;
    background: #fff;
}

.evolve-media-grid {
    grid-template-columns: minmax(0, 497px) minmax(0, 1fr);
    gap: 70px;
}

.evolve-media-grid video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
}

.evolve-tabs {
    align-self: start;
    padding-top: 10px;
}

.evolve-tab-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.evolve-tab-list button {
    min-width: 0;
    min-height: 48px;
    border: 1px solid #dedede;
    border-radius: 0;
    color: #444;
    background: #f8f8f8;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
}

.evolve-tab-list button + button {
    border-left: 0;
}

.evolve-tab-list button[aria-selected="true"] {
    border-top-color: #e76663;
    border-bottom-color: #fff;
    color: #3c3c3c;
    background: #fff;
}

.evolve-tab-list i {
    margin-right: 8px;
    color: var(--live-coral);
    font-size: 18px;
}

.evolve-pane {
    padding: 25px 12px;
    font-size: 15px;
    line-height: 1.7;
}

.evolve-pane[hidden] {
    display: none;
}

.evolve-pane p {
    margin: 0;
}

.get-started-band {
    position: relative;
    display: grid;
    min-height: 201px;
    place-items: center;
    background: var(--live-red);
}

.get-started-band::before {
    top: -1px;
    transform: rotate(180deg);
}

.get-started-band::after {
    bottom: -1px;
}

.get-started-band .wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 110px;
    align-items: center;
}

.get-started-band span {
    height: 1px;
    background: rgba(217, 163, 160, 0.42);
}

.get-started-band .button,
.gold-button {
    min-height: 40px;
    border-radius: 3px;
    color: #fff;
    background: var(--live-gold);
    box-shadow: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.get-started-band .button i,
.gold-button i {
    margin-right: 9px;
    font-size: 19px;
}

.process-ribbon {
    min-height: 471px;
    padding: 60px 0 48px;
    background: #fff url("/assets/images/site/section-background-stripes.svg") repeat;
    background-size: 5px 5px;
}

.process-steps {
    gap: 34px;
}

.process-steps article {
    padding: 0;
    border: 0;
    border-radius: 0;
    text-align: center;
    background: transparent;
    box-shadow: none;
}

.process-ring {
    display: grid;
    width: 112px;
    height: 112px;
    margin: 0 auto 24px;
    border: 4px solid #efefef;
    border-top-color: #6da0bd;
    border-right-color: #6da0bd;
    border-radius: 50%;
    place-items: center;
    color: #6da0bd;
    font-size: 37px;
    transform: rotate(-6deg);
}

.process-ring i {
    transform: rotate(6deg);
}

.ring-2 { border-top-color: #c7a15e; border-right-color: #c7a15e; color: #c7a15e; transform: rotate(18deg); }
.ring-2 i { transform: rotate(-18deg); }
.ring-3 { border-color: #aaba76; border-top-color: #efefef; color: #aaba76; transform: rotate(-12deg); }
.ring-3 i { transform: rotate(12deg); }
.ring-4 { border-color: #e56662; border-left-color: #efefef; color: #e56662; transform: rotate(12deg); }
.ring-4 i { transform: rotate(-12deg); }

.process-steps h3 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}

.process-steps p {
    margin: 0;
    line-height: 1.68;
}

.explore-band {
    min-height: 177px;
    padding: 45px 0;
    background: url("/assets/images/site/bckg-5-bw.jpg") center 48% / cover no-repeat;
}

.explore-band .wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
}

.explore-band h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 300;
    text-align: center;
}

.gold-button {
    min-width: 244px;
    text-transform: none;
}

.delivery-statement {
    display: grid;
    min-height: 268px;
    place-items: center;
    padding: 52px 0;
    color: var(--live-muted);
    text-align: center;
    background: #303030 url("/assets/images/site/section-background-stripes.svg") repeat;
    background-size: 5px 5px;
}

.delivery-statement h2 {
    margin: 0 0 32px;
    color: var(--live-rose);
    font-size: 27px;
    font-weight: 400;
    text-transform: uppercase;
}

.delivery-statement p {
    max-width: 920px;
    margin: 0 auto;
    line-height: 1.7;
}

.ai-concept-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 125px);
    padding: clamp(18px, 3vw, 34px);
    color: #2b3031;
    background:
        radial-gradient(circle at 75% 42%, rgba(251, 180, 105, 0.26), transparent 22%),
        linear-gradient(135deg, #d8d8d4 0%, #f3f1ec 45%, #cacdc9 100%);
}

.ai-concept-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    mask-image: radial-gradient(circle at 52% 46%, black, transparent 72%);
    pointer-events: none;
}

.concept-browser {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(1320px, 100%);
    min-height: clamp(640px, calc(100vh - 172px), 860px);
    margin: 0 auto;
    grid-template-rows: auto minmax(360px, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(239, 239, 235, 0.76);
    box-shadow: 0 30px 90px rgba(55, 58, 55, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.concept-browser-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 0 clamp(18px, 3vw, 36px);
    border-bottom: 1px solid rgba(52, 55, 54, 0.10);
}

.concept-logo {
    color: #222;
    font-family: Raleway, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

.concept-logo span {
    color: var(--live-coral);
}

.concept-browser-top nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 3vw, 44px);
}

.concept-browser-top a {
    color: rgba(42, 43, 42, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.concept-browser-top a:hover {
    color: #111;
    text-decoration: none;
}

.concept-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
    gap: clamp(20px, 5vw, 72px);
    align-items: center;
    padding: clamp(30px, 5vw, 72px) clamp(24px, 5vw, 76px);
}

.concept-copy {
    position: relative;
    z-index: 2;
    max-width: 570px;
}

.concept-kicker {
    margin: 0 0 18px;
    color: #707873;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.concept-copy h1 {
    margin: 0;
    color: #202323;
    font-size: 4.75rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 0.98;
    text-transform: uppercase;
}

.concept-copy p:not(.concept-kicker) {
    max-width: 480px;
    margin: 24px 0 0;
    color: #606865;
    font-size: 1rem;
    line-height: 1.75;
}

.concept-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
}

.concept-primary {
    min-height: 46px;
    border-radius: 999px;
    padding-inline: 24px;
    background: #151515;
    box-shadow: 0 14px 28px rgba(26, 27, 27, 0.18);
    font-size: 0.9rem;
}

.concept-primary i {
    margin-right: 8px;
}

.concept-secondary {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    border: 1px solid rgba(32, 35, 35, 0.14);
    border-radius: 999px;
    padding: 0 22px;
    color: #2c3131;
    background: rgba(255, 255, 255, 0.42);
    font-weight: 800;
}

.concept-secondary:hover {
    color: #111;
    text-decoration: none;
}

.ai-fireframe {
    position: relative;
    min-height: clamp(340px, 45vw, 560px);
    overflow: visible;
}

.ai-fireframe canvas {
    position: absolute;
    inset: -8% -4% -4%;
    width: 108%;
    height: 112%;
}

.fire-core {
    position: absolute;
    top: 50%;
    left: 52%;
    width: clamp(76px, 11vw, 142px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 8%, rgba(255, 216, 141, 0.92) 12%, rgba(237, 103, 47, 0.68) 29%, rgba(122, 34, 26, 0.18) 58%, transparent 72%);
    filter: blur(0.3px);
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    animation: fire-pulse 2.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fire-pulse {
    0%, 100% { opacity: 0.78; transform: translate(-50%, -50%) scale(0.92); }
    45% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.concept-service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0 clamp(18px, 4vw, 54px) clamp(18px, 4vw, 42px);
}

.concept-service-strip article {
    min-height: 212px;
    padding: 22px;
    border: 1px solid rgba(60, 65, 65, 0.08);
    border-radius: 8px;
    background: rgba(247, 247, 244, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 45px rgba(64, 69, 66, 0.10);
}

.concept-service-strip h2 {
    margin: 15px 0 10px;
    color: #333;
    font-size: 1.05rem;
    font-weight: 800;
}

.concept-service-strip p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #77807b;
    font-size: 0.84rem;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.service-glyph {
    position: relative;
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto;
    filter: drop-shadow(18px 22px 10px rgba(64, 65, 61, 0.22));
}

.service-glyph::before,
.service-glyph::after {
    position: absolute;
    inset: 14px;
    border: 4px solid rgba(196, 161, 83, 0.72);
    content: "";
}

.service-glyph-loop::before {
    border-right-color: rgba(255, 255, 255, 0.90);
    border-radius: 50%;
}

.service-glyph-loop::after {
    inset: 24px;
    border-width: 3px;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(35deg);
}

.service-glyph-triangle::before {
    inset: 17px 12px 10px;
    width: 0;
    height: 0;
    border: 0;
    border-right: 30px solid transparent;
    border-bottom: 54px solid rgba(196, 161, 83, 0.72);
    border-left: 30px solid transparent;
    background: transparent;
}

.service-glyph-triangle::after {
    inset: 31px 29px auto;
    width: 24px;
    height: 24px;
    border: 0;
    border-right: 13px solid transparent;
    border-bottom: 23px solid rgba(247, 247, 244, 0.96);
    border-left: 13px solid transparent;
}

.service-glyph-diamond::before {
    transform: rotate(45deg);
}

.service-glyph-diamond::after {
    inset: 26px;
    border-width: 3px;
    transform: rotate(45deg);
}

@media (max-width: 1180px) {
    .concept-copy h1 {
        font-size: 3.75rem;
    }
}

@media (max-width: 860px) {
    .ai-concept-hero {
        min-height: 0;
        padding: 18px;
    }

    .concept-browser {
        min-height: 0;
        grid-template-rows: auto auto auto;
    }

    .concept-hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 42px 32px;
    }

    .concept-copy {
        max-width: 650px;
    }

    .concept-copy h1 {
        max-width: 610px;
        font-size: 3.4rem;
    }

    .ai-fireframe {
        min-height: 390px;
    }

    .concept-service-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ai-concept-hero {
        padding: 10px;
    }

    .concept-browser-top {
        min-height: 56px;
        padding-inline: 14px;
    }

    .concept-browser-top nav {
        gap: 14px;
    }

    .concept-browser-top nav a:nth-child(2),
    .concept-browser-top nav a:nth-child(3) {
        display: none;
    }

    .concept-hero-grid {
        padding: 34px 18px 22px;
    }

    .concept-copy h1 {
        font-size: 2.35rem;
        line-height: 1.03;
    }

    .concept-copy p:not(.concept-kicker) {
        font-size: 0.94rem;
    }

    .concept-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .concept-actions a {
        justify-content: center;
        text-align: center;
    }

    .ai-fireframe {
        min-height: 300px;
    }

    .concept-service-strip article {
        min-height: 190px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fire-core {
        opacity: 0.86;
        animation: none;
    }
}

.community-section {
    min-height: 612px;
    padding: 55px 0 52px;
    color: var(--live-muted);
    background: #333 url("/assets/images/site/section-background-stripes2.svg") center / cover;
}

.community-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.community-grid article,
.community-grid .approach-panel,
.community-grid .tag-panel,
.community-grid .recent-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--live-muted);
    background: transparent;
    box-shadow: none;
}

.community-grid h2 {
    margin: 0 0 37px;
    color: var(--live-rose);
    font-size: 27px;
    font-weight: 400;
}

.approach-panel > p {
    min-height: 220px;
    margin: 0 0 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid #666;
    line-height: 1.68;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(1) contrast(0.9);
}

.tag-cloud {
    min-height: 165px;
    align-content: start;
    justify-content: center;
    gap: 3px;
    padding: 10px 5px 34px;
    border-bottom: 1px solid #666;
}

.tag-cloud a {
    padding: 2px 4px;
    border: 0;
    border-radius: 2px;
    color: #353535;
    background: var(--live-rose);
    font-size: 13px;
    line-height: 1.2;
}

.tag-cloud a:nth-child(3n) { font-size: 24px; }
.tag-cloud a:nth-child(4n) { font-size: 20px; }
.tag-cloud a:nth-child(5n) { font-size: 17px; }

.ascent-callout {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 6px 14px;
    padding: 28px 20px 0;
}

.ascent-callout > i {
    grid-row: 1 / 3;
    color: #e16d7a;
    font-size: 55px;
}

.ascent-callout h3 {
    margin: 0;
    color: #aaa;
    font-size: 25px;
    font-weight: 300;
}

.ascent-callout p {
    margin: 0;
}

.contextual-footer--service .approach-panel > p {
    min-height: 0;
}

.service-footer-copy {
    display: grid;
    gap: 20px;
}

.service-footer-copy strong {
    color: #ddd;
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.45;
}

.service-footer-copy p {
    margin: 0;
    line-height: 1.68;
}

.service-footer-copy .outline-button {
    grid-column: auto;
}

.outline-button {
    grid-column: 2;
    width: max-content;
    min-height: 54px;
    margin-top: 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #eee;
    background: transparent;
    box-shadow: none;
    font-size: 18px;
    font-weight: 400;
}

.recent-list {
    gap: 0;
}

.recent-list a {
    position: relative;
    display: grid;
    min-height: 107px;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 10px;
    padding: 14px;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.60)), var(--article-image);
    background-position: center;
    background-size: cover;
}

.recent-list a:hover {
    text-decoration: none;
}

.recent-list time {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: pre-line;
}

.recent-list strong {
    font-family: Raleway, sans-serif;
    font-size: 19px;
    line-height: 1.05;
}

.stat-band {
    min-height: 211px;
    color: #ddd;
    background: #303030 url("/assets/images/site/section-background-stripes2.svg") center / cover;
}

.stat {
    min-height: 211px;
    border: 0;
    text-shadow: none;
}

.stat strong {
    color: #ff8e77;
    font-size: 43px;
    font-weight: 300;
}

.stat:nth-child(2) strong { color: #bc6e9a; }
.stat:nth-child(3) strong { color: #f77b9f; }
.stat:nth-child(4) strong { color: #ff8c73; }

.stat span {
    color: #ddd;
    font-size: 17px;
    font-weight: 300;
}

.site-footer {
    min-height: 65px;
    padding: 0;
    color: #bbb;
    background: #383a3b;
}

.site-footer .wrap {
    position: relative;
    justify-content: center;
    min-height: 65px;
}

.back-to-top {
    position: absolute;
    right: 0;
    width: 16px;
    height: 16px;
    border-top: 2px solid #777;
    border-left: 2px solid #777;
    transform: rotate(45deg);
}

@media (max-width: 1180px) {
    .brand { flex-basis: 300px; }
    .brand img { width: 300px; }
    .primary-menu > a,
    .nav-group > a { padding-inline: 9px; font-size: 14px; }
    .header-tools button { width: 40px; }
}

@media (max-width: 1040px) {
    .header-inner { justify-content: space-between; }
    .brand { flex: 0 0 auto; }
    .primary-menu {
        position: absolute;
        top: 90px;
        right: 16px;
        left: 16px;
        display: none;
        padding: 12px;
        background: #2d2d2d;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    }
    .primary-menu.is-open { display: block; }
    .primary-menu > a,
    .nav-group > a { min-height: 46px; padding: 0 12px; }
    .nav-group .dropdown,
    .nav-group .dropdown.wide {
        position: static;
        display: none;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .nav-group:focus-within .dropdown { display: grid; }
    .nav-group.is-open > .dropdown { display: grid; }
    .nav-group > a { padding-right: 50px; }
    .nav-group > a > .nav-chevron { display: none; }
    .nav-dropdown-toggle {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        display: inline-flex;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        color: #fff;
        background: transparent;
        cursor: pointer;
    }
    .nav-dropdown-toggle .nav-chevron { margin: 0 0 4px; }
    .nav-group.is-open > .nav-dropdown-toggle .nav-chevron { transform: rotate(-135deg); }
    .submenu {
        position: static;
        display: none;
        width: 100%;
        padding: 2px 0 8px 14px;
        border-top: 0;
        border-left: 2px solid var(--live-rose);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .submenu-group:hover > .submenu,
    .submenu-group:focus-within > .submenu,
    .submenu-group.is-open > .submenu { display: block; }
    .submenu-toggle { width: 46px; flex-basis: 46px; }
    .submenu-group.is-open .submenu-toggle .nav-chevron { transform: rotate(45deg); }
    .menu-toggle { display: block; order: 2; }
    .header-tools { margin-left: auto; order: 1; }
    .brand { order: 0; }
    .desktop-menu-mark { display: none; }
    .process-steps { gap: 18px; }
    .community-grid { gap: 24px; }
}

@media (max-width: 860px) {
    .top-bar { display: none; }
    .site-search,
    .quick-panel,
    .cart-panel { top: 76px; }
    .site-header,
    .header-inner { min-height: 76px; }
    .brand-full { display: none !important; }
    .brand-mobile { display: block !important; width: 54px !important; }
    .primary-menu { top: 76px; }
    .header-tools button,
    .search-toggle { min-height: 76px; }
    .hero-slider,
    .hero-slide { min-height: 450px; }
    .hero-copy h1 { font-size: 49px; line-height: 1.15; letter-spacing: 2px; }
    .wwh { grid-template-columns: 1fr; }
    .wwh-band { padding-block: 30px; }
    .live-wwh section { padding: 25px 10px; }
    .intro-section { min-height: 0; padding: 70px 0 85px; }
    .evolve-media-grid { grid-template-columns: 1fr; gap: 26px; }
    .evolve-section { padding-block: 36px; }
    .get-started-band .wrap { gap: 24px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
    .process-ribbon { padding-block: 54px; }
    .explore-band .wrap { grid-template-columns: 1fr; gap: 24px; }
    .community-grid { grid-template-columns: 1fr; gap: 52px; }
    .community-section { padding-block: 50px; }
    .approach-panel > p { min-height: 0; }
    .stat-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .header-inner { gap: 4px; }
    .header-tools .cart-toggle { display: none; }
    .header-tools button { width: 42px; }
    .hero-slider,
    .hero-slide { min-height: 410px; }
    .hero-copy h1 { gap: 7px; font-size: 38px; line-height: 1.15; }
    .hero-button { margin-top: 36px; }
    .live-wwh h2 { font-size: 29px; }
    .intro-copy-live h2 { font-size: 28px; }
    .evolve-heading h2 { font-size: 32px; }
    .evolve-tab-list { grid-template-columns: 1fr; }
    .evolve-tab-list button + button { border-left: 1px solid #dedede; border-top: 0; }
    .get-started-band .wrap { grid-template-columns: 1fr; }
    .get-started-band span { display: none; }
    .process-steps { grid-template-columns: 1fr; }
    .explore-band h2 { font-size: 28px; }
    .gallery-grid { gap: 4px; }
    .stat-band { grid-template-columns: 1fr; }
    .stat { min-height: 150px; }
    .back-to-top { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active .hero-copy h1 span { animation: none; }
}

.articles-hero {
    position: relative;
    min-height: 428px;
    overflow: hidden;
    color: #fff;
    background: #7d8587 url("/assets/images/site/hero-slide-1.webp") center / cover;
}

.articles-hero video,
.articles-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.articles-hero video {
    object-fit: cover;
}

.articles-hero-overlay {
    background: rgba(40, 45, 48, 0.14);
}

.articles-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 428px;
    align-content: center;
    justify-items: start;
    text-shadow: 0 3px 6px rgba(31, 31, 31, 0.42);
}

.articles-hero-copy h1,
.articles-hero-copy p,
.articles-hero-copy strong {
    margin: 0;
    font-family: Raleway, sans-serif;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.25;
}

.articles-hero-copy strong {
    min-height: 57px;
    color: #ee5c54;
    font-weight: 700;
}

.article-wwh {
    min-height: 405px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.article-wwh .live-wwh p {
    line-height: 1.65;
}

.article-listing {
    min-height: 1026px;
    margin-top: 29px;
    padding: 34px 0 80px;
    background: #d4c78b;
}

.article-listing > .wrap > h2 {
    margin: 0 0 27px;
    font-size: 27px;
    font-weight: 400;
    text-align: center;
}

.live-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.live-article-grid .article-card {
    display: flex;
    min-height: 650px;
    overflow: hidden;
    flex-direction: column;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}

.live-article-grid .article-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.live-article-grid .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-article-grid .article-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 15px 16px;
}

.live-article-grid .article-card h3 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.25;
}

.live-article-grid .article-card h3 a {
    color: #e2554d;
}

.live-article-grid .article-card > div > p,
.live-article-grid .article-card-body > p {
    margin: 0 0 13px;
    color: #303030;
    font-size: 15px;
    line-height: 1.55;
}

.article-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-top: auto;
    color: #777;
    font-size: 12px;
}

.article-card-meta span:first-child {
    color: #e2554d;
}

.article-rating {
    color: #777;
    font-size: 12px;
}

.article-rating span {
    color: #e2554d;
    font-size: 18px;
    letter-spacing: 1px;
}

.live-article-grid .read-more {
    width: 139px;
    min-height: 43px;
    margin: 8px 20px 0 auto;
    border-radius: 3px;
    color: #fff;
    background: #777572;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
}

.load-more-button {
    display: flex;
    width: 138px;
    min-height: 45px;
    margin: 30px auto 0;
    border-radius: 3px;
    background: #ec5a49;
    box-shadow: none;
}

.article-community {
    min-height: 607px;
}

.zoho-promo {
    position: relative;
    min-height: 553px;
    overflow: hidden;
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 37px 0 18px;
    background: #f7f7f7;
}

.promo-watermark {
    position: absolute;
    inset: 100px 0 0;
    background: url("/assets/images/site/zoho-promo-watermark.png") center / 700px auto no-repeat;
    opacity: 0.035;
}

.promo-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.promo-inner h1 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 7px;
    border-bottom: 1px solid #d6d6d6;
    font-size: 33px;
    font-weight: 300;
}

.promo-inner h1::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 220px;
    height: 2px;
    background: #ed6c67;
    content: "";
}

.promo-inner p {
    margin: 0 0 21px;
    line-height: 1.7;
}

.promo-inner a {
    color: #e5534d;
    font-weight: 700;
}

.article-shell {
    display: grid;
    grid-template-columns: 316px minmax(0, 1fr) 250px;
    gap: 16px;
    align-items: start;
    padding: 50px 0 78px;
}

.article-visual .feature-image {
    width: 100%;
    max-height: none;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
}

.article-main {
    min-width: 0;
}

.article-main > h1 {
    margin: -7px 0 8px;
    padding-bottom: 7px;
    border-bottom: 1px solid #d8d8d8;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
}

.article-main > h1::after {
    display: block;
    width: 315px;
    height: 2px;
    margin: 7px 0 -9px;
    background: #ed6c67;
    content: "";
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin: 0 0 22px;
    color: #777;
    font-size: 12px;
}

.article-meta-row div {
    display: flex;
    gap: 4px;
}

.article-meta-row dt,
.article-meta-row dd {
    margin: 0;
    font-weight: 400;
}

.article-meta-row dd:first-letter {
    color: #e5534d;
}

.live-article-body {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.68;
}

.live-article-body h2 {
    margin: 17px 0 3px;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.live-article-body p {
    margin: 0 0 14px;
}

.live-article-body a {
    color: #e5534d;
    font-weight: 600;
}

.live-article-body pre {
    max-width: 100%;
    margin: 14px 0 20px;
    padding: 16px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 1.55;
    white-space: pre;
}

.live-article-body code {
    font: inherit;
}

.live-article-body img {
    max-width: 100% !important;
    height: auto;
    margin: 12px auto;
}

.live-article-body ol,
.live-article-body ul {
    margin: 10px 0 18px;
    padding-left: 25px;
}

.live-article-body li + li {
    margin-top: 5px;
}

.live-article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.live-article-body th,
.live-article-body td {
    padding: 7px 9px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.article-side-menu {
    display: grid;
}

.article-side-menu a {
    position: relative;
    min-height: 41px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #292929;
}

.article-side-menu span {
    position: absolute;
    top: 15px;
    right: 4px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.article-comments {
    grid-column: 2 / 4;
    margin-top: 42px;
}

.comment-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 1040px) {
    .article-shell { grid-template-columns: 260px minmax(0, 1fr); gap: 24px; }
    .article-side-menu { display: none; }
    .article-comments { grid-column: 2; }
}

@media (max-width: 860px) {
    .articles-hero,
    .articles-hero-copy { min-height: 390px; }
    .articles-hero-copy h1,
    .articles-hero-copy p,
    .articles-hero-copy strong { font-size: 38px; }
    .live-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-shell { grid-template-columns: 1fr; padding-inline: 16px; }
    .article-visual { max-width: 520px; }
    .article-comments { grid-column: 1; }
    .zoho-promo { min-height: 0; }
}

@media (max-width: 560px) {
    .articles-hero-copy h1,
    .articles-hero-copy p,
    .articles-hero-copy strong { font-size: 31px; }
    .article-wwh { padding-block: 30px; }
    .live-article-grid { grid-template-columns: 1fr; }
    .promo-inner h1 { font-size: 28px; }
    .promo-inner { padding-inline: 20px; }
    .article-main > h1 { font-size: 31px; }
    .article-main > h1::after { width: 70%; }
}
