:root {
    --space-black: #02070B;
    --deep-space: #061018;
    --nebula-slate: #101A1F;
    --quantum-teal: #68E0C4;
    --luminous-mint: #8DF0D5;
    --moon-ivory: #F6F1EA;
    --mist-silver: #AFC9C0;
    --data-cyan: #2ED8C3;
    --neural-ink: var(--space-black);
    --cognitive-graphite: var(--deep-space);
    --living-surface: var(--nebula-slate);
    --human-parchment: var(--moon-ivory);
    --soft-sage: var(--mist-silver);
    --quiet-steel: var(--mist-silver);
    --section-label: #B9CEC6;
    --copy-secondary: rgba(246, 241, 234, 0.76);
    --sentient-mint: var(--quantum-teal);
    --synapse-violet: var(--data-cyan);
    --trust-clay: var(--luminous-mint);
    --error-red: #F87171;
    --line: rgba(246, 241, 234, 0.14);
    --line-strong: rgba(104, 224, 196, 0.42);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --container: 1280px;
    --side: clamp(20px, 3.9vw, 80px);
    --font-site: "Helvetica Neue", Arial, sans-serif;
    --display: var(--font-site);
    --body: var(--font-site);
    --ui: var(--font-site);
    --type-hero: clamp(4.25rem, 5.85vw, 6.35rem);
    --type-section: clamp(2.55rem, 4.6vw, 4.9rem);
    --type-panel: clamp(2.35rem, 4vw, 4.25rem);
    --type-card: clamp(1.25rem, 1.65vw, 1.6rem);
    --type-body-large: 1.0625rem;
    --type-body: 1rem;
    --type-small: 0.9rem;
    --type-label: 0.75rem;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.22, 1.14, 0.36, 1);
    --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
    --duration-slow: 1100ms;
    --duration-medium: 760ms;
    --header-height: 92px;
    /* Canonical vertical rhythm shared by every standard content section
       (home, trangle and web-development). Mobile value is set in the
       max-width: 900px block so all sections stay in lockstep. */
    --section-space: clamp(96px, 8vw, 118px);
    /* Quiet button pack — fully rounded pills, restrained motion */
    --button-radius: 999px;
    --button-radius-soft: 999px;
    --button-height-sm: 38px;
    --button-height-md: 46px;
    --button-height-lg: 54px;
    --button-padding-sm: 9px 18px;
    --button-padding-md: 13px 26px;
    --button-padding-lg: 16px 32px;
    --button-gap: 8px;
    --button-font-size: 0.9rem;
    --button-font-weight: 600;
    --button-border: 1px solid transparent;
    --button-motion-duration: 130ms;
    --button-color-duration: 130ms;
    --button-hover-lift: 0px;
    --button-press-scale: 1;
    --button-ease-out: cubic-bezier(0.2, 0, 0, 1);
    --button-ease-move: cubic-bezier(0.2, 0, 0, 1);
    --button-primary-bg: var(--sentient-mint);
    --button-primary-bg-hover: color-mix(in oklch, var(--sentient-mint) 90%, var(--human-parchment));
    --button-primary-fg: var(--neural-ink);
    --button-ghost-bg: transparent;
    --button-ghost-bg-hover: color-mix(in oklch, var(--sentient-mint) 9%, transparent);
    --button-ghost-border: color-mix(in oklch, var(--sentient-mint) 38%, transparent);
    --button-dark-bg: var(--neural-ink);
    --button-dark-bg-hover: var(--cognitive-graphite);
    --button-dark-fg: var(--human-parchment);
    --button-quiet-bg: transparent;
    --button-quiet-bg-hover: color-mix(in oklch, var(--human-parchment) 8%, transparent);
    --button-danger-bg: var(--error-red);
    --button-danger-fg: var(--neural-ink);
    --button-shadow-primary: 0 0 0 transparent;
    --button-shadow-dark: 0 0 0 transparent;
    --button-focus-ring: 0 0 0 3px color-mix(in oklch, var(--sentient-mint) 30%, transparent);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    --scroll-progress: 0;
}

body {
    margin: 0;
    background: var(--neural-ink);
    color: var(--human-parchment);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    overflow-x: hidden;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(104, 224, 196, 0.2), var(--sentient-mint), rgba(246, 241, 234, 0.72));
    box-shadow: 0 0 18px rgba(104, 224, 196, 0.26);
    pointer-events: none;
    transform: scaleX(var(--scroll-progress));
    transform-origin: left center;
    transition: opacity 240ms ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 76% 20%, rgba(104, 224, 196, 0.1), transparent 28%),
        radial-gradient(circle at 14% 66%, rgba(46, 216, 195, 0.05), transparent 24%),
        var(--neural-ink);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--sentient-mint);
    outline-offset: 4px;
}

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

.container,
.container-fluid {
    width: calc(100% - calc(var(--side) * 2));
    max-width: none;
    margin-inline: auto;
}

[id] {
    scroll-margin-top: 96px;
}

#top {
    scroll-margin-top: 124px;
}

.top-bar {
    background: var(--cognitive-graphite);
    border-bottom: 1px solid var(--line);
    font-family: var(--ui);
    font-size: var(--type-small);
    color: var(--soft-sage);
}

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

.top-bar a {
    transition: color 180ms ease;
}

.top-bar a:hover {
    color: var(--sentient-mint);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(2, 7, 11, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 24px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    min-width: max-content;
    font-family: var(--ui);
    font-weight: 700;
    color: var(--human-parchment);
}

.brand img {
    width: clamp(138px, 12vw, 154px);
    height: auto;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 28px);
    margin-left: auto;
    font-family: var(--ui);
    font-size: var(--type-small);
    font-weight: 500;
    color: var(--soft-sage);
}

.primary-nav a {
    position: relative;
    padding-block: 28px;
    white-space: nowrap;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 1px;
    background: var(--sentient-mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.primary-nav a:hover {
    color: var(--human-parchment);
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.header-action,
.btn {
    --button-min-height: var(--button-height-md);
    --button-padding: var(--button-padding-md);
    --button-bg: transparent;
    --button-bg-hover: var(--button-quiet-bg-hover);
    --button-fg: var(--human-parchment);
    --button-border-color: transparent;
    --button-border-color-hover: var(--button-border-color);
    --button-shadow: 0 0 0 transparent;
    --button-shadow-hover: 0 0 0 transparent;
    --button-spinner-color: var(--button-fg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--button-gap);
    min-height: var(--button-min-height);
    max-width: 100%;
    padding: var(--button-padding);
    border: var(--button-border);
    border-color: var(--button-border-color);
    border-radius: var(--button-radius);
    background: var(--button-bg);
    color: var(--button-fg);
    box-shadow: var(--button-shadow);
    cursor: pointer;
    font-family: var(--ui);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    user-select: none;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-tap-highlight-color: transparent;
}

/* Inline north-east arrow icon (partials/arrow-icon). Sizes with the text it
   sits beside and inherits its colour, so it works in buttons and links alike.
   Inside .btn the flex gap handles spacing; in plain inline contexts the
   vertical-align keeps it optically centred on the cap height. */
.ui-arrow {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    vertical-align: -0.125em;
}

.header-action,
.btn--primary {
    --button-bg: var(--button-primary-bg);
    --button-bg-hover: var(--button-primary-bg-hover);
    --button-fg: var(--button-primary-fg);
    --button-border-color: var(--button-primary-bg);
    --button-border-color-hover: var(--button-primary-bg-hover);
    --button-shadow-hover: var(--button-shadow-primary);
}

.btn--ghost {
    --button-bg: var(--button-ghost-bg);
    --button-bg-hover: var(--button-ghost-bg-hover);
    --button-fg: var(--sentient-mint);
    --button-border-color: var(--button-ghost-border);
    --button-border-color-hover: var(--sentient-mint);
}

.btn--dark {
    --button-bg: var(--button-dark-bg);
    --button-bg-hover: var(--button-dark-bg-hover);
    --button-fg: var(--button-dark-fg);
    --button-border-color: rgba(2, 7, 11, 0.62);
    --button-border-color-hover: color-mix(in oklch, var(--human-parchment) 22%, transparent);
    --button-shadow-hover: var(--button-shadow-dark);
}

.btn--secondary {
    --button-bg: var(--human-parchment);
    --button-bg-hover: color-mix(in oklch, var(--human-parchment) 88%, var(--sentient-mint));
    --button-fg: var(--neural-ink);
    --button-border-color: color-mix(in oklch, var(--human-parchment) 72%, transparent);
    --button-border-color-hover: var(--human-parchment);
}

.btn--quiet,
.btn--subtle {
    --button-bg: var(--button-quiet-bg);
    --button-bg-hover: var(--button-quiet-bg-hover);
    --button-fg: var(--soft-sage);
    --button-border-color: transparent;
    --button-border-color-hover: transparent;
}

.btn--danger {
    --button-bg: var(--button-danger-bg);
    --button-bg-hover: color-mix(in oklch, var(--button-danger-bg) 86%, var(--human-parchment));
    --button-fg: var(--button-danger-fg);
    --button-border-color: var(--button-danger-bg);
    --button-border-color-hover: var(--button-bg-hover);
}

.btn--sm {
    --button-min-height: var(--button-height-sm);
    --button-padding: var(--button-padding-sm);
    --button-font-size: 0.82rem;
}

.btn--lg {
    --button-min-height: var(--button-height-lg);
    --button-padding: var(--button-padding-lg);
    --button-font-size: 0.96rem;
}

.btn--block {
    width: 100%;
}

.btn--icon {
    width: var(--button-min-height);
    aspect-ratio: 1;
    padding: 0;
}

.btn svg,
.header-action svg {
    width: 1.05em;
    height: 1.05em;
    flex: 0 0 auto;
}

.btn:disabled,
.btn[aria-disabled="true"],
.header-action[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.52;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.btn--loading,
.btn[aria-busy="true"] {
    color: transparent;
    pointer-events: none;
}

.btn--loading::after,
.btn[aria-busy="true"]::after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    border: 2px solid color-mix(in oklch, var(--button-spinner-color) 28%, transparent);
    border-top-color: var(--button-spinner-color);
    border-radius: 999px;
    animation: buttonSpin 720ms linear infinite;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover,
    .header-action:hover {
        background: var(--button-bg-hover);
        border-color: var(--button-border-color-hover);
        box-shadow: var(--button-shadow-hover);
    }
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--human-parchment);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
}

.mobile-nav {
    border-top: 1px solid var(--line);
    background: var(--cognitive-graphite);
    padding: 12px var(--side) 18px;
}

.mobile-nav a {
    display: block;
    min-height: 44px;
    padding: 10px 0;
    color: var(--soft-sage);
}

.site-header {
    background: rgba(2, 2, 3, 0.98);
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
}

.site-header__inner {
    min-height: var(--header-height);
}

.primary-nav {
    gap: clamp(18px, 2vw, 28px);
    color: var(--human-parchment);
    font-size: clamp(0.94rem, 1vw, 1.05rem);
    font-weight: 500;
}

.primary-nav__item {
    position: relative;
}

.primary-nav__link,
.primary-nav__trigger {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--human-parchment);
    cursor: pointer;
    font: inherit;
    line-height: 1.1;
    white-space: nowrap;
    opacity: 0.95;
    transition: color 180ms ease, opacity 180ms ease;
}

.primary-nav__link {
    position: relative;
    padding-block: 0;
}

.primary-nav__link::after {
    display: none;
}

.primary-nav__link.is-active {
    color: var(--sentient-mint);
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: var(--sentient-mint);
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
}

.primary-nav__link.is-active:hover {
    color: var(--sentient-mint);
}

.primary-nav__trigger svg {
    width: 12px;
    height: 8px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.primary-nav__item.is-active .primary-nav__trigger svg {
    transform: rotate(180deg);
}

.primary-nav__link:hover,
.primary-nav__trigger:hover,
.primary-nav__item.is-active .primary-nav__trigger {
    color: #ffffff;
    opacity: 1;
}

.primary-nav__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    z-index: 60;
    min-width: 280px;
    padding: 9px 12px;
    border: 1px solid rgba(246, 241, 234, 0.16);
    border-radius: 8px;
    background: #171a1f;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
    transform: translateX(-50%);
}

.primary-nav__dropdown a {
    display: block;
    padding: 7px 0;
    color: rgba(246, 241, 234, 0.58);
    font-size: 1rem;
    line-height: 1.25;
    transition: color 160ms ease;
}

.primary-nav__dropdown a::after {
    display: none;
}

.primary-nav__dropdown a:hover {
    color: var(--human-parchment);
}

.site-header .header-action {
    --button-bg: transparent;
    --button-bg-hover: var(--button-ghost-bg-hover);
    --button-fg: var(--human-parchment);
    --button-border-color: color-mix(in oklch, var(--sentient-mint) 42%, transparent);
    --button-border-color-hover: var(--sentient-mint);
    min-height: 44px;
    padding: 0 clamp(18px, 1.6vw, 24px);
    border-radius: 999px;
    box-shadow: none;
    font-size: clamp(0.94rem, 1vw, 1.05rem);
    font-weight: 500;
}

/* Active state — when the contact destination is the current page/section,
   the outline pill fills in so it reads as "you are here". */
.site-header .header-action.is-active {
    --button-bg: var(--sentient-mint);
    --button-bg-hover: var(--button-primary-bg-hover);
    --button-fg: var(--button-primary-fg);
    --button-border-color: var(--sentient-mint);
    --button-border-color-hover: var(--sentient-mint);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    width: 42px;
    height: 42px;
    margin-left: 2px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--human-parchment);
    cursor: pointer;
}

.menu-toggle span {
    width: 29px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
}

body.has-menu-open {
    overflow: hidden;
}

.menu-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    color: var(--human-parchment);
    pointer-events: none;
}

.menu-drawer__panel {
    position: absolute;
    top: 12px;
    right: 16px;
    bottom: 12px;
    width: min(498px, calc(100vw - 32px));
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(246, 241, 234, 0.05);
    border-radius: 8px;
    background: #171a1f;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.46);
    pointer-events: auto;
}

.menu-drawer__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-height: 0;
    padding: 0;
}

.menu-drawer__brand {
    display: none;
}

.menu-drawer__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--human-parchment);
    cursor: pointer;
}

.menu-drawer__close span {
    position: absolute;
    width: 31px;
    height: 2.5px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
}

.menu-drawer__close span + span {
    transform: rotate(-45deg);
}

.menu-drawer__content {
    min-height: 0;
    flex: 1;
    display: grid;
    overflow: hidden;
}

.menu-drawer__panel-view {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 22px 38px 26px;
    overflow-y: auto;
}

.menu-drawer__primary,
.menu-drawer__utility,
.menu-drawer__social,
.menu-drawer__subnav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-drawer__primary {
    display: grid;
    gap: 1px;
    padding: 4px 0 24px;
}

.menu-drawer__primary a,
.menu-drawer__primary button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--human-parchment);
    cursor: pointer;
    font-family: var(--display);
    font-size: clamp(2.45rem, 3.15vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
    text-align: left;
    letter-spacing: 0;
}

.menu-drawer__primary a.is-active {
    color: var(--sentient-mint);
}

.menu-drawer__primary svg {
    width: 18px;
    height: 26px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-drawer__utility {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 26px 0;
    border-top: 1px solid rgba(246, 241, 234, 0.12);
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
}

.menu-drawer__utility a {
    color: rgba(246, 241, 234, 0.86);
    font-family: var(--ui);
    font-size: 1.02rem;
    line-height: 1.25;
}

.menu-drawer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
}

.menu-drawer__social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(246, 241, 234, 0.1);
    color: var(--human-parchment);
    transition: background 180ms ease, transform 180ms ease;
}

.menu-drawer__social a:hover {
    background: rgba(246, 241, 234, 0.18);
    transform: translateY(-2px);
}

.menu-drawer__social svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-drawer__tagline {
    margin: 24px 0 0;
    color: rgba(246, 241, 234, 0.68);
    font-size: 1rem;
    line-height: 1.35;
}

.menu-drawer__back {
    width: max-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(246, 241, 234, 0.82);
    cursor: pointer;
    font-family: var(--ui);
    font-size: 1.02rem;
}

.menu-drawer__panel-view h2 {
    margin: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: clamp(2.45rem, 3.15vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.menu-drawer__subnav {
    display: grid;
    gap: 10px;
    padding: 46px 0 28px;
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
}

.menu-drawer__subnav a {
    display: block;
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: clamp(2.2rem, 2.75vw, 2.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.menu-drawer a,
.menu-drawer button {
    transition: color 180ms ease, opacity 180ms ease;
}

.menu-drawer a:hover,
.menu-drawer button:hover {
    color: #ffffff;
}

.hero {
    position: relative;
    height: calc(100dvh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: flex-start;
    padding: clamp(12px, 2vh, 24px) 0 clamp(54px, 7vh, 78px);
    overflow: hidden;
}

/* ============================================================
   SCROLL CUE — clickable hero scroll indicator (home + trangle)
   ============================================================ */
.scroll-cue {
    position: absolute;
    right: var(--side);
    bottom: clamp(20px, 4vh, 44px);
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--mist-silver);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.scroll-cue:hover {
    color: var(--moon-ivory);
}

.scroll-cue__text {
    writing-mode: vertical-rl;
    font-size: var(--type-label);
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.scroll-cue__line {
    position: relative;
    width: 1px;
    height: clamp(40px, 7vh, 64px);
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, color-mix(in oklch, var(--mist-silver) 55%, transparent));
}

.scroll-cue__line::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 42%;
    background: linear-gradient(to bottom, transparent, var(--sentient-mint));
    animation: scroll-cue-slide 1.9s var(--ease-soft) infinite;
}

.scroll-cue.is-hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

@keyframes scroll-cue-slide {
    0% { transform: translateY(-100%); opacity: 0; }
    35% { opacity: 1; }
    100% { transform: translateY(250%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-cue__line::after {
        animation: none;
        transform: translateY(60%);
    }
}

@media (max-width: 768px) {
    .scroll-cue {
        display: none;
    }
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}


.section-kicker {
    margin: 0 0 18px;
    color: var(--section-label);
    font-family: var(--ui);
    font-size: clamp(0.78rem, 0.72vw, 0.86rem);
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero__intro {
    position: relative;
    z-index: 1;
}

.hero__title {
    margin: 0 0 18px;
    max-width: 960px;
    font-family: var(--display);
    font-size: calc(var(--type-hero) + 10px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.title-line {
    display: block;
    overflow: visible;
    padding-bottom: 0.025em;
}

.title-line > span {
    display: block;
}

.hero-split-word {
    display: inline-block;
    overflow: visible;
    white-space: nowrap;
    vertical-align: baseline;
}

.hero-split-char {
    display: inline-block;
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(90ms + (var(--char-index) * 16ms));
    will-change: transform, opacity;
}

.hero__title .title-line:nth-child(1) .hero-split-char {
    transition-delay: calc(190ms + (var(--char-index) * 14ms));
}

.hero__title .title-line:nth-child(2) .hero-split-char {
    transition-delay: calc(300ms + (var(--char-index) * 14ms));
}

.hero__title .title-line:nth-child(3) .hero-split-char {
    transition-delay: calc(410ms + (var(--char-index) * 14ms));
}

.is-ready .hero-split-char {
    opacity: 1;
    transform: translateX(0);
}

.accent {
    color: var(--sentient-mint);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(28px, 3.6vw, 62px);
    align-items: center;
    height: calc(100% - clamp(72px, 9vh, 112px));
    min-height: 0;
}

.hero__copy p {
    margin: 0;
    max-width: 620px;
    color: var(--soft-sage);
    font-size: var(--type-body-large);
    line-height: 1.62;
}

.hero__copy .section-kicker {
    margin-bottom: 18px;
    color: var(--sentient-mint);
}

.hero__description,
.hero-actions {
    opacity: 1;
    transform: none;
    transition: none;
}


.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 14px 24px;
    max-width: 560px;
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(104, 224, 196, 0.34);
    color: var(--soft-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
    line-height: 1.2;
}

.hero-stat {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.hero-stat + .hero-stat {
    padding-left: 20px;
    border-left: 1px solid rgba(246, 241, 234, 0.13);
}

.hero-stat strong {
    display: inline-flex;
    align-items: baseline;
    color: var(--sentient-mint);
    font-family: var(--display);
    font-size: 3.35rem;
    line-height: 0.9;
    font-weight: 700;
}

.hero-stat strong span {
    color: inherit;
    font: inherit;
    line-height: inherit;
}

.hero-stat > span {
    color: var(--soft-sage);
    font-size: 0.95rem;
    line-height: 1.18;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: clamp(22px, 3vh, 30px);
}

.hero-media {
    position: relative;
    order: -1;
    min-height: min(61vh, 640px);
    height: min(100%, 680px);
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.robot-loader {
    position: absolute;
    inset: 8% 4% 4%;
    z-index: 4;
    display: grid;
    place-items: center;
    pointer-events: none;
    color: var(--sentient-mint);
    opacity: 1;
    transform: translate(1%, 1%) scale(1);
    transition:
        opacity 520ms ease,
        transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
        visibility 520ms ease;
}

.robot-loader__ring,
.robot-loader__pulse,
.robot-loader__spark {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.robot-loader__ring {
    border: 1px solid rgba(104, 224, 196, 0.22);
    box-shadow: 0 0 36px rgba(104, 224, 196, 0.08);
    animation: robotPulseRing 2.8s ease-in-out infinite;
}

.robot-loader__ring--outer {
    width: min(72%, 440px);
    aspect-ratio: 1;
}

.robot-loader__ring--middle {
    width: min(48%, 290px);
    aspect-ratio: 1;
    opacity: 0.5;
    animation-delay: 420ms;
}

.robot-loader__pulse {
    width: min(18%, 112px);
    aspect-ratio: 1;
    background:
        radial-gradient(circle, rgba(246, 241, 234, 0.92) 0 8%, rgba(104, 224, 196, 0.76) 9% 28%, rgba(104, 224, 196, 0.18) 29% 56%, transparent 58%);
    filter: drop-shadow(0 0 30px rgba(104, 224, 196, 0.34));
    animation: robotPulseCore 1.65s ease-in-out infinite;
}

.robot-loader__spark {
    width: 8px;
    aspect-ratio: 1;
    background: currentColor;
    opacity: 0;
    box-shadow: 0 0 18px rgba(104, 224, 196, 0.5);
    animation: robotPulseSpark 2.4s ease-in-out infinite;
}

.robot-loader__spark--one {
    --spark-x: -118px;
    --spark-y: -82px;
}

.robot-loader__spark--two {
    --spark-x: 126px;
    --spark-y: 74px;
    animation-delay: 720ms;
}

.hero-media.is-spline-ready .robot-loader {
    opacity: 0;
    visibility: hidden;
    transform: translate(1%, 1%) scale(0.94);
}

.hero-media.reveal-media {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
}

.hero-media.reveal-media.is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    clip-path: inset(0);
}

.testimonial-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    filter: saturate(0.9) contrast(1.04);
}

.testimonial-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2, 7, 11, 0.04), rgba(2, 7, 11, 0.58)),
        linear-gradient(90deg, rgba(2, 7, 11, 0.72), transparent 62%);
    pointer-events: none;
}

.spline-mount {
    width: 156%;
    max-width: none;
    margin-left: -36%;
    min-height: min(61vh, 640px);
    height: 100%;
    overflow: visible;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-media.is-spline-ready .spline-mount {
    opacity: 1;
}

.spline-mount > div {
    height: 100%;
}

.spline-scene-card {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 100%;
    min-height: min(61vh, 640px) !important;
    overflow: visible;
    background: transparent;
    pointer-events: none;
}

.spline-scene-stage {
    position: relative;
    z-index: 1;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
    min-height: inherit;
    transform: translate(5%, 0) scale(0.84);
    transform-origin: center;
    pointer-events: none;
}

.spline-scene-stage canvas,
.spline-scene-stage iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    pointer-events: none !important;
}

.loader {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(246, 241, 234, 0.16);
    border-top-color: var(--sentient-mint);
    border-radius: 999px;
    animation: splineLoader 800ms linear infinite;
}

.system-panel {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    gap: 4px;
    padding: 22px;
    background: rgba(2, 7, 11, 0.78);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(14px);
}

.system-panel span,
.signal-list span,
.proof-card span,
.case-card span,
.insight-card span,
.quote-card span {
    color: var(--soft-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
}

.system-panel strong {
    font-size: 1.22rem;
    line-height: 1.25;
}

.signal-list {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    max-width: 360px;
}

.signal-list span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    background: rgba(6, 16, 24, 0.72);
    backdrop-filter: blur(10px);
    color: var(--human-parchment);
}

.marquee-section {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--cognitive-graphite);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 44s linear infinite;
}

.marquee-section:hover .marquee-track,
.marquee-section:focus-within .marquee-track {
    animation-play-state: paused;
}

.marquee-track--reverse {
    animation-direction: reverse;
    animation-duration: 38s;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    min-height: 96px;
    padding-inline: 28px;
    color: rgba(246, 241, 234, 0.17);
    font-family: var(--display);
    font-size: clamp(2.6rem, 4.6vw, 4rem);
    font-weight: 600;
    white-space: nowrap;
}

.marquee-track span:nth-child(3n) {
    color: rgba(104, 224, 196, 0.36);
}

.section {
    padding: var(--section-space) 0;
}

.about {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 72% 20%, rgba(104, 224, 196, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(6, 16, 24, 0.16), rgba(2, 7, 11, 0));
}

.about-paths {
    position: absolute;
    inset: auto -8vw -20% -6vw;
    z-index: 0;
    width: 116vw;
    height: min(72vw, 760px);
    color: rgba(246, 241, 234, 0.2);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.62) 48%, transparent 96%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.62) 48%, transparent 96%);
}

.about-paths path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.about__grid,
.proof-band__grid,
.process__grid,
.testimonial__grid,
.contact__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
    gap: 76px;
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.proof-content h2,
.cta-strip h2 {
    margin: 0;
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: var(--type-section);
    line-height: 0.96;
    font-weight: 500;
    letter-spacing: 0;
}

.about .section-copy h2 {
    line-height: 1.08;
}

.section-copy p,
.section-heading p,
.proof-content p {
    max-width: 670px;
    color: var(--soft-sage);
}

.about .section-copy > p:not(.section-kicker) {
    margin-top: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 18px;
    padding-block: 8px;
    color: var(--sentient-mint);
    font-family: var(--ui);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 8px;
    touch-action: manipulation;
}

.rotor {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--sentient-mint);
}

.rotor svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.rotor__outer,
.rotor__inner,
.rotor__arrow {
    fill: none;
    stroke: var(--human-parchment);
    vector-effect: non-scaling-stroke;
}

.rotor__outer {
    stroke-width: 1.3;
    stroke-dasharray: 3.5 5.5;
    stroke-linecap: round;
    opacity: 0.92;
}

.rotor__inner {
    stroke-width: 1.35;
    opacity: 0.86;
}

.rotor__text {
    fill: var(--human-parchment);
    font-family: var(--ui);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.18em;
    animation: rotate 24s linear infinite;
    transform-origin: 135px 135px;
}

.rotor__arrow {
    stroke-width: 5;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.proof-band {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--cognitive-graphite);
    border-block: 1px solid var(--line);
}

.proof-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 18%, rgba(104, 224, 196, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(2, 7, 11, 0.18), transparent 48%);
    pointer-events: none;
}

.proof-band__grid {
    width: 100%;
    max-width: none;
    min-height: clamp(700px, calc(100dvh - 82px), 840px);
    margin-inline: 0;
    padding-right: var(--side);
    grid-template-columns: minmax(390px, 40vw) minmax(0, 760px);
    gap: clamp(44px, 5.2vw, 76px);
    align-items: stretch;
}

.image-stack {
    position: relative;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--living-surface);
}

.image-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 47% center;
    opacity: 0.82;
    filter: saturate(0.9) contrast(1.06);
    transform: scale(1.01);
}

.image-stack::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 28% 18%, rgba(104, 224, 196, 0.12), transparent 32%),
        linear-gradient(90deg, rgba(2, 7, 11, 0.08), rgba(2, 7, 11, 0.38));
    pointer-events: none;
}

.image-stack::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, transparent 68%, rgba(6, 16, 24, 0.8)),
        linear-gradient(180deg, rgba(2, 7, 11, 0.08), rgba(2, 7, 11, 0.36));
    pointer-events: none;
}

.proof-content {
    max-width: 760px;
    align-self: center;
    padding-block: var(--section-space);
}

.proof-content h2 {
    max-width: 760px;
    font-size: clamp(3.65rem, 5.2vw, 5.9rem);
    line-height: 0.94;
}

.proof-content__lede {
    max-width: 680px;
    margin: 26px 0 0;
    font-size: clamp(1.08rem, 1.22vw, 1.28rem);
    line-height: 1.55;
}

.proof-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.proof-checks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    background: rgba(104, 224, 196, 0.08);
    border: 1px solid rgba(104, 224, 196, 0.24);
    color: var(--human-parchment);
    font-family: var(--ui);
    font-size: clamp(0.86rem, 0.78vw, 0.96rem);
    font-weight: 700;
}

.proof-checks li::before {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    background: var(--sentient-mint);
}

.proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.proof-card,
.service-card,
.case-card,
.testimonial-card,
.quote-card,
.insight-card,
.process-step {
    border: 1px solid var(--line);
    background: var(--living-surface);
}

.proof-card {
    display: grid;
    align-content: space-between;
    gap: 22px;
    min-height: 178px;
    padding: clamp(20px, 2.2vw, 26px);
    background:
        linear-gradient(145deg, rgba(16, 26, 31, 0.96), rgba(6, 16, 24, 0.92));
}

.proof-card--feature {
    grid-column: 1 / -1;
    grid-template-columns: minmax(150px, 0.36fr) minmax(260px, 1fr);
    align-items: end;
    min-height: 150px;
    background:
        radial-gradient(circle at 14% 14%, rgba(104, 224, 196, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(16, 26, 31, 0.98), rgba(6, 16, 24, 0.9));
    border-color: rgba(104, 224, 196, 0.28);
}

.proof-card strong {
    display: block;
    color: var(--sentient-mint);
    font-family: var(--display);
    font-size: clamp(2.35rem, 3.6vw, 3rem);
    line-height: 1;
    font-weight: 600;
}

.proof-card strong span {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

.proof-card__number > span {
    display: block;
    margin-top: 10px;
    color: var(--human-parchment);
    font-size: var(--type-small);
    line-height: 1.35;
}

.proof-card p {
    max-width: 36rem;
    margin: 0;
    color: var(--soft-sage);
    font-size: var(--type-small);
    line-height: 1.58;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 42px;
}

.services-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 38%, rgba(104, 224, 196, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(6, 16, 24, 0.4), rgba(2, 7, 11, 0));
    border-block: 1px solid var(--line);
}

.services-orbit {
    position: absolute;
    top: 12%;
    left: -18vw;
    width: min(64vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(104, 224, 196, 0.13);
    border-radius: 999px;
    box-shadow:
        inset 0 0 0 74px rgba(104, 224, 196, 0.03),
        inset 0 0 0 164px rgba(175, 201, 192, 0.03),
        0 0 90px rgba(104, 224, 196, 0.05);
    opacity: 0.78;
    pointer-events: none;
}

.section-heading--services {
    position: relative;
    z-index: 1;
    max-width: none;
    text-align: left;
}

.section-heading--services h2 {
    max-width: 1120px;
    margin-inline: 0;
    text-wrap: auto;
}

.section-heading--services .section-heading__lead {
    max-width: 780px;
    margin: 22px 0 0;
    color: var(--soft-sage);
    font-size: clamp(1rem, 1.45vw, 1.16rem);
    line-height: 1.68;
    text-wrap: pretty;
}

.service-shell {
    position: relative;
    z-index: 1;
    width: calc(100% - calc(var(--side) * 2));
    margin-inline: auto;
}

.service-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(16, 26, 31, 0.34);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.service-card {
    position: relative;
    display: flex;
    min-height: clamp(520px, 40vw, 610px);
    flex-direction: column;
    padding: clamp(26px, 2.7vw, 42px);
    overflow: hidden;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(16, 26, 31, 0.18);
    transition:
        border-color 220ms ease,
        background 220ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(135deg, rgba(104, 224, 196, 0.1), transparent 34%),
        radial-gradient(circle at 78% 18%, rgba(141, 240, 213, 0.12), transparent 22%);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

.service-card:first-child {
    border-left: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover,
.service-card:focus-within {
    border-color: var(--line-strong);
    background: rgba(16, 26, 31, 0.82);
}

.service-card:hover::before,
.service-card:focus-within::before {
    opacity: 1;
}

.service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 3.7vw, 54px);
}

.service-card__icon {
    display: inline-flex;
    width: clamp(54px, 5vw, 68px);
    height: clamp(54px, 5vw, 68px);
    align-items: center;
    justify-content: center;
    color: var(--sentient-mint);
    transform-style: preserve-3d;
    transition: color 220ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-card__icon,
.service-card:focus-within .service-card__icon {
    color: var(--luminous-mint);
    transform: rotateY(180deg);
}

.service-card__number {
    color: rgba(175, 201, 192, 0.48);
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1;
}

.service-card__eyebrow {
    margin: 0 0 14px;
    color: var(--sentient-mint);
    font-family: var(--ui);
    font-size: var(--type-label);
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.service-card h3,
.process-step h3,
.case-card h3,
.insight-card h3 {
    margin: 0 0 14px;
    font-family: var(--display);
    font-size: var(--type-card);
    line-height: 1.16;
    font-weight: 600;
}

.service-card h3 {
    min-height: 2.9rem;
}

.process-step p,
.case-card p,
.insight-card time {
    color: var(--soft-sage);
}

.service-card__description {
    max-width: 35rem;
    min-height: 8.125rem;
    margin: 0;
    color: var(--soft-sage);
    line-height: 1.62;
}

.service-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    display: block;
    margin: auto 0 clamp(30px, 3.2vw, 44px);
    overflow: hidden;
    background: var(--deep-space);
    border: 1px solid rgba(246, 241, 234, 0.1);
}

.service-card__media::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    width: 200%;
    height: 0%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    pointer-events: none;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.service-card:hover .service-card__media::after,
.service-card:focus-within .service-card__media::after {
    height: 250%;
    background-color: transparent;
    transition: all 600ms linear;
}

.service-card:hover .service-card__image,
.service-card:focus-within .service-card__image {
    transform: scale(1.1);
}

.service-card__action {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    color: var(--sentient-mint);
    font-family: var(--ui);
    font-weight: 800;
    text-decoration: none;
    touch-action: manipulation;
}

.service-card__action span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    color: var(--human-parchment);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-card__action svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__action strong {
    transform: translateX(0);
    transition: transform 220ms ease;
}

.service-card__action:hover span,
.service-card__action:focus-visible span {
    color: var(--neural-ink);
    background: var(--sentient-mint);
    transform: rotate(90deg);
}

.service-card__action:hover strong,
.service-card__action:focus-visible strong {
    transform: translateX(4px);
}

.tech-stack-showcase {
    position: relative;
    overflow: hidden;
    padding: var(--section-space) 0;
    background: linear-gradient(180deg, rgba(2, 7, 11, 0.12), rgba(16, 26, 31, 0.32));
}

.tech-stack-showcase::before {
    content: "";
    position: absolute;
    inset: auto auto -32% -20%;
    width: min(64vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(104, 224, 196, 0.12);
    border-radius: 999px;
    box-shadow:
        inset 0 0 0 82px rgba(104, 224, 196, 0.025),
        inset 0 0 0 174px rgba(175, 201, 192, 0.025);
    pointer-events: none;
}

.tech-stack-showcase__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
    gap: 76px;
    align-items: center;
    min-height: auto;
    overflow: visible;
}

.tech-stack-showcase__panel::after {
    content: "";
    position: absolute;
    inset: 10% -10% auto auto;
    width: min(36vw, 520px);
    aspect-ratio: 1;
    border: 1px solid rgba(104, 224, 196, 0.08);
    border-radius: 999px;
    box-shadow: inset 0 0 0 74px rgba(104, 224, 196, 0.018);
    pointer-events: none;
}

.tech-stack-showcase__copy {
    position: relative;
    z-index: 2;
}

.tech-stack-showcase__copy h2 {
    max-width: 680px;
    margin: 0;
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: var(--type-section);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: 0;
}

.tech-stack-showcase__copy p:not(.section-kicker) {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--copy-secondary);
    font-size: clamp(1.08rem, 1.15vw, 1.2rem);
    line-height: 1.58;
}

.tech-stack-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.tech-stack-logo-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, minmax(70px, 1fr));
    gap: clamp(16px, 2.1vw, 30px);
    justify-self: end;
    width: min(100%, 660px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.tech-stack-logo-tile {
    display: inline-grid;
    aspect-ratio: 1;
    place-items: center;
    min-width: 0;
    background:
        linear-gradient(145deg, rgba(26, 38, 51, 0.96), rgba(14, 22, 31, 0.96));
    border: 1px solid rgba(175, 201, 192, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.08),
        0 12px 34px rgba(0, 0, 0, 0.24);
    clip-path: polygon(24% 0, 76% 0, 100% 24%, 100% 76%, 76% 100%, 24% 100%, 0 76%, 0 24%);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tech-stack-logo-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(104, 224, 196, 0.48);
    background:
        linear-gradient(145deg, rgba(31, 45, 58, 0.98), rgba(18, 28, 37, 0.98));
}

.tech-stack-logo {
    display: grid;
    width: clamp(42px, 4vw, 58px);
    aspect-ratio: 1;
    place-items: center;
}

.tech-stack-logo svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.tech-stack-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cta-strip {
    background: var(--sentient-mint);
    color: var(--neural-ink);
    padding: clamp(44px, 5vw, 58px) 0;
}

.cta-strip__inner {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.cta-strip h2 {
    color: var(--neural-ink);
    max-width: 960px;
    font-size: clamp(2.25rem, 3.8vw, 3.3rem);
}

.latest-web-work {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--neural-ink), var(--deep-space) 62%, var(--neural-ink));
    border-block: 1px solid var(--line);
}

.latest-project {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, 0.58fr) minmax(620px, 1fr);
    grid-template-areas: "content visual";
    gap: clamp(46px, 5.4vw, 92px);
    align-items: center;
    overflow: visible;
    padding: 0;
    color: var(--human-parchment);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.latest-project[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}

.latest-project__content,
.latest-project__visual,
.latest-project__outcomes {
    position: relative;
    z-index: 1;
}

.latest-project__content {
    grid-area: content;
    align-self: center;
}

.latest-project__kicker,
.latest-project h2,
.latest-project__subheading,
.latest-project__description,
.latest-web-work__actions,
.latest-project__outcomes section {
    opacity: 1;
    transform: none;
    transition: none;
}

.latest-project__kicker {
    transition-delay: 80ms;
}

.latest-project__kicker {
    margin-bottom: 16px;
}

.latest-project h2 {
    max-width: 560px;
    margin: 0;
    color: var(--human-parchment);
    font-size: clamp(3.8rem, 5.4vw, 5.7rem);
    line-height: 0.94;
    transition-delay: 150ms;
}

.latest-project__subheading {
    max-width: 580px;
    margin: 24px 0 0;
    color: var(--human-parchment);
    font-size: clamp(1.24rem, 1.55vw, 1.48rem);
    line-height: 1.3;
    transition-delay: 230ms;
}

.latest-project__description {
    max-width: 540px;
    margin: 16px 0 0;
    color: var(--copy-secondary);
    font-size: clamp(1.05rem, 1.1vw, 1.16rem);
    line-height: 1.56;
    transition-delay: 310ms;
}

.latest-project__outcomes {
    display: grid;
    max-width: 500px;
    margin: clamp(26px, 3vw, 34px) 0 0;
    border-top: 1px solid rgba(246, 241, 234, 0.13);
    border-bottom: 1px solid rgba(246, 241, 234, 0.13);
}

.latest-project__outcomes section {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: auto;
    padding: 14px 0;
    border-top: 1px solid rgba(246, 241, 234, 0.1);
    border-left: 0;
}

.latest-project__outcomes section:nth-child(1) {
    transition-delay: 480ms;
}

.latest-project__outcomes section:nth-child(2) {
    transition-delay: 550ms;
}

.latest-project__outcomes section:nth-child(3) {
    transition-delay: 620ms;
}

.latest-project__outcomes section:first-child {
    border-top: 0;
}

.latest-project__outcomes span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--sentient-mint);
    font-family: var(--ui);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    border: 1px solid rgba(104, 224, 196, 0.36);
    background: rgba(104, 224, 196, 0.045);
}

.latest-project__outcomes strong {
    display: block;
    margin-top: 0;
    color: var(--human-parchment);
    font-size: 0.94rem;
    line-height: 1.25;
}

.latest-project__outcomes p {
    margin: 4px 0 0;
    color: var(--copy-secondary);
    font-size: 0.84rem;
    line-height: 1.46;
}

.latest-web-work__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: clamp(26px, 3vw, 36px);
    transition-delay: 390ms;
}

.latest-project__visual {
    grid-area: visual;
    position: relative;
    align-self: center;
    min-height: clamp(420px, 38vw, 590px);
    display: grid;
    place-items: center;
}

.latest-project__device-pair {
    --device-rail: clamp(86px, 8vw, 128px);
    --phone-width: clamp(134px, 13vw, 192px);
    --screen-window: clamp(330px, 29vw, 480px);
    --stage-chrome: clamp(86px, 7vw, 112px);
    position: relative;
    isolation: isolate;
    align-self: center;
    width: min(100%, 980px);
    height: calc(var(--screen-window) + var(--stage-chrome));
    padding: 0 0 clamp(28px, 3.2vw, 48px) var(--device-rail);
}

.latest-project__browser {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    overflow: visible;
    background: var(--neural-ink);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 10px;
    box-shadow:
        0 34px 72px rgba(0, 0, 0, 0.44),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 1;
    transform: none;
    transform-origin: center;
    transition: none;
}

.latest-project__browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 34px;
    padding: 0 14px;
    background: var(--living-surface);
    border: 1px solid rgba(246, 241, 234, 0.08);
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
}

.latest-project__browser-bar span {
    width: 8px;
    height: 8px;
    background: rgba(246, 241, 234, 0.54);
    border-radius: 999px;
}

.latest-project__browser-bar span:first-child {
    background: var(--sentient-mint);
}

.latest-project__screen {
    position: relative;
    height: var(--screen-window);
    overflow: hidden;
    background: #ffffff;
}

.latest-project__screen img {
    display: block;
    width: 100%;
    max-width: none;
}

.latest-project__phone {
    position: absolute;
    left: 0;
    right: auto;
    bottom: clamp(18px, 2.8vw, 40px);
    z-index: 2;
    width: var(--phone-width);
    aspect-ratio: 706 / 1534;
    padding: 7px;
    background:
        linear-gradient(180deg, rgba(16, 26, 31, 0.98), rgba(6, 16, 24, 0.98));
    border: 1px solid rgba(141, 240, 213, 0.44);
    border-radius: 24px;
    box-shadow:
        0 28px 52px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    opacity: 1;
    transform: none;
    transform-origin: left bottom;
    transition: none;
}

.latest-project__phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 2;
    width: 32px;
    height: 4px;
    background: rgba(246, 241, 234, 0.4);
    border-radius: 999px;
    transform: translateX(-50%);
}

.latest-project__phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
}

.latest-project__phone-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.latest-project.is-visible .latest-project__kicker,
.latest-project.is-visible h2,
.latest-project.is-visible .latest-project__subheading,
.latest-project.is-visible .latest-project__description,
.latest-project.is-visible .latest-web-work__actions,
.latest-project.is-visible .latest-project__outcomes section,
.latest-project.is-visible .latest-project__browser,
.latest-project.is-visible .latest-project__phone {
    opacity: 1;
    transform: none;
}

.web-package-card span,
.web-work-card > span,
.web-system-card span,
.web-service-card span {
    color: var(--sentient-mint);
    font-family: var(--ui);
    font-size: var(--type-label);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.web-package-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.web-package-card li {
    display: flex;
    gap: 10px;
    color: var(--soft-sage);
}

.web-package-card li::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 0.62em;
    background: var(--sentient-mint);
}

.web-page {
    overflow: hidden;
}

.web-hero {
    position: relative;
    min-height: clamp(590px, calc(100dvh - 126px), 800px);
    display: flex;
    align-items: center;
    padding: clamp(34px, 4.2vw, 56px) 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--neural-ink);
}

.web-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -12vw;
    width: min(720px, 54vw);
    aspect-ratio: 1;
    border-radius: 999px;
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(104, 224, 196, 0.08) 0 18%, transparent 19%),
        repeating-radial-gradient(circle, transparent 0 74px, rgba(104, 224, 196, 0.13) 75px 76px, transparent 77px 148px);
    opacity: 0.78;
}

.web-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.54fr);
    gap: clamp(28px, 3.8vw, 48px);
    align-items: center;
}

.web-hero__copy {
    max-width: 860px;
}

.web-hero__copy h1 {
    max-width: 860px;
    margin: 0;
    color: var(--human-parchment);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(3.2rem, 6vw, 6.3rem);
    line-height: 0.93;
    letter-spacing: 0;
}

.web-hero__copy p:not(.section-kicker) {
    max-width: 690px;
    margin: 18px 0 0;
    color: var(--copy-secondary);
    font-size: clamp(1.06rem, 1.42vw, 1.22rem);
    line-height: 1.58;
}

.web-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 22px;
}

.web-hero__aside {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.web-delivery-panel {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: clamp(20px, 1.7vw, 26px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(165deg, rgba(104, 224, 196, 0.07), transparent 44%),
        linear-gradient(145deg, rgba(16, 26, 31, 0.95), rgba(2, 7, 11, 0.92));
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.web-delivery-panel__head {
    display: grid;
    gap: 8px;
}

.web-delivery-panel__label {
    color: var(--section-label);
    font-family: var(--ui);
    font-size: var(--type-label);
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.web-delivery-panel__head strong {
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: clamp(1.5rem, 2.1vw, 1.95rem);
    font-weight: 700;
    line-height: 1.06;
}

.web-delivery-panel__head p {
    margin: 0;
    color: var(--copy-secondary);
    line-height: 1.5;
}

.web-delivery-panel__list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 16px 0 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.web-delivery-panel__list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0;
    color: var(--copy-secondary);
    font-size: var(--type-small);
    line-height: 1.45;
}

.web-delivery-panel__list li::before {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin-top: 0.5em;
    border-radius: 2px;
    background: var(--sentient-mint);
}

.web-template-showcase {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
}

.web-template-showcase__screen {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(246, 241, 234, 0.1);
    border-radius: 6px;
    height: clamp(190px, 14vw, 240px);
    background:
        linear-gradient(145deg, rgba(16, 26, 31, 0.92), rgba(2, 7, 11, 0.96)),
        var(--living-surface);
}

.web-template-showcase__screen::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 7, 11, 0.34), rgba(2, 7, 11, 0.04) 52%, rgba(2, 7, 11, 0.48)),
        radial-gradient(circle at 22% 34%, rgba(104, 224, 196, 0.16), transparent 28%);
    pointer-events: none;
}

.web-template-showcase__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 34% center;
    filter: saturate(0.92) contrast(1.06) brightness(0.92);
}

.web-template-showcase__meta {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.web-template-showcase__meta span {
    min-height: 38px;
    padding: 10px 12px;
    color: var(--human-parchment);
    background: rgba(2, 7, 11, 0.68);
    border: 1px solid rgba(104, 224, 196, 0.28);
    border-radius: 6px;
    font-family: var(--ui);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.web-template-showcase figcaption {
    max-width: 34rem;
    margin: 10px 0 0;
    padding: 0 2px 2px;
    color: var(--copy-secondary);
    font-size: var(--type-small);
    line-height: 1.5;
}

.web-system-card,
.web-service-card,
.web-package-card,
.web-work-card,
.web-process-step,
.web-faq-item {
    position: relative;
    z-index: 1;
    background: rgba(16, 26, 31, 0.82);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.web-system-card {
    width: min(100%, 420px);
    padding: 20px;
    justify-self: end;
    backdrop-filter: blur(16px);
}

.web-hero .web-system-card {
    padding: 16px 18px;
}

.web-system-card--primary {
    justify-self: start;
    border-color: var(--line-strong);
    background: rgba(104, 224, 196, 0.1);
}

.web-system-card strong,
.web-service-card h3,
.web-package-card h3,
.web-work-card h3,
.web-process-step h3,
.web-faq-item h3 {
    display: block;
    margin: 10px 0;
    color: var(--human-parchment);
    font-size: var(--type-card);
    line-height: 1.15;
}

.web-hero .web-system-card strong {
    margin: 6px 0 4px;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.web-system-card p,
.web-service-card p,
.web-package-card p,
.web-work-card p,
.web-process-step p,
.web-faq-item p {
    margin: 0;
    color: var(--soft-sage);
}

.web-hero .web-system-card p {
    font-size: 0.88rem;
    line-height: 1.42;
}

.web-services {
    background: var(--neural-ink);
}

.web-service-grid,
.web-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.web-service-card {
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-height: 0;
    padding: 26px;
    transition: transform 180ms ease, border-color 180ms ease, background 220ms ease;
}

.web-service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.web-service-card__icon-wrap {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    color: var(--sentient-mint);
    background: rgba(104, 224, 196, 0.1);
    border: 1px solid var(--line-strong);
    font-size: 0;
    letter-spacing: 0;
    transition: background 220ms ease, border-color 220ms ease, transform 220ms var(--ease-spring);
}

.web-service-card__icon {
    width: 23px;
    height: 23px;
}

.web-service-card__num {
    font-size: var(--type-label);
}

.web-service-card h3 {
    margin: 0;
}

.web-service-card:hover .web-service-card__icon-wrap {
    background: rgba(104, 224, 196, 0.17);
    border-color: var(--sentient-mint);
    transform: translateY(-2px);
}

.web-service-card:hover,
.web-work-card:hover,
.web-package-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.web-packages {
    background: var(--cognitive-graphite);
}

.web-package-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(216px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.web-package-card {
    position: relative;
    display: flex;
    min-height: 440px;
    flex-direction: column;
    gap: 22px;
    padding: 26px 24px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.web-package-card__head {
    display: grid;
    gap: 10px;
}

.web-package-card h3 {
    margin: 6px 0 2px;
    text-wrap: balance;
}

.web-package-card ul {
    flex: 1;
    align-content: start;
}

.web-package-card--featured {
    border-color: var(--line-strong);
    background:
        linear-gradient(180deg, rgba(104, 224, 196, 0.14), rgba(16, 26, 31, 0.92)),
        var(--living-surface);
    box-shadow: 0 18px 60px rgba(104, 224, 196, 0.12);
}

.web-package-card .text-link {
    min-height: 44px;
    width: max-content;
    margin-top: 4px;
}

.web-work {
    background: var(--cognitive-graphite);
    border-block: 1px solid var(--line);
}

.web-work-card {
    display: grid;
    min-height: 360px;
    padding: 28px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.web-work-card__brand {
    display: flex;
    align-items: center;
    min-height: 56px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.web-work-card__brand img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 38px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    opacity: 0.82;
    transition: opacity 220ms ease;
}

.web-work-card:hover .web-work-card__brand img {
    opacity: 1;
}

.web-work-card__mark {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--neural-ink);
    background: var(--sentient-mint);
    border-radius: 10px;
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 800;
}

.web-work-card .text-link {
    align-self: end;
    min-height: 44px;
    width: max-content;
    margin-top: 24px;
}

.web-process__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(420px, 1fr);
    gap: clamp(38px, 6vw, 86px);
}

.web-process-list,
.web-faq-list {
    display: grid;
    gap: 14px;
}

.web-process-step {
    display: grid;
    grid-template-columns: 84px minmax(180px, 0.42fr) minmax(240px, 1fr);
    gap: 22px;
    padding: 26px;
}

.web-process-step > span {
    color: var(--sentient-mint);
    font-family: var(--display);
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
    font-weight: 700;
    line-height: 1;
}

.web-faq {
    background: var(--cognitive-graphite);
}

.web-faq-item {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(280px, 1fr);
    gap: 28px;
    padding: 28px;
}

.web-faq-item h3 {
    margin: 0;
}

.web-final-cta {
    border-top: 1px solid rgba(2, 7, 11, 0.24);
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-step {
    display: grid;
    grid-template-columns: 88px minmax(160px, 0.45fr) minmax(260px, 1fr);
    gap: 24px;
    align-items: start;
    padding: 28px;
    background: transparent;
    border-inline: 0;
    border-bottom: 0;
}

.process-step span {
    color: var(--sentient-mint);
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 1;
    font-weight: 600;
}

/* ============================================================
   Bordered step rows — shared treatment across the numbered
   sections on every page (home process, Trangle apps + flow)
   so they read the same as the web-development process rows:
   rounded separators + a soft mint glow on hover.
   ============================================================ */
.process-step,
.trangle-taste-app-list article,
.trangle-taste-flow__steps article {
    position: relative;
    border-radius: 16px;
    isolation: isolate;
    overflow: hidden;
}

.process-step:last-child {
    border-bottom: 1px solid var(--line);
}

.process-step::before,
.trangle-taste-app-list article::before,
.trangle-taste-flow__steps article::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(130% 150% at 80% 50%, rgba(104, 224, 196, 0.1), transparent 62%);
    opacity: 0;
    transition: opacity 0.45s var(--ease-soft);
    pointer-events: none;
}

.process-step:hover::before,
.trangle-taste-app-list article:hover::before,
.trangle-taste-flow__steps article:hover::before {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .process-step::before,
    .trangle-taste-app-list article::before,
    .trangle-taste-flow__steps article::before {
        transition: none;
    }
}

.work {
    background: var(--cognitive-graphite);
    border-block: 1px solid var(--line);
}

.case-grid,
.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.case-card,
.insight-card {
    min-height: 320px;
    padding: 28px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.case-card:hover,
.insight-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
}

.case-card img {
    width: 156px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 50px;
    filter: grayscale(1) brightness(1.35);
}

.case-card:nth-child(2) {
    border-color: rgba(141, 240, 213, 0.34);
}

.case-card:nth-child(3) {
    border-color: rgba(46, 216, 195, 0.24);
}

.testimonial {
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 24%, rgba(104, 224, 196, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(6, 16, 24, 0.18), rgba(2, 7, 11, 0.12));
}

.testimonial__grid {
    grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
    gap: clamp(48px, 6vw, 86px);
}

.testimonial__intro {
    display: grid;
    align-content: center;
    gap: 22px;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(104, 224, 196, 0.28);
    background: rgba(104, 224, 196, 0.08);
    color: var(--sentient-mint);
    font-family: var(--ui);
    font-size: var(--type-small);
    font-weight: 700;
}

.testimonial-badge span:first-child {
    font-size: 0.82rem;
    line-height: 1;
}

.testimonial__intro h2 {
    max-width: 680px;
    margin: 0;
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: clamp(2.45rem, 4.2vw, 4.25rem);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: 0;
}

.testimonial__intro p {
    max-width: 610px;
    margin: 0;
    color: var(--soft-sage);
    font-size: clamp(1.05rem, 1.45vw, 1.22rem);
    line-height: 1.72;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: 14px;
}

.testimonial-controls button {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    place-items: center;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
}

.testimonial-controls button::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(175, 201, 192, 0.28);
    transition: width 220ms ease, background 220ms ease;
}

.testimonial-controls button.is-active::before {
    width: 42px;
    background: var(--sentient-mint);
}

.testimonial-stack {
    position: relative;
    min-height: clamp(430px, 38vw, 520px);
}

.testimonial-card {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    min-height: 100%;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 26, 31, 0.98), rgba(6, 16, 24, 0.96));
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateX(80px) scale(0.94);
    transition: opacity 360ms ease, transform 420ms ease;
}

.testimonial-card.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.testimonial-stars {
    display: flex;
    gap: 7px;
    color: var(--sentient-mint);
    font-size: 1.05rem;
    line-height: 1;
}

.testimonial-card__quote {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 170px;
}

.testimonial-card__quote > span {
    position: absolute;
    top: -36px;
    left: -8px;
    color: rgba(104, 224, 196, 0.16);
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
}

.testimonial-card__quote p {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0;
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: clamp(1.45rem, 2.25vw, 2rem);
    line-height: 1.28;
}

.testimonial-card__person {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.testimonial-avatar {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(104, 224, 196, 0.28), rgba(46, 216, 195, 0.16)),
        var(--cognitive-graphite);
    color: var(--human-parchment);
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 700;
}

.testimonial-card__person h3 {
    margin: 0 0 2px;
    font-size: 1.02rem;
}

.testimonial-card__person p {
    margin: 0;
    color: var(--soft-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
}

.testimonial-accent {
    position: absolute;
    z-index: 1;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(104, 224, 196, 0.12);
    background: rgba(104, 224, 196, 0.04);
    pointer-events: none;
}

.testimonial-accent--one {
    right: -24px;
    top: -24px;
}

.testimonial-accent--two {
    left: -24px;
    bottom: -24px;
}

.testimonial-logos {
    margin-top: clamp(58px, 6vw, 84px);
    text-align: center;
}

.testimonial-logos h3 {
    margin: 0 0 28px;
    color: var(--soft-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
    font-weight: 700;
}

.testimonial-logos__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
}

.testimonial-logos__grid img {
    width: clamp(110px, 12vw, 160px);
    max-height: 54px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.35);
    opacity: 0.6;
}

.contact {
    background:
        linear-gradient(180deg, rgba(6, 16, 24, 0.84), var(--neural-ink)),
        var(--neural-ink);
}

.contact__grid {
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    padding: clamp(24px, 2.6vw, 34px);
    border: 1px solid var(--line);
    border-radius: clamp(18px, 2vw, 26px);
    background: var(--living-surface);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label.full,
.contact-form .form-status,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form span {
    color: var(--soft-sage);
    font-family: var(--ui);
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--neural-ink);
    color: var(--human-parchment);
    min-height: 54px;
    padding: 14px 22px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

/* Custom chevron + pill shape for the native select, aligned with the rounded system. */
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23AFC9C0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

/* Textarea can't be a full pill — give it a generous matching radius instead. */
.contact-form textarea {
    min-height: clamp(178px, 16vw, 240px);
    border-radius: 22px;
    padding: 16px 22px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--sentient-mint);
    box-shadow: 0 0 0 3px rgba(104, 224, 196, 0.12);
}

.contact-form small {
    color: var(--error-red, #F87171);
}

.form-status {
    border: 1px solid var(--line-strong);
    padding: 14px 16px;
    color: var(--sentient-mint);
    background: rgba(104, 224, 196, 0.08);
}

.honeypot {
    display: none;
    position: absolute;
    left: -10000px;
}

/* ============================================================
   TOAST — alert shown after an AJAX contact submission
   ============================================================ */
.toast-region {
    position: fixed;
    top: calc(var(--header-height, 92px) + 12px);
    right: clamp(16px, 3vw, 28px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(380px, calc(100vw - 32px));
    pointer-events: none;
}

.toast {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 12px;
    padding: 16px 16px 16px 18px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--sentient-mint);
    border-radius: 12px;
    background: var(--cognitive-graphite);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast.is-leaving {
    opacity: 0;
    transform: translateY(-10px);
}

.toast--error {
    border-left-color: var(--error-red);
}

.toast__icon {
    position: relative;
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--sentient-mint);
}

.toast__icon::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid var(--neural-ink);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.toast--error .toast__icon {
    background: var(--error-red);
}

.toast--error .toast__icon::after {
    inset: 0;
    width: auto;
    height: auto;
    border: 0;
    transform: none;
    content: "!";
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neural-ink);
    font-weight: 800;
    font-size: 0.8rem;
}

.toast__msg {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--copy-secondary);
}

.toast__close {
    border: 0;
    background: transparent;
    color: var(--mist-silver);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
}

.toast__close:hover {
    color: var(--moon-ivory);
}

@media (prefers-reduced-motion: reduce) {
    .toast {
        transition: opacity 0.2s ease;
        transform: none;
    }

    .toast.is-visible,
    .toast.is-leaving {
        transform: none;
    }
}

.insight-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-belt {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(16, 26, 31, 0.92), rgba(6, 16, 24, 0.96)),
        var(--living-surface);
}

.contact-belt__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    min-height: 96px;
    border-inline: 1px solid rgba(246, 241, 234, 0.08);
}

.contact-belt__inner a,
.contact-belt__inner span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 96px;
    padding: 20px clamp(18px, 2.6vw, 34px);
    color: rgba(246, 241, 234, 0.58);
    font-family: var(--display);
    font-size: clamp(1rem, 1.35vw, 1.28rem);
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    overflow-wrap: anywhere;
    background: rgba(2, 7, 11, 0.16);
    border-right: 1px solid rgba(246, 241, 234, 0.08);
    transition: color 180ms ease, background 180ms ease;
}

.contact-belt__inner a:last-child,
.contact-belt__inner span:last-child {
    border-right: 0;
}

.contact-belt__inner a:first-child {
    color: rgba(104, 224, 196, 0.76);
}

.contact-belt__inner a:hover {
    color: var(--sentient-mint);
    background: rgba(104, 224, 196, 0.07);
}

.site-footer {
    background:
        radial-gradient(circle at 8% 10%, rgba(104, 224, 196, 0.06), transparent 28%),
        var(--cognitive-graphite);
    border-top: 1px solid var(--line);
    padding: clamp(64px, 7vw, 88px) 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(170px, max-content) minmax(320px, max-content);
    justify-content: space-between;
    align-items: start;
    gap: clamp(46px, 7vw, 112px);
}

.footer__grid > div {
    display: grid;
    align-content: start;
    gap: 4px;
}

.brand--footer {
    margin-bottom: 8px;
}

.brand--footer img {
    width: 152px;
}

.site-footer p {
    max-width: 430px;
    margin: 8px 0 0;
    color: var(--soft-sage);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--sentient-mint);
    font-family: var(--ui);
    font-size: var(--type-label);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer span {
    display: block;
    min-height: 30px;
    margin: 0;
    color: var(--soft-sage);
    line-height: 1.35;
}

.site-footer a:hover {
    color: var(--sentient-mint);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(46px, 6vw, 68px);
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--quiet-steel);
}

.trangle-page {
    --trangle-space-black: var(--space-black);
    --trangle-deep-space: var(--deep-space);
    --trangle-nebula-slate: var(--nebula-slate);
    --trangle-quantum-teal: var(--quantum-teal);
    --trangle-luminous-mint: var(--luminous-mint);
    --trangle-moon-ivory: var(--moon-ivory);
    --trangle-mist-silver: var(--mist-silver);
    --trangle-data-cyan: var(--data-cyan);
    --trangle-ink: var(--trangle-space-black);
    --trangle-graphite: var(--trangle-deep-space);
    --trangle-surface: var(--trangle-nebula-slate);
    --trangle-parchment: var(--trangle-moon-ivory);
    --trangle-sage: var(--trangle-mist-silver);
    --trangle-steel: var(--trangle-mist-silver);
    --trangle-mint: var(--trangle-quantum-teal);
    --trangle-violet: var(--trangle-data-cyan);
    --trangle-clay: var(--trangle-luminous-mint);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(6, 16, 24, 0.38), rgba(2, 7, 11, 0) 34%),
        var(--trangle-ink);
    color: var(--trangle-parchment);
}

.trangle-page .section-kicker {
    color: var(--trangle-mint);
}

.trangle-hero {
    min-height: calc(100dvh - 160px);
    display: flex;
    align-items: center;
    padding: clamp(38px, 4vw, 56px) 0;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(6, 16, 24, 0.92), rgba(2, 7, 11, 0.7) 46%, rgba(16, 26, 31, 0.9)),
        var(--trangle-ink);
}

.trangle-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(42px, 7vw, 92px);
}

.trangle-hero__copy {
    min-width: 0;
}

.trangle-hero h1,
.trangle-hero__statement,
.trangle-pricing h2,
.trangle-apps h2,
.trangle-specialized h2,
.trangle-custom h2 {
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: 0;
}

.trangle-hero h1 {
    max-width: 760px;
    font-size: clamp(3.5rem, 5.7vw, 5.45rem);
    line-height: 0.98;
}

.trangle-hero__statement {
    max-width: 760px;
    margin-top: 18px;
    color: var(--trangle-mint);
    font-size: clamp(1.75rem, 2.55vw, 2.5rem);
    line-height: 1.08;
}

.trangle-hero__lead {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--trangle-sage);
    font-size: clamp(1.08rem, 1.45vw, 1.22rem);
    line-height: 1.7;
}

.trangle-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.trangle-console {
    position: relative;
    min-width: 0;
    padding: clamp(20px, 2.4vw, 28px);
    border: 1px solid rgba(104, 224, 196, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 26, 31, 0.98), rgba(6, 16, 24, 0.96)),
        var(--trangle-surface);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.trangle-console::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(246, 241, 234, 0.08);
    pointer-events: none;
}

.trangle-console__header,
.trangle-console__footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--trangle-steel);
    font-family: var(--ui);
    font-size: var(--type-small);
}

.trangle-console__header strong {
    color: var(--trangle-mint);
}

.trangle-console__screen {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.trangle-console__screen div {
    min-height: 118px;
    padding: 18px;
    border: 1px solid rgba(246, 241, 234, 0.1);
    background:
        linear-gradient(180deg, rgba(2, 7, 11, 0.72), rgba(2, 7, 11, 0.36));
}

.trangle-console__screen span,
.trangle-console__screen strong {
    display: block;
}

.trangle-console__screen span {
    color: var(--trangle-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
}

.trangle-console__screen strong {
    margin-top: 16px;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(2.75rem, 4.2vw, 3.8rem);
    line-height: 0.9;
}

.trangle-workflow-map {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.trangle-workflow-map span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 12px;
    border: 1px solid rgba(104, 224, 196, 0.18);
    color: var(--trangle-parchment);
    background: rgba(104, 224, 196, 0.06);
    font-family: var(--ui);
    font-size: var(--type-small);
    font-weight: 700;
}

.trangle-workflow-map span:nth-child(5),
.trangle-workflow-map span:nth-child(6) {
    border-color: rgba(46, 216, 195, 0.28);
    background: rgba(46, 216, 195, 0.08);
}

.trangle-console__footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(246, 241, 234, 0.1);
}

.trangle-pricing {
    background: var(--trangle-graphite);
    border-bottom: 1px solid var(--line);
}

.trangle-pricing__grid,
.trangle-app-grid,
.trangle-specialized__grid {
    display: grid;
    gap: 16px;
}

.trangle-pricing__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trangle-price-card,
.trangle-app-card,
.trangle-specialized-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 26, 31, 0.96), rgba(6, 16, 24, 0.92));
    overflow-wrap: anywhere;
}

.trangle-price-card {
    min-height: 210px;
    padding: 26px;
}

.trangle-price-card h3,
.trangle-app-card h3,
.trangle-specialized-card h3 {
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: var(--type-card);
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: 0;
}

.trangle-price-card p,
.trangle-app-card p,
.trangle-specialized-card p {
    margin: 18px 0 0;
    color: var(--trangle-sage);
    line-height: 1.64;
}

.trangle-price-card:first-child {
    border-color: rgba(104, 224, 196, 0.42);
    background:
        linear-gradient(145deg, rgba(104, 224, 196, 0.13), rgba(6, 16, 24, 0.94)),
        var(--trangle-surface);
}

.trangle-price-card:nth-child(2) {
    border-color: rgba(141, 240, 213, 0.34);
}

.trangle-price-card:nth-child(4) {
    border-color: rgba(46, 216, 195, 0.32);
}

.trangle-app-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trangle-app-card {
    display: grid;
    align-content: start;
    min-height: 300px;
    padding: 28px;
}

.trangle-app-card > span {
    display: inline-flex;
    margin-bottom: 58px;
    color: var(--trangle-mint);
    font-family: var(--display);
    font-size: clamp(2.1rem, 3vw, 2.65rem);
    line-height: 1;
    font-weight: 600;
}

.trangle-specialized {
    background:
        linear-gradient(180deg, rgba(6, 16, 24, 0.42), rgba(2, 7, 11, 0.05)),
        var(--trangle-ink);
}

.trangle-specialized__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trangle-specialized-card {
    min-height: 210px;
    padding: 26px;
}

.trangle-specialized-card:nth-child(2n) {
    border-color: rgba(46, 216, 195, 0.24);
}

.trangle-specialized-card:nth-child(3n) {
    border-color: rgba(141, 240, 213, 0.28);
}

.trangle-custom {
    border-block: 1px solid var(--line);
    background: var(--trangle-graphite);
}

.trangle-custom__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.74fr) minmax(380px, 1fr);
    align-items: center;
    gap: clamp(42px, 6vw, 78px);
}

.trangle-custom__image {
    min-width: 0;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(104, 224, 196, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: var(--trangle-surface);
}

.trangle-custom__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.04);
}

.trangle-workflow-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    color: var(--trangle-parchment);
}

.trangle-workflow-list li {
    display: flex;
    gap: 12px;
    line-height: 1.55;
}

.trangle-workflow-list li::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 0.62em;
    background: var(--trangle-mint);
}

.trangle-final-cta {
    background:
        linear-gradient(135deg, var(--trangle-mint), rgba(46, 216, 195, 0.76));
}

.trangle-final-cta h2 {
    color: var(--trangle-ink);
}

.trangle-odoo-hero {
    position: relative;
    min-height: calc(100dvh - 160px);
    display: flex;
    align-items: center;
    padding: clamp(36px, 3.6vw, 52px) 0;
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
    background:
        linear-gradient(115deg, rgba(2, 7, 11, 0.96), rgba(6, 16, 24, 0.9) 54%, rgba(16, 26, 31, 0.98)),
        var(--trangle-ink);
}

.trangle-odoo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(246, 241, 234, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 241, 234, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.72), transparent 76%);
    mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.72), transparent 76%);
    pointer-events: none;
}

.trangle-odoo-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.68fr);
    align-items: center;
    gap: clamp(42px, 6vw, 88px);
}

.trangle-odoo-hero h1 {
    margin: 0;
    color: var(--trangle-mint);
    font-family: var(--ui);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.trangle-hero__offer {
    max-width: 820px;
    margin: 14px 0 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(3rem, 4.05vw, 4rem);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: 0;
}

.trangle-odoo-hero .trangle-hero__statement {
    margin-top: 14px;
    color: var(--trangle-sage);
    font-size: clamp(1.18rem, 1.62vw, 1.5rem);
    line-height: 1.22;
}

.trangle-odoo-hero .trangle-hero__lead {
    margin-top: 14px;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.56;
}

.trangle-hero-price {
    display: inline-grid;
    gap: 6px;
    min-width: min(100%, 360px);
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(104, 224, 196, 0.36);
    border-radius: 8px;
    background: rgba(104, 224, 196, 0.08);
}

.trangle-hero-price strong {
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.18rem, 1.65vw, 1.45rem);
    line-height: 1.08;
}

.trangle-hero-price span {
    color: var(--trangle-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
    line-height: 1.4;
}

.trangle-odoo-hero .trangle-actions {
    margin-top: 18px;
}

.trangle-proof-ribbon {
    border-block: 1px solid rgba(246, 241, 234, 0.12);
    background: var(--trangle-graphite);
}

.trangle-proof-ribbon__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
}

.trangle-proof-ribbon article {
    min-height: 148px;
    padding: clamp(22px, 3vw, 30px);
    background: rgba(2, 7, 11, 0.22);
}

.trangle-proof-ribbon h2 {
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.22rem, 1.8vw, 1.62rem);
    line-height: 1.12;
}

.trangle-proof-ribbon p {
    margin: 14px 0 0;
    color: var(--trangle-sage);
    font-size: var(--type-small);
    line-height: 1.54;
}

.trangle-app-market,
.trangle-productivity {
    background: var(--trangle-ink);
}

.trangle-app-market__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 18px;
}

.trangle-app-family,
.trangle-productivity__grid article,
.trangle-platform__cards article,
.trangle-flow article {
    border: 1px solid rgba(246, 241, 234, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 26, 31, 0.96), rgba(6, 16, 24, 0.92));
}

.trangle-app-family {
    min-height: 480px;
    padding: clamp(26px, 3vw, 36px);
}

.trangle-app-family > span,
.trangle-flow article > span {
    display: inline-flex;
    color: var(--trangle-mint);
    font-family: var(--ui);
    font-size: var(--type-label);
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.trangle-app-family h3,
.trangle-productivity__grid h3,
.trangle-platform__cards h3,
.trangle-flow h3 {
    margin: 16px 0 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.45rem, 2.25vw, 2rem);
    line-height: 1.12;
}

.trangle-app-family__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.trangle-app-family__list div {
    min-height: 162px;
    padding: 18px;
    border: 1px solid rgba(104, 224, 196, 0.16);
    border-radius: 8px;
    background: rgba(104, 224, 196, 0.05);
}

.trangle-app-family__list strong {
    color: var(--trangle-parchment);
    font-family: var(--ui);
    font-size: 1rem;
}

.trangle-app-family__list p,
.trangle-app-family p,
.trangle-productivity__grid p,
.trangle-platform__cards p,
.trangle-flow p {
    margin: 12px 0 0;
    color: var(--trangle-sage);
    line-height: 1.6;
}

.trangle-app-family--accent {
    border-color: rgba(46, 216, 195, 0.28);
    background:
        linear-gradient(145deg, rgba(46, 216, 195, 0.1), rgba(6, 16, 24, 0.94)),
        var(--trangle-surface);
}

.trangle-app-family__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.trangle-app-family__tags span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid rgba(246, 241, 234, 0.12);
    border-radius: 8px;
    color: var(--trangle-parchment);
    background: rgba(2, 7, 11, 0.28);
    font-family: var(--ui);
    font-size: var(--type-small);
    font-weight: 800;
}

.trangle-workday {
    border-block: 1px solid rgba(246, 241, 234, 0.12);
    background: var(--trangle-graphite);
}

.trangle-workday__grid,
.trangle-platform__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
    align-items: center;
    gap: clamp(42px, 6vw, 78px);
}

.trangle-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trangle-flow article {
    min-height: 210px;
    padding: 26px;
}

.trangle-flow article:nth-child(2),
.trangle-flow article:nth-child(3) {
    border-color: rgba(141, 240, 213, 0.26);
}

.trangle-productivity__grid,
.trangle-platform__cards {
    display: grid;
    gap: 16px;
}

.trangle-productivity__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trangle-productivity__grid article,
.trangle-platform__cards article {
    min-height: 230px;
    padding: 28px;
}

.trangle-platform {
    border-top: 1px solid rgba(246, 241, 234, 0.12);
    background:
        linear-gradient(180deg, rgba(6, 16, 24, 0.32), rgba(2, 7, 11, 0.04)),
        var(--trangle-ink);
}

.trangle-platform__cards {
    grid-template-columns: 1fr;
}

.trangle-platform__cards article:nth-child(2) {
    border-color: rgba(104, 224, 196, 0.3);
}

.trangle-platform__cards article:nth-child(3) {
    border-color: rgba(46, 216, 195, 0.28);
}

.trangle-taste-page {
    --trangle-accent: #68E0C4;
    background: var(--space-black);
}

.trangle-taste-hero {
    position: relative;
    min-height: clamp(660px, calc(100dvh - 126px), 860px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(44px, 5vw, 72px) 0 clamp(48px, 5vw, 76px);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(120% 92% at 50% -10%, var(--deep-space), transparent 60%),
        var(--space-black);
    isolation: isolate;
}

.trangle-taste-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -12vw;
    z-index: 0;
    width: min(760px, 62vw);
    aspect-ratio: 1;
    border-radius: 999px;
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(104, 224, 196, 0.06) 0 15%, transparent 17%),
        repeating-radial-gradient(circle, transparent 0 78px, rgba(104, 224, 196, 0.05) 79px 80px, transparent 81px 156px);
    opacity: 0.4;
}

.trangle-taste-hero::after {
    display: none;
}

.trangle-taste-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    width: calc(100% - calc(var(--side) * 2));
    grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.74fr);
    gap: clamp(38px, 5.2vw, 74px);
    align-items: center;
}

.trangle-taste-hero__copy {
    max-width: 940px;
}

.trangle-taste-hero h1,
.trangle-taste-section-head h2,
.trangle-taste-flow h2,
.trangle-taste-implementation h2 {
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: 0;
}

.trangle-taste-hero h1 {
    max-width: 11.8em;
    font-size: clamp(3.4rem, 4.65vw, 5.75rem);
    line-height: 0.94;
}

.trangle-taste-hero__lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--trangle-sage);
    font-size: clamp(1.06rem, 1.32vw, 1.24rem);
    line-height: 1.55;
}

.trangle-hero-amount {
    color: var(--trangle-accent);
    white-space: nowrap;
}

.trangle-hero-apps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.trangle-hero-apps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: 92px;
    padding: 14px 8px;
    border: 1px solid rgba(104, 224, 196, 0.22);
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(104, 224, 196, 0.08), rgba(6, 16, 24, 0.18));
    text-align: center;
}

.trangle-hero-app__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(104, 224, 196, 0.14);
    color: var(--trangle-accent);
}

.trangle-hero-app__icon svg {
    width: 21px;
    height: 21px;
}

.trangle-hero-app__name {
    color: var(--trangle-parchment);
    font-family: var(--ui);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.trangle-hero-apps .trangle-hero-apps__more {
    width: auto;
    flex-direction: row;
    padding: 0 4px;
    border: none;
    background: none;
}

.trangle-hero-apps__more a {
    color: var(--trangle-accent);
    font-family: var(--ui);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.trangle-hero-apps__more a:hover {
    opacity: 0.72;
}

.trangle-taste-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
    margin-top: 30px;
}

.trangle-taste-actions .btn {
    min-height: 54px;
}

.trangle-taste-price {
    position: absolute;
    top: 20px;
    right: -28px;
    z-index: 5;
    display: grid;
    width: min(260px, 44%);
    gap: 7px;
    padding: 16px;
    border: 1px solid rgba(246, 241, 234, 0.14);
    border-radius: 8px;
    background: rgba(6, 16, 24, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.1),
        0 24px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px);
}

.trangle-taste-hero__aside {
    position: relative;
    display: grid;
    align-items: center;
    min-width: 0;
    min-height: 590px;
}

.trangle-taste-price > span,
.trangle-taste-specialized > span {
    color: var(--trangle-accent);
    font-family: var(--ui);
    font-size: var(--type-label);
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.trangle-taste-price strong {
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.34rem, 1.7vw, 1.72rem);
    line-height: 1.05;
}

.trangle-taste-price p {
    margin: 0;
    color: var(--trangle-sage);
    font-size: 0.92rem;
    line-height: 1.5;
}

.trangle-product-showcase {
    position: relative;
    width: min(100%, 720px);
    min-height: 590px;
    min-width: 0;
    isolation: isolate;
    margin: 0;
    overflow: visible;
}

.trangle-product-showcase__screen {
    position: absolute;
    top: 78px;
    right: -8px;
    z-index: 2;
    width: min(100%, 660px);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(246, 241, 234, 0.18);
    border-radius: 8px;
    background: #f8faf9;
    box-shadow:
        0 38px 118px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(104, 224, 196, 0.08);
}

.trangle-product-showcase__screen img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    object-position: top left;
}

.trangle-product-showcase__phone {
    position: absolute;
    bottom: 44px;
    left: -20px;
    z-index: 6;
    width: clamp(112px, 10.5vw, 156px);
    overflow: hidden;
    border: 5px solid rgba(2, 7, 11, 0.94);
    border-radius: 26px;
    background: #f8faf9;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(246, 241, 234, 0.16);
}

.trangle-product-showcase__phone img {
    display: block;
    width: 100%;
    aspect-ratio: 375 / 812;
    object-fit: cover;
    object-position: top;
}

.trangle-product-showcase.is-visible .trangle-taste-price {
    animation: trangleCardFloat 7.2s ease-in-out 450ms infinite;
}

.trangle-taste-ribbon {
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
    background: var(--trangle-graphite);
}

.trangle-taste-ribbon__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trangle-taste-ribbon article {
    min-height: 156px;
    padding: clamp(22px, 2.8vw, 30px);
    border-right: 1px solid rgba(246, 241, 234, 0.1);
}

.trangle-taste-ribbon article:last-child {
    border-right: 0;
}

.trangle-taste-ribbon h2 {
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    line-height: 1.1;
    font-weight: 600;
}

.trangle-taste-ribbon p {
    margin: 14px 0 0;
    color: var(--trangle-sage);
    font-size: var(--type-small);
    line-height: 1.52;
}

.trangle-product-views {
    padding-block: var(--section-space);
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
    background:
        radial-gradient(circle at 50% 8%, rgba(104, 224, 196, 0.11), transparent 34%),
        linear-gradient(180deg, rgba(6, 16, 24, 0.72), rgba(2, 7, 11, 0.94)),
        var(--trangle-ink);
}

.trangle-demo-reel {
    width: min(calc(100% - clamp(32px, 5vw, 96px)), 1760px);
    margin-inline: auto;
}

.trangle-demo-reel__stage {
    min-width: 0;
}

.trangle-demo-reel__browser {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(246, 241, 234, 0.14);
    border-radius: 8px;
    background:
        radial-gradient(circle at 12% 12%, rgba(104, 224, 196, 0.1), transparent 28%),
        linear-gradient(145deg, rgba(16, 26, 31, 0.98), rgba(6, 16, 24, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.08),
        0 36px 110px rgba(0, 0, 0, 0.28);
}

.trangle-demo-reel__bar {
    display: grid;
    min-height: 54px;
    grid-template-columns: auto 1fr 8px 8px 8px;
    gap: 10px;
    align-items: center;
    padding: 0 clamp(14px, 1.7vw, 24px);
    border-bottom: 1px solid rgba(246, 241, 234, 0.1);
}

.trangle-demo-reel__bar span {
    color: var(--trangle-accent);
    font-family: var(--ui);
    font-size: var(--type-label);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trangle-demo-reel__bar strong {
    justify-self: end;
    color: rgba(246, 241, 234, 0.76);
    font-family: var(--ui);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trangle-demo-reel__bar i {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(246, 241, 234, 0.28);
    animation-duration: 42s;
    animation-iteration-count: infinite;
    animation-timing-function: var(--ease-premium);
}

.trangle-demo-reel__bar i:nth-of-type(1) {
    animation-name: trangleDemoDotOne;
}

.trangle-demo-reel__bar i:nth-of-type(2) {
    animation-name: trangleDemoDotTwo;
}

.trangle-demo-reel__bar i:nth-of-type(3) {
    animation-name: trangleDemoDotThree;
}

.trangle-demo-reel__viewport {
    position: relative;
    height: clamp(560px, 74dvh, 920px);
    min-height: 560px;
    overflow: hidden;
    background: #f8faf9;
}

.trangle-demo-reel__viewport::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    background:
        linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 49%, transparent 57%),
        linear-gradient(180deg, rgba(2, 7, 11, 0) 64%, rgba(2, 7, 11, 0.18));
    opacity: 0.45;
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translate3d(-82%, 0, 0);
    animation: trangleDemoSheen 42s var(--ease-premium) infinite;
}

.trangle-demo-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    animation: trangleDemoFrameCycle 42s var(--ease-premium) infinite;
    animation-delay: calc(var(--frame-index) * 7s);
    will-change: opacity;
}

.trangle-demo-frame > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: top left;
}

.trangle-demo-frame--actions > img {
    object-position: top left;
    transform: scale(1.06);
    transform-origin: top left;
}

.trangle-demo-frame--items > img {
    object-position: top left;
}

.trangle-demo-frame--item-detail > img {
    object-position: top left;
    transform: scale(1.08);
    transform-origin: top left;
}

.trangle-demo-frame--payments > img {
    object-position: top left;
    transform: scale(1.04);
    transform-origin: top left;
}

.trangle-demo-frame--mobile > img {
    opacity: 0.66;
    filter: saturate(0.88) brightness(0.78) blur(1px);
    object-position: top center;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: top center;
}

.trangle-demo-phone-shot {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: block;
    width: clamp(138px, 16vw, 244px);
    overflow: hidden;
    border: 6px solid rgba(2, 7, 11, 0.96);
    border-radius: clamp(24px, 2.4vw, 34px);
    background: #f8faf9;
    box-shadow:
        0 34px 80px rgba(2, 7, 11, 0.36),
        0 0 0 1px rgba(246, 241, 234, 0.18);
    transform: translate3d(-50%, -47%, 0);
}

.trangle-demo-phone-shot img {
    display: block;
    width: 100%;
    aspect-ratio: 375 / 812;
    object-fit: cover;
    object-position: top;
}

.trangle-demo-cursor {
    position: absolute;
    z-index: 9;
    width: 34px;
    height: 34px;
    color: #061018;
    filter:
        drop-shadow(0 10px 20px rgba(2, 7, 11, 0.2))
        drop-shadow(0 0 1px rgba(246, 241, 234, 0.8));
    pointer-events: none;
    animation: trangleDemoCursor 42s var(--ease-premium) infinite;
}

.trangle-demo-cursor svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: rgba(246, 241, 234, 0.92);
    stroke-width: 1.2;
}

.trangle-demo-click {
    position: absolute;
    z-index: 7;
    top: var(--click-y);
    left: var(--click-x);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(104, 224, 196, 0.68);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.42);
    box-shadow:
        inset 0 0 0 10px rgba(104, 224, 196, 0.08),
        0 0 0 1px rgba(246, 241, 234, 0.12);
    animation: trangleDemoClickPulse 42s var(--ease-premium) infinite;
    animation-delay: var(--click-delay);
}

.trangle-demo-reel__progress {
    height: 3px;
    overflow: hidden;
    background: rgba(246, 241, 234, 0.08);
}

.trangle-demo-reel__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--trangle-accent);
    transform: scaleX(0);
    transform-origin: left center;
    animation: trangleDemoProgress 42s linear infinite;
}

.trangle-taste-section-head {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: clamp(32px, 5vw, 64px);
    margin-bottom: 42px;
}

.trangle-taste-section-head .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -20px;
}

.trangle-taste-section-head h2 {
    max-width: 760px;
    font-size: clamp(2.4rem, 3.4vw, 3.35rem);
    line-height: 1.02;
}

.trangle-taste-section-head p {
    max-width: 520px;
    margin: 0;
    color: var(--trangle-sage);
    line-height: 1.62;
}

.trangle-taste-apps,
.trangle-taste-flow {
    background: var(--trangle-ink);
}

.trangle-taste-apps .trangle-taste-section-head {
    align-items: start;
    margin-bottom: 34px;
}

.trangle-taste-apps .trangle-taste-section-head h2 {
    max-width: 720px;
    font-size: clamp(2.4rem, 3.4vw, 3.35rem);
}

.trangle-taste-apps__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    gap: clamp(28px, 4.2vw, 54px);
    align-items: start;
}

.trangle-taste-app-list {
    border-top: 1px solid rgba(246, 241, 234, 0.14);
}

.trangle-taste-app-list article {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: clamp(18px, 4vw, 44px);
    padding: 26px 0;
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
}

.trangle-taste-app-list article > span,
.trangle-taste-flow__steps article > span {
    color: var(--trangle-accent);
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1;
    font-weight: 600;
}

.trangle-taste-app-list h3,
.trangle-taste-flow__steps h3 {
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1.08;
    font-weight: 600;
}

.trangle-taste-app-list p,
.trangle-taste-flow__steps p,
.trangle-taste-specialized p {
    max-width: 56rem;
    margin: 10px 0 0;
    color: var(--trangle-sage);
    line-height: 1.6;
}

.trangle-taste-specialized {
    position: sticky;
    top: 112px;
    padding-top: 18px;
    border-top: 1px solid rgba(104, 224, 196, 0.38);
}

.trangle-specialized-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.trangle-specialized-tags span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 9px;
    border: 1px solid rgba(246, 241, 234, 0.1);
    background: rgba(246, 241, 234, 0.035);
    color: var(--trangle-sage);
    font-family: var(--ui);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.15;
}

.trangle-specialized-cta {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding: clamp(18px, 2vw, 22px);
    border: 1px solid rgba(104, 224, 196, 0.34);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 10%, rgba(104, 224, 196, 0.16), transparent 34%),
        rgba(104, 224, 196, 0.065);
}

.trangle-specialized-cta strong {
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.22rem, 1.8vw, 1.55rem);
    line-height: 1.1;
}

.trangle-specialized-cta p {
    margin: 0;
    font-size: var(--type-small);
}

.trangle-specialized-cta .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    text-align: center;
}

.trangle-taste-flow {
    border-top: 1px solid rgba(246, 241, 234, 0.12);
}

.trangle-taste-flow__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: start;
}

.trangle-taste-flow__grid .trangle-taste-section-head {
    display: block;
    margin-bottom: 0;
}

.trangle-taste-flow__grid .section-kicker {
    margin-bottom: 18px;
}

.trangle-taste-flow__steps {
    border-top: 1px solid rgba(246, 241, 234, 0.14);
}

.trangle-taste-flow__steps article {
    display: grid;
    grid-template-columns: 70px minmax(130px, 0.36fr) minmax(220px, 1fr);
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(246, 241, 234, 0.12);
}

.trangle-taste-implementation {
    border-block: 1px solid rgba(246, 241, 234, 0.12);
    background: var(--trangle-graphite);
}

.trangle-taste-implementation__grid {
    display: grid;
    grid-template-columns: minmax(820px, 1fr) minmax(320px, 0.46fr);
    align-items: center;
    gap: clamp(34px, 3.8vw, 48px);
}

.trangle-taste-implementation__image {
    min-width: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border: 1px solid rgba(246, 241, 234, 0.12);
}

.trangle-taste-implementation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04);
}

.trangle-testimonials {
    position: relative;
    overflow: hidden;
    border-block: 1px solid rgba(246, 241, 234, 0.12);
    background:
        radial-gradient(circle at 84% 18%, rgba(104, 224, 196, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(6, 16, 24, 0.88), rgba(2, 7, 11, 0.94)),
        var(--trangle-graphite);
}

.trangle-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(246, 241, 234, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 241, 234, 0.028) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: linear-gradient(115deg, rgba(0, 0, 0, 0.58), transparent 72%);
    mask-image: linear-gradient(115deg, rgba(0, 0, 0, 0.58), transparent 72%);
    pointer-events: none;
}

.trangle-testimonials__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.trangle-testimonials__intro h2 {
    max-width: 760px;
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(2.65rem, 4.7vw, 5.05rem);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: 0;
}

.trangle-testimonials__intro > p:not(.section-kicker) {
    max-width: 540px;
    margin: 24px 0 0;
    color: var(--trangle-sage);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.65;
}

.trangle-testimonials__proof {
    display: grid;
    gap: 6px;
    max-width: 360px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(104, 224, 196, 0.34);
}

.trangle-testimonials__proof strong {
    color: var(--trangle-accent);
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 0.9;
}

.trangle-testimonials__proof span {
    color: var(--trangle-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
    line-height: 1.45;
}

.trangle-testimonial-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.trangle-testimonial-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: clamp(22px, 2.3vw, 30px);
    border: 1px solid rgba(246, 241, 234, 0.13);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 26, 31, 0.96), rgba(6, 16, 24, 0.9));
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.18);
}

.trangle-testimonial-card:nth-child(2) {
    border-color: rgba(104, 224, 196, 0.3);
    transform: translateY(24px);
}

.trangle-testimonial-card:nth-child(3) {
    border-color: rgba(46, 216, 195, 0.22);
}

.trangle-testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: var(--trangle-accent);
    font-size: 0.9rem;
    line-height: 1;
}

.trangle-testimonial-card blockquote {
    margin: 34px 0 0;
}

.trangle-testimonial-card blockquote p {
    margin: 0;
    color: var(--trangle-parchment);
    font-family: var(--display);
    font-size: clamp(1.28rem, 1.6vw, 1.58rem);
    line-height: 1.28;
    letter-spacing: 0;
}

.trangle-testimonial-card footer {
    display: grid;
    gap: 5px;
    margin-top: auto;
    padding-top: 32px;
}

.trangle-testimonial-card footer strong {
    color: var(--trangle-parchment);
    font-family: var(--ui);
    font-size: 1rem;
    line-height: 1.1;
}

.trangle-testimonial-card footer span {
    color: var(--trangle-sage);
    font-family: var(--ui);
    font-size: var(--type-small);
    line-height: 1.35;
}

.trangle-workflow-builder {
    --workflow-ink: var(--trangle-ink);
    --workflow-panel: rgba(16, 26, 31, 0.88);
    --workflow-panel-strong: rgba(20, 36, 39, 0.96);
    --workflow-line: rgba(104, 224, 196, 0.24);
    --workflow-line-active: rgba(104, 224, 196, 0.86);
    --workflow-text: var(--trangle-parchment);
    --workflow-muted: rgba(175, 201, 192, 0.76);
    --workflow-accent: var(--trangle-accent);
    min-width: 0;
    width: min(100%, 920px);
    margin: 0;
    padding: clamp(16px, 1.8vw, 24px);
    overflow: hidden;
    border: 1px solid rgba(104, 224, 196, 0.24);
    border-radius: 10px;
    background:
        radial-gradient(circle at 28% 18%, rgba(104, 224, 196, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(16, 26, 31, 0.92), rgba(2, 7, 11, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.08),
        0 34px 96px rgba(0, 0, 0, 0.34);
}

.trangle-workflow-builder__canvas {
    position: relative;
    width: 100%;
    height: clamp(560px, 44vw, 660px);
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(rgba(104, 224, 196, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 224, 196, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 34% 46%, rgba(104, 224, 196, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(10, 22, 26, 0.96), rgba(3, 10, 13, 0.98));
    background-size: 46px 46px, 46px 46px, auto, auto;
    color: var(--workflow-text);
    font-family: var(--ui);
    box-shadow: inset 0 0 0 1px rgba(246, 241, 234, 0.06);
}

.trangle-workflow-builder__label {
    position: absolute;
    top: 7.2%;
    left: 6.6%;
    z-index: 2;
    color: rgba(175, 201, 192, 0.8);
    font-size: clamp(0.62rem, 0.8vw, 0.78rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trangle-workflow-line {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 999px;
    background: var(--workflow-line);
}

.trangle-workflow-line--start-down {
    top: 31%;
    left: 12.6%;
    width: 2px;
    height: 35%;
}

.trangle-workflow-line--start-branch {
    top: 66%;
    left: 12.6%;
    width: 24%;
    height: 2px;
}

.trangle-workflow-line--instance-down {
    top: 30%;
    left: 68.5%;
    width: 2px;
    height: 39%;
}

.trangle-workflow-line--condition-out {
    top: 57.5%;
    left: 59.6%;
    width: 8.9%;
    height: 2px;
}

.trangle-workflow-line--menu-link {
    top: 60.5%;
    left: 68.5%;
    width: 11%;
    height: 2px;
}

.trangle-workflow-plus {
    position: absolute;
    z-index: 4;
    display: grid;
    width: clamp(28px, 2.8vw, 38px);
    height: clamp(28px, 2.8vw, 38px);
    padding: 0;
    place-items: center;
    border: 1px solid rgba(104, 224, 196, 0.26);
    border-radius: 8px;
    appearance: none;
    background: rgba(10, 22, 26, 0.88);
    color: rgba(141, 240, 213, 0.9);
    cursor: pointer;
    font-family: var(--ui);
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    font-weight: 800;
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.08),
        0 10px 24px rgba(0, 0, 0, 0.24);
    transition:
        border-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.trangle-workflow-plus:hover,
.trangle-workflow-plus:focus-visible,
.trangle-workflow-plus.is-active {
    border-color: rgba(104, 224, 196, 0.64);
    color: var(--trangle-ink);
    background: var(--workflow-accent);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.24),
        0 0 0 4px rgba(104, 224, 196, 0.12);
    transform: translate3d(0, -1px, 0);
}

.trangle-workflow-plus:focus-visible {
    outline: 2px solid rgba(104, 224, 196, 0.52);
    outline-offset: 2px;
}

.trangle-workflow-plus--start {
    top: 22.5%;
    left: 37.7%;
}

.trangle-workflow-plus--condition {
    top: 62.8%;
    left: 24%;
}

.trangle-workflow-plus--instance {
    top: 22.5%;
    left: 75.2%;
}

.trangle-workflow-plus--active {
    top: 55.3%;
    left: 67.4%;
    border-color: rgba(104, 224, 196, 0.72);
    color: var(--workflow-accent);
    animation: workflowPlusPulse 2.6s ease-in-out infinite;
}

.trangle-workflow-node {
    position: absolute;
    z-index: 3;
    display: grid;
    grid-template-columns: clamp(38px, 4.1vw, 54px) minmax(0, 1fr) 14px;
    gap: 0 clamp(12px, 1.2vw, 16px);
    align-items: center;
    min-height: clamp(68px, 5.7vw, 82px);
    padding: clamp(14px, 1.35vw, 18px);
    border: 1px solid rgba(104, 224, 196, 0.2);
    border-radius: 12px;
    appearance: none;
    background:
        linear-gradient(145deg, rgba(20, 36, 39, 0.92), rgba(8, 18, 22, 0.95));
    color: inherit;
    cursor: pointer;
    font-family: var(--ui);
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.06),
        0 16px 42px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition:
        border-color 260ms ease,
        box-shadow 260ms ease,
        filter 260ms ease,
        transform 260ms ease;
}

.trangle-workflow-node::after {
    content: "";
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(104, 224, 196, 0);
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    transition:
        border-color 260ms ease,
        opacity 260ms ease;
}

.trangle-workflow-node:hover,
.trangle-workflow-node:focus-visible,
.trangle-workflow-node.is-active {
    border-color: rgba(104, 224, 196, 0.58);
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(246, 241, 234, 0.1);
    transform: translate3d(0, -2px, 0);
}

.trangle-workflow-node.is-active::after {
    border-color: rgba(104, 224, 196, 0.72);
    opacity: 1;
}

.trangle-workflow-node:focus-visible {
    outline: 2px solid rgba(104, 224, 196, 0.52);
    outline-offset: 3px;
}

.trangle-workflow-builder.is-interacting .trangle-workflow-node:not(.is-active) {
    filter: saturate(0.82);
}

.trangle-workflow-node > span {
    display: grid;
    width: clamp(38px, 4vw, 52px);
    height: clamp(38px, 4vw, 52px);
    place-items: center;
    border-radius: 10px;
    background: rgba(104, 224, 196, 0.18);
    color: var(--workflow-accent);
    box-shadow: inset 0 0 0 1px rgba(104, 224, 196, 0.24);
    font-size: clamp(0.82rem, 1vw, 1rem);
    font-weight: 900;
}

.trangle-workflow-node strong {
    display: block;
    color: var(--workflow-text);
    font-size: clamp(1rem, 1.18vw, 1.22rem);
    line-height: 1.08;
}

.trangle-workflow-node em {
    display: block;
    margin-top: 5px;
    color: var(--workflow-muted);
    font-size: clamp(0.78rem, 0.88vw, 0.92rem);
    font-style: normal;
    font-weight: 700;
}

.trangle-workflow-node i {
    width: 14px;
    height: 14px;
    justify-self: end;
    border-radius: 3px;
    background:
        linear-gradient(rgba(175, 201, 192, 0.48) 0 0) center 3px / 9px 1px no-repeat,
        linear-gradient(rgba(175, 201, 192, 0.48) 0 0) center 7px / 9px 1px no-repeat,
        linear-gradient(rgba(175, 201, 192, 0.48) 0 0) center 11px / 9px 1px no-repeat;
}

.trangle-workflow-node--start {
    top: 17%;
    left: 6.8%;
    width: 31%;
}

.trangle-workflow-node--instance {
    top: 17%;
    left: 44.4%;
    width: 29.6%;
}

.trangle-workflow-node--instance > span,
.trangle-workflow-node--request > span {
    background: rgba(104, 224, 196, 0.14);
    color: var(--workflow-accent);
}

.trangle-workflow-node--condition {
    top: 39%;
    left: 31.5%;
    width: 33.5%;
    min-height: clamp(132px, 11vw, 158px);
    align-items: start;
}

.trangle-workflow-node--condition > span {
    background: var(--workflow-accent);
    color: var(--workflow-ink);
}

.trangle-workflow-node--condition::before {
    content: "2";
    position: absolute;
    top: -15px;
    left: -16px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 999px;
    background: rgba(104, 224, 196, 0.94);
    color: var(--workflow-ink);
    font-size: 0.9rem;
    font-weight: 900;
}

.trangle-workflow-node--condition p,
.trangle-workflow-node--condition small {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: clamp(10px, 0.95vw, 13px);
    border-top: 1px solid rgba(246, 241, 234, 0.1);
    color: rgba(246, 241, 234, 0.88);
    font-size: clamp(0.74rem, 0.9vw, 0.92rem);
    font-weight: 800;
    line-height: 1.45;
}

.trangle-workflow-node--condition small {
    padding-top: 4px;
    border-top: 0;
    color: var(--workflow-muted);
    font-weight: 700;
}

.trangle-workflow-node--condition b {
    color: var(--workflow-accent);
    font-weight: 900;
}

.trangle-workflow-node--request {
    top: 69.5%;
    left: 30.2%;
    width: 32%;
}

.trangle-workflow-node--invoice {
    top: 85.6%;
    left: 30.2%;
    width: 32%;
}

.trangle-workflow-node--invoice > span {
    background: rgba(246, 241, 234, 0.16);
    color: var(--workflow-text);
    box-shadow: inset 0 0 0 1px rgba(246, 241, 234, 0.14);
}

.trangle-workflow-menu {
    position: absolute;
    top: 48.8%;
    right: 5.2%;
    z-index: 3;
    display: grid;
    gap: 12px;
    width: clamp(150px, 18%, 176px);
    padding: clamp(16px, 1.6vw, 22px);
    border-radius: 12px;
    border: 1px solid rgba(104, 224, 196, 0.18);
    background: rgba(8, 18, 22, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.06),
        0 18px 46px rgba(0, 0, 0, 0.34);
}

.trangle-workflow-menu button {
    position: relative;
    display: block;
    min-height: clamp(36px, 3.4vw, 44px);
    padding-left: clamp(34px, 3.8vw, 46px);
    padding-right: 10px;
    border: 0;
    border-radius: 8px;
    appearance: none;
    background: transparent;
    color: var(--workflow-text);
    cursor: pointer;
    font-family: var(--ui);
    font-size: clamp(0.78rem, 0.9vw, 0.92rem);
    font-weight: 800;
    line-height: clamp(36px, 3.4vw, 44px);
    text-align: left;
    white-space: nowrap;
    transition:
        color 220ms ease,
        transform 220ms ease;
}

.trangle-workflow-menu button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: clamp(24px, 2.8vw, 34px);
    height: clamp(24px, 2.8vw, 34px);
    border: 1px solid rgba(104, 224, 196, 0.22);
    border-radius: 8px;
    background: rgba(246, 241, 234, 0.04);
    transform: translateY(-50%);
    transition:
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.trangle-workflow-menu button:hover,
.trangle-workflow-menu button:focus-visible {
    color: var(--workflow-accent);
    transform: translate3d(1px, 0, 0);
}

.trangle-workflow-menu button:focus-visible {
    outline: 2px solid rgba(104, 224, 196, 0.5);
    outline-offset: 3px;
}

.trangle-workflow-menu button.is-active {
    background: var(--workflow-accent);
    color: var(--workflow-ink);
    box-shadow: 0 10px 22px rgba(104, 224, 196, 0.12);
}

.trangle-workflow-menu button.is-active::before {
    border-color: rgba(2, 7, 11, 0.16);
    background: rgba(2, 7, 11, 0.14);
    box-shadow: none;
}

.trangle-workflow-line.is-active {
    background: linear-gradient(90deg, rgba(104, 224, 196, 0.2), var(--workflow-line-active));
    box-shadow: 0 0 0 1px rgba(104, 224, 196, 0.06);
}

.trangle-workflow-live {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.trangle-workflow-builder {
    --workflow-panel: rgba(9, 20, 24, 0.92);
    --workflow-panel-strong: rgba(14, 31, 35, 0.97);
    --workflow-line: rgba(104, 224, 196, 0.18);
    --workflow-line-active: rgba(104, 224, 196, 0.82);
    width: min(100%, 930px);
    border-color: rgba(104, 224, 196, 0.22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 12% 18%, rgba(104, 224, 196, 0.1), transparent 30%),
        radial-gradient(circle at 78% 58%, rgba(104, 224, 196, 0.08), transparent 34%),
        linear-gradient(145deg, rgba(11, 24, 29, 0.96), rgba(2, 7, 11, 0.98));
}

.trangle-workflow-builder__canvas {
    height: clamp(600px, 45vw, 690px);
    border-radius: 8px;
    background:
        linear-gradient(rgba(104, 224, 196, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 224, 196, 0.022) 1px, transparent 1px),
        radial-gradient(circle at 22% 28%, rgba(104, 224, 196, 0.13), transparent 31%),
        radial-gradient(circle at 72% 62%, rgba(104, 224, 196, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(8, 18, 22, 0.98), rgba(3, 10, 13, 0.98));
    background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.trangle-workflow-builder__canvas::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 0;
    border: 1px solid rgba(246, 241, 234, 0.06);
    border-radius: 8px;
    pointer-events: none;
}

.trangle-workflow-paths {
    position: absolute;
    inset: clamp(28px, 3vw, 42px) clamp(28px, 3vw, 42px) clamp(70px, 6.2vw, 92px);
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.trangle-workflow-path {
    fill: none;
    stroke: var(--workflow-line);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 8 14;
    opacity: 0.62;
    transition:
        opacity 260ms ease,
        stroke 260ms ease,
        stroke-width 260ms ease;
}

.trangle-workflow-path.is-active {
    stroke: var(--workflow-line-active);
    stroke-width: 2.8;
    opacity: 1;
    animation: workflowPathFlow 2.8s linear infinite;
}

.trangle-workflow-line {
    display: none;
}

.trangle-workflow-plus {
    z-index: 4;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border-color: rgba(104, 224, 196, 0.2);
    background: rgba(8, 18, 22, 0.86);
    color: rgba(104, 224, 196, 0.7);
    font-size: 1rem;
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.06),
        0 14px 30px rgba(0, 0, 0, 0.22);
    opacity: 0.72;
}

.trangle-workflow-plus:hover,
.trangle-workflow-plus:focus-visible,
.trangle-workflow-plus.is-active {
    opacity: 1;
}

.trangle-workflow-plus--start {
    top: 25.4%;
    left: 38.7%;
}

.trangle-workflow-plus--condition {
    top: 64.6%;
    left: 24.6%;
}

.trangle-workflow-plus--instance {
    top: 25.4%;
    left: 82.4%;
}

.trangle-workflow-plus--active {
    top: 58%;
    left: 66.7%;
}

.trangle-workflow-node {
    grid-template-columns: clamp(44px, 4.7vw, 58px) minmax(0, 1fr);
    gap: 0 clamp(13px, 1.35vw, 18px);
    min-height: clamp(82px, 6.2vw, 96px);
    padding: clamp(16px, 1.45vw, 20px);
    border-radius: 8px;
    border-color: rgba(104, 224, 196, 0.18);
    background:
        linear-gradient(145deg, rgba(17, 36, 40, 0.94), rgba(7, 18, 22, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.07),
        0 18px 46px rgba(0, 0, 0, 0.3);
}

.trangle-workflow-node::after {
    border-radius: 10px;
}

.trangle-workflow-node:hover,
.trangle-workflow-node:focus-visible,
.trangle-workflow-node.is-active {
    border-color: rgba(104, 224, 196, 0.6);
    background:
        linear-gradient(145deg, rgba(22, 51, 54, 0.96), rgba(8, 22, 26, 0.98));
}

.trangle-workflow-node > span {
    width: clamp(44px, 4.6vw, 56px);
    height: clamp(44px, 4.6vw, 56px);
    border-radius: 8px;
    background: rgba(104, 224, 196, 0.15);
}

.trangle-workflow-node strong {
    font-size: clamp(1.05rem, 1.28vw, 1.34rem);
    letter-spacing: 0;
}

.trangle-workflow-node em {
    color: rgba(175, 201, 192, 0.78);
    font-size: clamp(0.78rem, 0.92vw, 0.96rem);
}

.trangle-workflow-node i {
    display: none;
}

.trangle-workflow-node--start {
    top: 18.8%;
    left: 7%;
    width: 31%;
}

.trangle-workflow-node--instance {
    top: 18.8%;
    left: 57%;
    width: 31%;
}

.trangle-workflow-node--condition {
    top: 40.8%;
    left: 28%;
    width: 38%;
    min-height: clamp(154px, 12vw, 178px);
}

.trangle-workflow-node--condition::before {
    display: none;
}

.trangle-workflow-node--condition p,
.trangle-workflow-node--condition small {
    grid-column: 2 / -1;
    font-size: clamp(0.78rem, 0.92vw, 0.96rem);
}

.trangle-workflow-node--request {
    top: 67.5%;
    left: 9.5%;
    width: 34%;
}

.trangle-workflow-node--invoice {
    top: 67.5%;
    left: 56.5%;
    width: 34%;
}

.trangle-workflow-menu {
    top: auto;
    right: 7%;
    bottom: 5.2%;
    left: 7%;
    display: flex;
    gap: 8px;
    width: auto;
    padding: 8px;
    border-radius: 8px;
    border-color: rgba(104, 224, 196, 0.18);
    background: rgba(5, 14, 18, 0.82);
}

.trangle-workflow-menu button {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    line-height: 1;
    text-align: center;
}

.trangle-workflow-menu button::before {
    display: none;
}

@media (max-width: 1180px) {
    .trangle-workflow-builder {
        justify-self: center;
        width: min(100%, 980px);
    }

    .trangle-workflow-builder__canvas {
        height: clamp(640px, 66vw, 700px);
    }
}

@media (max-width: 760px) {
    .trangle-workflow-builder {
        overflow-x: auto;
        padding: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .trangle-workflow-builder__canvas {
        width: 760px;
        height: 620px;
    }
}

.trangle-operating-map.trangle-workflow-builder {
    width: min(100%, 980px);
    padding: clamp(12px, 1.2vw, 16px);
    overflow: hidden;
    border-color: rgba(104, 224, 196, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 18% 20%, rgba(104, 224, 196, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(13, 27, 32, 0.98), rgba(3, 10, 13, 0.98));
}

.trangle-operating-map__surface {
    position: relative;
    min-height: clamp(640px, 49vw, 720px);
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(rgba(104, 224, 196, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 224, 196, 0.018) 1px, transparent 1px),
        radial-gradient(ellipse at 50% 47%, rgba(104, 224, 196, 0.15), transparent 32%),
        linear-gradient(180deg, rgba(7, 18, 22, 0.98), rgba(2, 8, 11, 0.99));
    background-size: 56px 56px, 56px 56px, auto, auto;
    box-shadow: inset 0 0 0 1px rgba(246, 241, 234, 0.06);
}

.trangle-operating-map__surface::before,
.trangle-operating-map__surface::after {
    content: "";
    position: absolute;
    inset: 8%;
    z-index: 0;
    border: 1px solid rgba(104, 224, 196, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.trangle-operating-map__surface::after {
    inset: 20% 27%;
    border-color: rgba(246, 241, 234, 0.06);
}

.trangle-operating-map__chrome {
    position: absolute;
    top: clamp(16px, 2vw, 24px);
    left: clamp(18px, 2.3vw, 28px);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.trangle-operating-map__chrome span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(175, 201, 192, 0.34);
}

.trangle-operating-map__chrome span:first-child {
    background: var(--trangle-accent);
}

.trangle-operating-map__routes {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.trangle-operating-map__route {
    fill: none;
    stroke: rgba(104, 224, 196, 0.16);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 8 18;
    opacity: 0.72;
    transition:
        opacity 280ms ease,
        stroke 280ms ease,
        stroke-width 280ms ease;
}

.trangle-operating-map__route.is-active {
    filter: url("#trangle-route-glow");
    stroke: rgba(104, 224, 196, 0.84);
    stroke-width: 3;
    opacity: 1;
    animation: workflowPathFlow 3s linear infinite;
}

.trangle-operating-map__packet {
    opacity: 0;
    transition: opacity 280ms ease;
}

.trangle-operating-map__packet circle {
    fill: var(--trangle-accent);
    stroke: rgba(246, 241, 234, 0.74);
    stroke-width: 2;
}

.trangle-operating-map__packet.is-active {
    opacity: 1;
}

.trangle-operating-node {
    position: absolute;
    z-index: 3;
    display: grid;
    grid-template-columns: clamp(36px, 3.4vw, 48px) minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
    min-height: clamp(72px, 6.2vw, 92px);
    padding: clamp(13px, 1.2vw, 17px);
    border: 1px solid rgba(104, 224, 196, 0.18);
    border-radius: 8px;
    appearance: none;
    background:
        linear-gradient(145deg, rgba(17, 34, 38, 0.92), rgba(5, 15, 18, 0.95));
    color: var(--trangle-parchment);
    cursor: pointer;
    font-family: var(--ui);
    text-align: left;
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.06),
        0 18px 46px rgba(0, 0, 0, 0.26);
    transition:
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        filter 260ms ease,
        transform 260ms ease;
}

.trangle-operating-node:hover,
.trangle-operating-node:focus-visible,
.trangle-operating-node.is-active {
    border-color: rgba(104, 224, 196, 0.58);
    background:
        linear-gradient(145deg, rgba(24, 52, 55, 0.96), rgba(7, 20, 23, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.1),
        0 22px 56px rgba(0, 0, 0, 0.32);
    transform: translate3d(0, -2px, 0);
}

.trangle-operating-node:focus-visible {
    outline: 2px solid rgba(104, 224, 196, 0.58);
    outline-offset: 3px;
}

.trangle-operating-node span {
    display: grid;
    grid-row: 1 / span 2;
    width: clamp(36px, 3.4vw, 48px);
    height: clamp(36px, 3.4vw, 48px);
    place-items: center;
    border-radius: 8px;
    background: rgba(104, 224, 196, 0.16);
    color: var(--trangle-accent);
    box-shadow: inset 0 0 0 1px rgba(104, 224, 196, 0.2);
    font-size: clamp(0.72rem, 0.84vw, 0.88rem);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.trangle-operating-node strong,
.trangle-operating-node em {
    display: block;
    min-width: 0;
}

.trangle-operating-node strong {
    grid-column: 2;
    color: var(--trangle-parchment);
    font-size: clamp(0.92rem, 1.06vw, 1.12rem);
    line-height: 1.05;
}

.trangle-operating-node em {
    grid-column: 2;
    margin-top: 5px;
    color: rgba(175, 201, 192, 0.72);
    font-size: clamp(0.72rem, 0.82vw, 0.86rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.22;
}

.trangle-operating-node.is-active span {
    background: var(--trangle-accent);
    color: var(--trangle-ink);
    box-shadow: inset 0 0 0 1px rgba(2, 7, 11, 0.12);
}

.trangle-operating-node--hub {
    top: 42%;
    left: 38.5%;
    z-index: 4;
    width: 23%;
    min-height: 118px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: clamp(18px, 1.6vw, 24px);
    text-align: center;
    background:
        linear-gradient(145deg, rgba(104, 224, 196, 0.2), rgba(9, 25, 28, 0.98));
}

.trangle-operating-node--hub span {
    grid-row: auto;
    width: clamp(48px, 4.8vw, 64px);
    height: clamp(48px, 4.8vw, 64px);
    background: var(--trangle-accent);
    color: var(--trangle-ink);
}

.trangle-operating-node--hub strong,
.trangle-operating-node--hub em {
    grid-column: auto;
}

.trangle-operating-node--pos {
    top: 17%;
    left: 6%;
    width: 25%;
}

.trangle-operating-node--inventory {
    top: 15%;
    right: 5.2%;
    width: 27%;
}

.trangle-operating-node--crm {
    top: 44%;
    left: 7%;
    width: 24%;
}

.trangle-operating-node--documents {
    bottom: 12%;
    left: 13%;
    width: 26%;
}

.trangle-operating-node--approvals {
    top: 44%;
    right: 10%;
    bottom: auto;
    width: 24%;
}

.trangle-operating-node--accounting {
    right: 6%;
    bottom: 16%;
    width: 26%;
}

.trangle-operating-map__status {
    position: absolute;
    top: 7%;
    left: 34%;
    z-index: 4;
    width: min(30%, 280px);
    padding: clamp(11px, 1.05vw, 14px);
    border: 1px solid rgba(104, 224, 196, 0.18);
    border-radius: 8px;
    background: rgba(5, 14, 18, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.06),
        0 22px 56px rgba(0, 0, 0, 0.28);
}

.trangle-operating-map__status > span {
    display: block;
    color: var(--trangle-accent);
    font-size: clamp(0.62rem, 0.76vw, 0.78rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.trangle-operating-map__status strong {
    display: block;
    margin-top: 7px;
    color: var(--trangle-parchment);
    font-size: clamp(0.98rem, 1.16vw, 1.2rem);
    line-height: 1.08;
}

.trangle-operating-map__status p {
    display: -webkit-box;
    margin: 7px 0 0;
    overflow: hidden;
    color: rgba(175, 201, 192, 0.78);
    font-size: clamp(0.7rem, 0.78vw, 0.82rem);
    font-weight: 700;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.trangle-operating-map__steps {
    display: grid;
    gap: 4px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.trangle-operating-map__steps li {
    position: relative;
    min-height: 22px;
    padding: 5px 8px 5px 24px;
    border-radius: 8px;
    background: rgba(246, 241, 234, 0.04);
    color: rgba(246, 241, 234, 0.82);
    font-size: 0.7rem;
    font-weight: 800;
}

.trangle-operating-map__steps li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 9px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(104, 224, 196, 0.72);
    transform: translateY(-50%);
}

.trangle-operating-map__steps li.is-active::before {
    animation: operatingPacketPulse 1.6s ease-in-out infinite;
}

.trangle-operating-map__controls {
    position: absolute;
    right: 4%;
    bottom: 2%;
    left: 4%;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(104, 224, 196, 0.16);
    border-radius: 8px;
    background: rgba(3, 10, 13, 0.82);
    box-shadow: inset 0 1px 0 rgba(246, 241, 234, 0.05);
}

.trangle-operating-map__controls button {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(104, 224, 196, 0.16);
    border-radius: 8px;
    appearance: none;
    background: rgba(246, 241, 234, 0.03);
    color: rgba(246, 241, 234, 0.82);
    cursor: pointer;
    font-family: var(--ui);
    font-size: clamp(0.72rem, 0.82vw, 0.9rem);
    font-weight: 900;
    transition:
        background 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}

.trangle-operating-map__controls button:hover,
.trangle-operating-map__controls button:focus-visible,
.trangle-operating-map__controls button.is-active {
    border-color: rgba(104, 224, 196, 0.58);
    background: var(--trangle-accent);
    color: var(--trangle-ink);
    transform: translate3d(0, -1px, 0);
}

.trangle-operating-map__controls button:focus-visible {
    outline: 2px solid rgba(104, 224, 196, 0.52);
    outline-offset: 3px;
}

@keyframes operatingPacketPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(104, 224, 196, 0.28);
        transform: translateY(-50%) scale(1);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(104, 224, 196, 0);
        transform: translateY(-50%) scale(1.18);
    }
}

@keyframes workflowPathFlow {
    to {
        stroke-dashoffset: -52;
    }
}

@media (max-width: 1180px) {
    .trangle-operating-map.trangle-workflow-builder {
        width: min(100%, 980px);
    }

    .trangle-operating-map__surface {
        min-height: clamp(660px, 66vw, 760px);
    }
}

@media (max-width: 760px) {
    .trangle-operating-map.trangle-workflow-builder {
        overflow: hidden;
        padding: 12px;
    }

    .trangle-operating-map__surface {
        display: grid;
        gap: 12px;
        min-height: 0;
        padding: 46px 14px 14px;
    }

    .trangle-operating-map__surface::before,
    .trangle-operating-map__surface::after,
    .trangle-operating-map__routes {
        display: none;
    }

    .trangle-operating-node,
    .trangle-operating-map__status,
    .trangle-operating-map__controls {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .trangle-operating-node {
        min-height: 74px;
    }

    .trangle-operating-node--hub {
        min-height: 110px;
    }

    .trangle-operating-map__status {
        order: 8;
    }

    .trangle-operating-map__controls {
        order: 9;
        grid-template-columns: 1fr;
    }
}

.trangle-operating-map--clean.trangle-workflow-builder {
    width: min(100%, 940px);
    padding: clamp(10px, 1vw, 14px);
    border-color: rgba(104, 224, 196, 0.16);
    background:
        radial-gradient(ellipse at 52% 42%, rgba(104, 224, 196, 0.12), transparent 36%),
        linear-gradient(145deg, rgba(10, 22, 26, 0.98), rgba(3, 10, 13, 0.98));
}

.trangle-operating-map--clean .trangle-operating-map__surface {
    min-height: clamp(500px, 40vw, 590px);
    background:
        radial-gradient(ellipse at 52% 44%, rgba(104, 224, 196, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(7, 18, 22, 0.98), rgba(2, 8, 11, 0.99));
    background-size: auto;
}

.trangle-operating-map--clean .trangle-operating-map__surface::before {
    inset: 17% 16%;
    border-color: rgba(104, 224, 196, 0.08);
}

.trangle-operating-map--clean .trangle-operating-map__surface::after {
    display: none;
}

.trangle-operating-map__label {
    position: absolute;
    top: clamp(22px, 2.4vw, 34px);
    left: clamp(24px, 2.8vw, 38px);
    z-index: 4;
    margin: 0;
    color: var(--trangle-accent);
    font-family: var(--ui);
    font-size: clamp(0.7rem, 0.78vw, 0.82rem);
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
}

.trangle-operating-map--clean .trangle-operating-map__route {
    stroke: rgba(104, 224, 196, 0.28);
    stroke-width: 2.6;
    stroke-dasharray: 10 16;
    opacity: 1;
}

.trangle-operating-map--clean .trangle-operating-map__route.is-active {
    stroke: rgba(104, 224, 196, 0.8);
    stroke-width: 3.2;
}

.trangle-operating-map--clean .trangle-operating-map__packet {
    opacity: 1;
}

.trangle-operating-map--clean .trangle-operating-node {
    min-height: clamp(104px, 8.4vw, 128px);
    border-color: rgba(104, 224, 196, 0.18);
    background: rgba(8, 20, 23, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.06),
        0 22px 54px rgba(0, 0, 0, 0.24);
}

.trangle-operating-map--clean .trangle-operating-node:hover,
.trangle-operating-map--clean .trangle-operating-node:focus-visible,
.trangle-operating-map--clean .trangle-operating-node.is-active {
    border-color: rgba(104, 224, 196, 0.36);
    background: rgba(12, 31, 34, 0.9);
}

.trangle-operating-map--clean .trangle-operating-node--pos {
    top: 34%;
    left: 7%;
    width: 26%;
}

.trangle-operating-map--clean .trangle-operating-node--hub {
    top: 29%;
    left: 37%;
    width: 25%;
    min-height: clamp(150px, 12vw, 180px);
}

.trangle-operating-map--clean .trangle-operating-node--result {
    top: 33%;
    right: 6%;
    width: 29%;
    min-height: clamp(136px, 11vw, 168px);
}

.trangle-operating-map--clean .trangle-operating-node--result small {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
}

.trangle-operating-map--clean .trangle-operating-node--result b {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 9px;
    border: 1px solid rgba(104, 224, 196, 0.16);
    border-radius: 999px;
    background: rgba(104, 224, 196, 0.07);
    color: rgba(246, 241, 234, 0.84);
    font-size: 0.72rem;
    font-weight: 800;
}

.trangle-operating-map--clean .trangle-operating-map__status {
    top: auto;
    right: 7%;
    bottom: 7%;
    left: 7%;
    display: grid;
    width: auto;
    grid-template-columns: minmax(180px, 0.74fr) minmax(0, 1fr);
    gap: 10px 22px;
    align-items: center;
    padding: 14px;
    background: rgba(3, 10, 13, 0.72);
}

.trangle-operating-map--clean .trangle-operating-map__status > span,
.trangle-operating-map--clean .trangle-operating-map__status strong,
.trangle-operating-map--clean .trangle-operating-map__status p {
    grid-column: 1;
}

.trangle-operating-map--clean .trangle-operating-map__status p {
    -webkit-line-clamp: 2;
}

.trangle-operating-map--clean .trangle-operating-map__steps {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.trangle-operating-map--clean .trangle-operating-map__steps li {
    min-height: 42px;
    padding: 10px 10px 10px 28px;
    font-size: 0.74rem;
}

@media (max-width: 760px) {
    .trangle-operating-map--clean .trangle-operating-map__label {
        position: relative;
        inset: auto;
        margin-bottom: 4px;
    }

    .trangle-operating-map--clean .trangle-operating-node--pos,
    .trangle-operating-map--clean .trangle-operating-node--hub,
    .trangle-operating-map--clean .trangle-operating-node--result,
    .trangle-operating-map--clean .trangle-operating-map__status {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .trangle-operating-map--clean .trangle-operating-map__surface {
        min-height: 0;
        padding-top: 22px;
    }

    .trangle-operating-map--clean .trangle-operating-node--hub {
        min-height: 126px;
    }

    .trangle-operating-map--clean .trangle-operating-map__status {
        grid-template-columns: 1fr;
    }

    .trangle-operating-map--clean .trangle-operating-map__steps,
    .trangle-operating-map--clean .trangle-operating-map__status > span,
    .trangle-operating-map--clean .trangle-operating-map__status strong,
    .trangle-operating-map--clean .trangle-operating-map__status p {
        grid-column: auto;
        grid-row: auto;
    }

    .trangle-operating-map--clean .trangle-operating-map__steps {
        grid-template-columns: 1fr;
    }
}

.trangle-taste-implementation .section-copy > p:not(.section-kicker) {
    margin-top: 28px;
}

.trangle-taste-implementation h2 {
    font-size: clamp(2.4rem, 3.4vw, 3.35rem);
    line-height: 1.02;
}

.trangle-taste-page .trangle-final-cta {
    background: var(--trangle-accent);
}

.trangle-taste-page .trangle-final-cta h2 {
    color: var(--trangle-ink);
}

[data-reveal]:not(.latest-project):not(.hero-media),
.reveal-media:not(.hero-media) {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
}

[data-reveal]:not(.latest-project):not(.hero-media).is-visible,
.reveal-media:not(.hero-media).is-visible {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

.reveal-media:not(.hero-media) {
    clip-path: none;
}

.site-header {
    transition:
        min-height 420ms var(--ease-premium),
        background 420ms ease,
        border-color 420ms ease,
        box-shadow 420ms ease;
}

.site-header.is-scrolled {
    background: rgba(2, 7, 11, 0.94);
    border-bottom-color: rgba(104, 224, 196, 0.22);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
    transition: min-height 420ms var(--ease-premium);
}

.site-header.is-scrolled .site-header__inner {
    min-height: 72px;
}

.hero-split-char {
    filter: blur(10px);
    transform: translate3d(0, 1.05em, 0) rotateX(68deg);
    transform-origin: 50% 100%;
    transition:
        opacity 900ms var(--ease-soft),
        filter 1150ms var(--ease-premium),
        transform 1150ms var(--ease-spring);
}

.is-ready .hero-split-char {
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0deg);
}

.hero-proof {
    filter: blur(12px);
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 850ms var(--ease-soft),
        filter 1050ms var(--ease-premium),
        transform 1050ms var(--ease-premium);
}

.is-ready .hero-proof {
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.hero-media.reveal-media {
    filter: none;
    transition: none;
}

.hero-media.reveal-media.is-visible {
    filter: blur(0);
    transform: translate3d(0, var(--depth-y, 0px), 0) scale(1);
}

/* Quiet button pack — state shown through color/border only; no lift, glow or sweep */
.btn,
.header-action {
    position: relative;
    isolation: isolate;
    transition:
        background var(--button-color-duration) ease,
        color var(--button-color-duration) ease,
        border-color var(--button-color-duration) ease,
        box-shadow var(--button-color-duration) ease;
}

.btn svg,
.header-action svg {
    transition: transform var(--button-motion-duration) var(--button-ease-out);
}

.service-card__action,
.text-link {
    --magnetic-x: 0px;
    --magnetic-y: 0px;
    --button-lift: 0px;
    --button-scale: 1;
    --button-hover-lift: -2px;
    --button-press-scale: 0.97;
    position: relative;
    isolation: isolate;
    transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + var(--button-lift)), 0) scale(var(--button-scale));
    transition:
        transform var(--button-motion-duration) var(--button-ease-out),
        background var(--button-color-duration) ease,
        color var(--button-color-duration) ease,
        border-color var(--button-color-duration) ease,
        box-shadow 220ms ease;
    will-change: transform;
}

.btn:focus-visible,
.header-action:focus-visible {
    box-shadow: var(--button-focus-ring), var(--button-shadow-hover);
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover svg,
    .header-action:hover svg {
        transform: translateX(2px);
    }

    .service-card__action:hover,
    .text-link:hover {
        --button-lift: var(--button-hover-lift);
    }
}

.btn:active,
.header-action:active {
    filter: brightness(0.95);
}

.service-card__action:active,
.text-link:active {
    --button-scale: var(--button-press-scale);
}

/* Link variant — text with a growing underline (the one signature motion) */
.btn--link {
    --button-bg: transparent;
    --button-bg-hover: transparent;
    --button-fg: var(--sentient-mint);
    --button-border-color: transparent;
    --button-border-color-hover: transparent;
    min-height: auto;
    padding: 4px 2px;
    gap: 6px;
}

.btn--link::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--button-motion-duration) var(--button-ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .btn--link:hover::after {
        transform: scaleX(1);
    }
}

.motion-surface {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    position: relative;
    isolation: isolate;
    transform-style: preserve-3d;
}

.testimonial-stack > .testimonial-card.motion-surface,
.latest-project__device-pair > .latest-project__phone.motion-surface {
    position: absolute;
}

.motion-surface > :not(.motion-spotlight) {
    position: relative;
    z-index: 1;
}

.motion-spotlight {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(141, 240, 213, 0.18), transparent 28%),
        radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(246, 241, 234, 0.12), transparent 14%);
    mix-blend-mode: screen;
    transition: opacity 420ms ease;
}

.motion-surface:hover .motion-spotlight,
.motion-surface:focus-within .motion-spotlight {
    opacity: 1;
}

.trangle-product-showcase.motion-surface > .trangle-taste-price,
.trangle-product-showcase.motion-surface > .trangle-product-showcase__screen,
.trangle-product-showcase.motion-surface > .trangle-product-showcase__phone {
    position: absolute;
}

.trangle-product-showcase.motion-surface > .trangle-taste-price {
    z-index: 5;
}

.trangle-product-showcase.motion-surface > .trangle-product-showcase__screen {
    z-index: 2;
}

.trangle-product-showcase.motion-surface > .trangle-product-showcase__phone {
    z-index: 6;
}

.marquee-section {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.marquee-track {
    animation-duration: 64s;
}

.services-orbit,
.tech-stack-showcase::before {
    animation: orbitBreathe 16s ease-in-out infinite;
}

.about-paths path {
    stroke-dasharray: 11 18;
    animation: pathCurrent 18s linear infinite;
}

.about-paths path:nth-child(2n) {
    animation-direction: reverse;
    animation-duration: 22s;
}

.rotor__outer {
    animation: rotorDash 12s linear infinite;
}

.service-card {
    transform: translate3d(0, 0, 0);
    transition:
        transform 700ms var(--ease-spring),
        border-color 320ms ease,
        background 320ms ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translate3d(0, -10px, 0);
}

.service-card__media::after {
    top: 50%;
    left: 0;
    width: 32%;
    height: 180%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(246, 241, 234, 0.36), transparent);
    transform: translate(-145%, -50%) rotate(18deg);
    transition:
        opacity 320ms ease,
        transform 920ms var(--ease-premium);
}

.service-card:hover .service-card__media::after,
.service-card:focus-within .service-card__media::after {
    height: 180%;
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(246, 241, 234, 0.36), transparent);
    transform: translate(360%, -50%) rotate(18deg);
    transition:
        opacity 320ms ease,
        transform 920ms var(--ease-premium);
}

.service-card__image {
    transition:
        transform 1300ms var(--ease-premium),
        filter 900ms ease;
}

.service-card:hover .service-card__image,
.service-card:focus-within .service-card__image {
    filter: saturate(1.04) contrast(1.08);
    transform: scale(1.075);
}

.image-stack img {
    transform: translate3d(0, var(--depth-y, 0px), 0) scale(1.055);
    transition: transform 280ms linear;
    will-change: transform;
}

.tech-stack-logo-tile {
    transition:
        transform 520ms var(--ease-spring),
        border-color 260ms ease,
        background 260ms ease,
        box-shadow 360ms ease;
}

.tech-stack-logo {
    animation: tileFloat 7s ease-in-out infinite;
    animation-delay: calc(var(--motion-index, 0) * -180ms);
}

.tech-stack-logo-tile:hover {
    transform: translate3d(0, -8px, 0) rotateZ(-2deg);
    box-shadow:
        inset 0 1px 0 rgba(246, 241, 234, 0.1),
        0 22px 54px rgba(0, 0, 0, 0.34);
}

.latest-project.is-visible .latest-project__browser {
    transform: translate3d(0, var(--depth-y, 0px), 0) rotateZ(var(--depth-rotate, 0deg));
}

.latest-project.is-visible .latest-project__phone {
    transform: translate3d(0, calc(var(--depth-y, 0px) * -0.7), 0) rotateZ(calc(var(--depth-rotate, 0deg) * -1.4));
}

.latest-project__screen {
    --screen-window: clamp(330px, 29vw, 480px);
    height: var(--screen-window);
}

.latest-project__screen img {
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.latest-project.is-visible .latest-project__screen img {
    animation: projectScreenScan 18s var(--ease-soft) 1400ms infinite;
}

.latest-project.is-visible .latest-project__phone-screen img {
    animation: phoneScreenFloat 9s ease-in-out 1200ms infinite;
}

.testimonial-card {
    filter: blur(10px);
    transform: translate3d(72px, 20px, 0) scale(0.94) rotateY(-5deg);
    transition:
        opacity 520ms ease,
        filter 760ms var(--ease-premium),
        transform 820ms var(--ease-spring);
}

.testimonial-card.is-active {
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
}

.testimonial-controls button.is-active::before {
    transform-origin: left center;
    animation: testimonialPulse 6s linear infinite;
}

.trangle-product-showcase.is-visible,
.web-template-showcase.is-visible {
    transform: translate3d(0, var(--depth-y, 0px), 0) rotateZ(var(--depth-rotate, 0deg));
}

.trangle-product-showcase__screen img,
.web-template-showcase__screen img {
    animation: interfaceDrift 11s ease-in-out infinite alternate;
    will-change: transform;
}

.trangle-product-showcase__phone {
    animation: phoneFloat 6.8s ease-in-out infinite;
}

.trangle-specialized-tags span {
    transition:
        transform 420ms var(--ease-spring),
        border-color 240ms ease,
        color 240ms ease,
        background 240ms ease;
}

.trangle-specialized-tags span:hover {
    color: var(--trangle-parchment);
    border-color: rgba(104, 224, 196, 0.44);
    background: rgba(104, 224, 196, 0.08);
    transform: translate3d(0, -3px, 0);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes splineLoader {
    to {
        transform: rotate(360deg);
    }
}

@keyframes robotPulseRing {
    0%,
    100% {
        opacity: 0.18;
        transform: scale(0.88);
    }
    50% {
        opacity: 0.72;
        transform: scale(1.02);
    }
}

@keyframes robotPulseCore {
    0%,
    100% {
        opacity: 0.48;
        transform: scale(0.82);
    }
    45% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@keyframes robotPulseSpark {
    0%,
    30%,
    100% {
        opacity: 0;
        transform: translate(var(--spark-x, 0), var(--spark-y, 0)) scale(0.6);
    }
    48% {
        opacity: 0.84;
        transform: translate(var(--spark-x, 0), var(--spark-y, 0)) scale(1);
    }
}

@keyframes buttonSpin {
    to {
        transform: rotate(1turn);
    }
}

@keyframes orbitBreathe {
    0%,
    100% {
        transform: rotate(0deg) scale(0.985);
        opacity: 0.72;
    }
    50% {
        transform: rotate(8deg) scale(1.025);
        opacity: 1;
    }
}

@keyframes pathCurrent {
    to {
        stroke-dashoffset: -116;
    }
}

@keyframes rotorDash {
    to {
        stroke-dashoffset: -72;
    }
}

@keyframes tileFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -5px, 0);
    }
}

@keyframes projectScreenScan {
    0%,
    14%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    48%,
    70% {
        transform: translate3d(0, calc(-100% + var(--screen-window)), 0);
    }
}

@keyframes phoneScreenFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1.04);
    }
    50% {
        transform: translate3d(0, -4%, 0) scale(1.04);
    }
}

@keyframes testimonialPulse {
    0% {
        transform: scaleX(0.34);
    }
    82%,
    100% {
        transform: scaleX(1);
    }
}

@keyframes interfaceDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1.01);
    }
    100% {
        transform: translate3d(-1.4%, -1.8%, 0) scale(1.04);
    }
}

@keyframes phoneFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes trangleCardFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes trangleDemoFrameCycle {
    0% {
        opacity: 0;
    }
    2.5%,
    15.1% {
        opacity: 1;
    }
    17.4%,
    100% {
        opacity: 0;
    }
}

@keyframes trangleDemoSheen {
    0%,
    7% {
        opacity: 0;
        transform: translate3d(-82%, 0, 0);
    }
    12% {
        opacity: 0.45;
    }
    23% {
        opacity: 0;
        transform: translate3d(78%, 0, 0);
    }
    100% {
        opacity: 0;
        transform: translate3d(78%, 0, 0);
    }
}

@keyframes trangleDemoCursor {
    0% {
        top: 18%;
        left: 88%;
        transform: rotate(-8deg) scale(0.96);
    }
    5% {
        top: 18%;
        left: 88%;
        transform: rotate(-8deg) scale(1);
    }
    7% {
        top: 18%;
        left: 88%;
        transform: rotate(-8deg) scale(0.88);
    }
    15% {
        top: 51%;
        left: 80%;
        transform: rotate(-8deg) scale(1);
    }
    17% {
        top: 51%;
        left: 80%;
        transform: rotate(-8deg) scale(0.88);
    }
    31% {
        top: 27%;
        left: 20%;
        transform: rotate(-4deg) scale(1);
    }
    33% {
        top: 27%;
        left: 20%;
        transform: rotate(-4deg) scale(0.88);
    }
    48% {
        top: 57%;
        left: 86%;
        transform: rotate(-4deg) scale(1);
    }
    50% {
        top: 57%;
        left: 86%;
        transform: rotate(-4deg) scale(0.88);
    }
    65% {
        top: 22%;
        left: 85%;
        transform: rotate(-4deg) scale(1);
    }
    67% {
        top: 22%;
        left: 85%;
        transform: rotate(-4deg) scale(0.88);
    }
    82% {
        top: 54%;
        left: 51%;
        transform: rotate(-6deg) scale(1);
    }
    84% {
        top: 54%;
        left: 51%;
        transform: rotate(-6deg) scale(0.88);
    }
    100% {
        top: 18%;
        left: 88%;
        transform: rotate(-8deg) scale(0.96);
    }
}

@keyframes trangleDemoClickPulse {
    0%,
    3.2%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.42);
    }
    1.4% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1);
    }
    2.6% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.48);
    }
}

@keyframes trangleDemoProgress {
    to {
        transform: scaleX(1);
    }
}

@keyframes trangleDemoDotOne {
    0%,
    16% {
        background: var(--trangle-accent);
    }
    22%,
    100% {
        background: rgba(246, 241, 234, 0.28);
    }
}

@keyframes trangleDemoDotTwo {
    0%,
    20%,
    54%,
    100% {
        background: rgba(246, 241, 234, 0.28);
    }
    26%,
    48% {
        background: var(--trangle-accent);
    }
}

@keyframes trangleDemoDotThree {
    0%,
    52%,
    100% {
        background: rgba(246, 241, 234, 0.28);
    }
    58%,
    94% {
        background: var(--trangle-accent);
    }
}

@keyframes workflowPlusPulse {
    0%,
    100% {
        box-shadow:
            0 6px 16px rgba(20, 28, 34, 0.08),
            0 0 0 0 rgba(104, 224, 196, 0.24);
        transform: translate3d(0, 0, 0);
    }
    50% {
        box-shadow:
            0 8px 20px rgba(20, 28, 34, 0.1),
            0 0 0 5px rgba(104, 224, 196, 0.12);
        transform: translate3d(0, -1px, 0);
    }
}

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

    .brand {
        min-width: auto;
    }

    .primary-nav {
        gap: 18px;
        font-size: 0.84rem;
    }

    .header-action {
        min-height: 46px;
        padding-inline: 18px;
    }

    .hero__title {
        font-size: clamp(3.15rem, 5.25vw, 3.9rem);
    }

    .about__grid,
    .proof-band__grid,
    .process__grid,
    .testimonial__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
        gap: 28px;
        height: 100%;
        min-height: 0;
    }

    .proof-band {
        padding-bottom: var(--section-space);
    }

    .proof-band__grid {
        width: min(100% - calc(var(--side) * 2), var(--container));
        min-height: auto;
        margin-inline: auto;
        padding-right: 0;
    }

    .image-stack {
        min-height: 500px;
    }

    .proof-content {
        padding-block: 0;
    }

    .hero-media {
        min-height: min(56vh, 520px);
    }

    .spline-mount {
        min-height: min(56vh, 520px);
    }

    .trangle-hero {
        min-height: auto;
    }

    .trangle-odoo-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
        gap: 32px;
    }

    .trangle-hero__offer {
        font-size: clamp(2.85rem, 5.1vw, 3.65rem);
    }

    .trangle-custom__grid {
        grid-template-columns: 1fr;
    }

    .trangle-console {
        max-width: 760px;
    }

    .trangle-pricing__grid,
    .trangle-app-grid,
    .trangle-specialized__grid,
    .trangle-proof-ribbon__grid,
    .trangle-taste-ribbon__grid,
    .trangle-productivity__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trangle-app-market__grid,
    .trangle-workday__grid,
    .trangle-platform__grid,
    .trangle-taste-section-head,
    .trangle-taste-apps__grid,
    .trangle-taste-flow__grid,
    .trangle-taste-implementation__grid,
    .trangle-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .trangle-taste-specialized {
        position: static;
    }

    .service-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card {
        min-height: 560px;
    }

    .section-copy h2,
    .section-heading h2 {
        font-size: clamp(2.8rem, 5vw, 3.35rem);
    }

    .process-step {
        grid-template-columns: 76px 0.42fr 1fr;
    }
}

@media (min-width: 901px) and (max-height: 820px) {
    .hero {
        height: calc(100dvh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
        padding: 10px 0 22px;
    }

    .hero__grid {
        height: calc(100% - 42px);
        min-height: 0;
        gap: 30px;
    }

    .hero__title {
        margin-bottom: 14px;
        font-size: clamp(2.85rem, 4.35vw, 3.55rem);
        line-height: 1.08;
    }

    .hero__copy p {
        font-size: var(--type-body);
    }

    .hero-proof {
        gap: 12px 18px;
        margin-top: 16px;
        padding-top: 14px;
    }

    .hero-stat + .hero-stat {
        padding-left: 16px;
    }

    .hero-stat strong {
        font-size: 2.55rem;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .hero-media {
        min-height: min(52vh, 470px);
    }

    .spline-mount {
        min-height: min(52vh, 470px);
    }

    .web-hero,
    .trangle-taste-hero {
        min-height: calc(100dvh - 126px);
        padding: 18px 0 20px;
    }

    .web-hero__grid,
    .trangle-taste-hero__grid {
        gap: clamp(22px, 2.8vw, 34px);
    }

    .web-hero__copy h1,
    .trangle-taste-hero h1 {
        font-size: clamp(2.82rem, 4.7vw, 4.12rem);
        line-height: 0.96;
    }

    .web-hero__copy p:not(.section-kicker),
    .trangle-taste-hero__lead {
        margin-top: 14px;
        font-size: var(--type-body);
        line-height: 1.5;
    }

    .web-hero__actions,
    .trangle-taste-actions {
        margin-top: 20px;
    }

    .web-hero-offer,
    .trangle-taste-price {
        gap: 8px;
    }

    .web-template-showcase__screen {
        height: clamp(210px, 18vw, 260px);
    }

    .trangle-taste-hero__aside,
    .trangle-product-showcase {
        min-height: 448px;
    }

    .trangle-product-showcase__screen {
        top: 58px;
        width: min(100%, 528px);
        padding: 8px;
    }

    .trangle-taste-price {
        top: 0;
        right: 0;
        width: min(244px, 48%);
        padding: 13px 14px;
    }

    .trangle-taste-price strong {
        font-size: clamp(1.18rem, 1.6vw, 1.42rem);
    }

    .trangle-taste-price p {
        font-size: 0.84rem;
        line-height: 1.42;
    }

    .trangle-product-showcase__phone {
        bottom: 44px;
        left: -10px;
        width: clamp(86px, 6.5vw, 104px);
    }

    .web-template-showcase figcaption,
    .trangle-product-showcase figcaption {
        display: none;
        font-size: 0.9rem;
        line-height: 1.35;
    }
}

@media (max-width: 1180px) {
    .site-header__inner {
        min-height: 72px;
    }

    .primary-nav,
    .header-action {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .web-service-grid,
    .web-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .web-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 64px;
    }

    [id] {
        scroll-margin-top: 78px;
    }

    #top {
        scroll-margin-top: 72px;
    }

    .top-bar {
        display: none;
    }

    .site-header__inner {
        min-height: var(--header-height);
    }

    .primary-nav,
    .header-action {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Mobile: drop the full-viewport height so the hero is only as tall as its
       content and the next section flows up right after the CTAs. */
    .hero {
        height: auto;
        min-height: 0;
        padding: 30px 0 48px;
    }

    .hero__title {
        font-size: clamp(2.9rem, 6vw, 3.1rem);
    }

    .hero__grid {
        grid-template-columns: 1fr;
        height: 100%;
        margin-top: 0;
        min-height: 0;
    }

    .hero-media,
    .image-stack {
        min-height: 460px;
    }

    .hero-media,
    .rotor {
        display: none;
    }

    .hero-media {
        min-height: 0;
    }

    .spline-mount {
        min-height: 0;
    }

    .spline-scene-stage {
        transform: translateY(35%) scale(1.8);
    }

    .image-stack img {
        min-height: 390px;
    }

    .marquee-track span {
        min-height: 58px;
        padding-inline: 18px;
        font-size: clamp(1.55rem, 5vw, 2.05rem);
    }

    /* Drop the shared rhythm to its mobile value — every section that
       uses var(--section-space) follows automatically. */
    :root {
        --section-space: 40px;
    }

    .about {
        padding: var(--section-space) 0;
    }

    .about-paths {
        inset: auto -30vw -16% -36vw;
        width: 150vw;
        height: 560px;
        opacity: 0.72;
    }

    .section-heading--split,
    .cta-strip__inner,
    .case-grid,
    .insight-grid,
    .web-hero__grid,
    .trangle-taste-hero__grid,
    .web-service-grid,
    .web-package-grid,
    .web-work-grid,
    .web-process__grid,
    .web-process-step,
    .web-faq-item,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        justify-content: stretch;
        gap: 34px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-card--feature {
        grid-template-columns: 1fr;
    }

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

    .services-showcase {
        padding-top: var(--section-space);
    }

    .services-orbit {
        left: -76vw;
        width: 156vw;
        opacity: 0.5;
    }

    .section-heading--services {
        text-align: left;
    }

    .section-heading--services h2,
    .section-heading--services .section-heading__lead,
    .section-heading__lead {
        margin-inline: 0;
    }

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    .service-card__top {
        margin-bottom: 34px;
    }

    .service-card h3,
    .service-card__description {
        min-height: 0;
    }

    .service-card__media {
        margin: 24px 0;
    }

    .service-card__action {
        width: 100%;
    }

    .tech-stack-showcase__panel {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: 0;
    }

    .tech-stack-showcase__copy {
        position: static;
    }

    .tech-stack-logo-grid {
        grid-template-columns: repeat(6, minmax(52px, 1fr));
    }

    .tech-stack-showcase::before {
        left: -72vw;
        width: 156vw;
        opacity: 0.62;
    }

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

    .web-system-card,
    .web-package-card,
    .web-work-card {
        min-height: auto;
    }

    .latest-project {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual";
        background: transparent;
    }

    .latest-project h2 {
        font-size: clamp(3.2rem, 11vw, 5rem);
    }

    .latest-project__subheading {
        font-size: clamp(1.18rem, 4.4vw, 1.55rem);
    }

    .latest-project__visual {
        min-height: auto;
        padding: 18px 0 34px;
    }

    .latest-project__device-pair {
        --device-rail: clamp(74px, 14vw, 118px);
        --phone-width: clamp(112px, 21vw, 156px);
        --screen-window: clamp(280px, 58vw, 430px);
        --stage-chrome: 88px;
        width: min(100%, 760px);
        margin: 0 auto;
        padding: 0 0 38px var(--device-rail);
    }

    .latest-project__browser {
        width: 100%;
    }

    .latest-project__phone {
        bottom: clamp(16px, 3.4vw, 30px);
        padding: 6px;
        border-radius: 21px;
    }

    .latest-project__screen {
        --screen-window: clamp(280px, 58vw, 430px);
        height: var(--screen-window);
    }

    .web-hero,
    .trangle-taste-hero {
        min-height: auto;
        display: block;
        padding: 44px 0 50px;
    }

    .web-hero__copy h1,
    .trangle-taste-hero h1 {
        font-size: clamp(2.95rem, 10.8vw, 4.05rem);
        line-height: 0.93;
    }

    .trangle-taste-hero::before {
        top: -22%;
        right: -44vw;
        width: 118vw;
    }

    .web-hero__aside {
        max-width: 540px;
    }

    .trangle-taste-hero__aside {
        max-width: 720px;
        min-height: 520px;
        margin-top: 26px;
    }

    .web-template-showcase {
        display: none;
    }

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

    .trangle-taste-ribbon__grid,
    .trangle-product-views__grid,
    .trangle-taste-apps__grid,
    .trangle-taste-flow__grid,
    .trangle-taste-implementation__grid,
    .trangle-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .trangle-screen-card,
    .trangle-screen-card--wide {
        display: block;
    }

    .trangle-screen-card img,
    .trangle-screen-card--wide img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .trangle-product-showcase {
        display: block;
        width: min(100%, 700px);
        min-height: 520px;
    }

    .trangle-product-showcase__screen {
        top: 78px;
        right: 0;
        width: min(100%, 640px);
        padding: 8px;
    }

    .trangle-taste-price {
        top: 0;
        right: 0;
        width: min(292px, 56%);
    }

    .trangle-product-showcase__phone {
        bottom: 70px;
        left: -12px;
        width: clamp(94px, 18vw, 132px);
    }

    .trangle-product-showcase figcaption {
        display: none;
    }

    .trangle-taste-section-head .section-kicker {
        margin-bottom: 0;
    }

    .trangle-demo-reel {
        width: min(calc(100% - 32px), 100%);
    }

    .trangle-demo-reel__viewport {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .trangle-demo-frame > img,
    .trangle-demo-frame--actions > img,
    .trangle-demo-frame--items > img,
    .trangle-demo-frame--item-detail > img,
    .trangle-demo-frame--payments > img {
        object-fit: contain;
        object-position: top center;
        transform: none;
    }

    .trangle-taste-flow__steps article {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trangle-hero {
        padding: 48px 0 56px;
    }

    .trangle-odoo-hero {
        min-height: auto;
        padding: 50px 0 64px;
    }

    .trangle-odoo-hero__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .trangle-hero__offer {
        font-size: clamp(3.3rem, 9vw, 4.6rem);
    }

    .trangle-hero__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .trangle-console {
        display: none;
    }

    .trangle-hero h1 {
        font-size: clamp(3.35rem, 8vw, 4.6rem);
    }

    .trangle-hero__statement {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .trangle-testimonial-list {
        grid-template-columns: 1fr;
    }

    .trangle-testimonial-card {
        min-height: 0;
    }

    .trangle-testimonial-card:nth-child(2) {
        transform: none;
    }

    .contact-belt__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-block: 1px;
    }
}

@media (max-width: 640px) {
    :root {
        --side: 20px;
    }

    .section-kicker,
    .hero__copy .section-kicker,
    .web-hero__copy .section-kicker {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .brand img {
        width: 134px;
        height: auto;
    }

    .hero {
        padding: 26px 0 70px;
    }

    .hero__copy .section-kicker {
        margin-bottom: 16px;
    }

    .hero__title {
        font-size: clamp(3rem, 7.8vw, 3.4rem);
        line-height: 1.03;
        margin-bottom: 20px;
    }

    .hero__copy .hero__description {
        margin-bottom: 0;
    }

    .hero-actions {
        gap: 12px 18px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        padding-inline: 14px;
    }

    .title-line,
    .title-line > span {
        display: block;
    }

    .hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 16px;
        margin-top: 22px;
        padding-top: 16px;
    }

    .hero-stat {
        padding: 0;
        border-top: 0;
        border-left: 0;
    }

    .hero-stat + .hero-stat {
        padding-left: 0;
        border-left: 0;
    }

    .hero-stat strong {
        font-size: 2.75rem;
    }

    .tech-stack-showcase {
        padding: var(--section-space) 0;
    }

    .tech-stack-showcase__panel {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tech-stack-showcase__copy h2 {
        max-width: 10em;
        font-size: clamp(2.55rem, 10.6vw, 3.35rem);
        line-height: 1;
    }

    .tech-stack-showcase__copy p:not(.section-kicker) {
        max-width: 34rem;
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.58;
    }

    .tech-stack-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .tech-stack-actions .btn {
        width: 100%;
    }

    .tech-stack-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .tech-stack-logo {
        width: clamp(38px, 13vw, 48px);
    }

    .about-paths {
        inset: auto -58vw -12% -80vw;
        width: 210vw;
        opacity: 0.46;
    }

    .about {
        padding: var(--section-space) 0;
    }

    .about .section-copy {
        max-width: 34rem;
    }

    .about .section-copy .section-kicker {
        margin-bottom: 20px;
    }

    .about .section-copy h2 {
        font-size: clamp(2.05rem, 6.4vw, 2.28rem);
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .about .section-copy > p:not(.section-kicker) {
        font-size: 1.03rem;
        line-height: 1.64;
    }

    .hero-media,
    .image-stack,
    .testimonial-visual {
        min-height: 380px;
    }

    .spline-mount {
        min-height: 430px;
    }

    .system-panel {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .signal-list {
        left: 14px;
        right: 14px;
        top: 14px;
        justify-content: flex-start;
    }

    .section-copy h2,
    .section-heading h2,
    .trangle-pricing h2,
    .trangle-apps h2,
    .trangle-specialized h2,
    .trangle-custom h2,
    .cta-strip h2 {
        font-size: 2.42rem;
        line-height: 1;
    }

    .proof-content h2 {
        font-size: clamp(2.75rem, 10.5vw, 3.45rem);
        line-height: 0.96;
    }

    .latest-project {
        padding: 0;
        border-radius: 0;
    }

    .latest-project h2 {
        font-size: clamp(2.9rem, 13vw, 4.15rem);
    }

    .latest-project__subheading {
        font-size: 1.18rem;
    }

    .latest-project__description {
        font-size: 1rem;
    }

    .latest-project__outcomes {
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .latest-project__outcomes section {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        min-height: auto;
        padding: 13px 0;
        border-left: 0;
        border-top: 1px solid rgba(246, 241, 234, 0.1);
    }

    .latest-project__outcomes section:first-child {
        border-top: 0;
    }

    .latest-project__outcomes span {
        display: grid;
        width: 32px;
        height: 32px;
        place-items: center;
        border: 1px solid rgba(104, 224, 196, 0.36);
        background: rgba(104, 224, 196, 0.045);
    }

    .latest-project__outcomes strong {
        margin-top: 0;
    }

    .latest-web-work__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .latest-web-work__actions .btn {
        width: 100%;
    }

    .latest-project__visual {
        padding-bottom: 16px;
    }

    .latest-project__device-pair {
        --device-rail: clamp(58px, 18vw, 78px);
        --phone-width: clamp(92px, 29vw, 118px);
        --screen-window: clamp(210px, 58vw, 260px);
        --stage-chrome: 74px;
        width: 100%;
        padding: 0 0 26px var(--device-rail);
    }

    .latest-project__browser {
        padding: 7px;
        border-width: 1px;
        border-radius: 8px;
    }

    .latest-project__browser-bar {
        height: 28px;
    }

    .latest-project__screen {
        --screen-window: clamp(210px, 58vw, 260px);
        height: var(--screen-window);
    }

    .latest-project__phone {
        bottom: 14px;
        padding: 5px;
        border-radius: 18px;
    }

    .latest-project__phone-speaker {
        top: 9px;
        width: 24px;
        height: 3px;
    }

    .latest-project__phone-screen {
        border-radius: 13px;
    }

    .web-hero,
    .trangle-taste-hero {
        padding: 32px 0 36px;
    }

    .trangle-taste-hero {
        overflow: hidden;
    }

    .web-hero__copy .section-kicker {
        margin-bottom: 16px;
    }

    .web-hero__copy h1 {
        font-size: clamp(3rem, 11vw, 4.3rem);
        line-height: 0.93;
    }

    .web-hero__copy p:not(.section-kicker) {
        margin-top: 20px;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .web-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .web-hero__actions .btn {
        width: 100%;
        min-width: 0;
    }

    .web-hero__aside {
        gap: 10px;
    }

    .web-hero-offer {
        gap: 6px;
        padding-top: 4px;
    }

    .web-hero-offer strong {
        font-size: 1.22rem;
    }

    .web-hero-offer p,
    .web-hero-offer ul,
    .web-template-showcase {
        display: none;
    }

    .trangle-taste-hero__copy {
        max-width: none;
    }

    .trangle-taste-page .section-kicker {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .trangle-taste-hero h1 {
        max-width: 8.4em;
        font-size: clamp(2.62rem, 11.8vw, 3.18rem);
        line-height: 0.98;
    }

    .trangle-hero h1 {
        font-size: clamp(3rem, 10.4vw, 3.7rem);
        line-height: 0.98;
    }

    .trangle-taste-section-head h2,
    .trangle-taste-flow h2,
    .trangle-taste-implementation h2,
    .trangle-testimonials__intro h2 {
        font-size: clamp(2.45rem, 10.5vw, 3.1rem);
        line-height: 1.02;
    }

    .trangle-taste-hero__lead {
        margin-top: 18px;
        font-size: 0.95rem;
        line-height: 1.56;
    }

    /* Keep all four apps on a single row at any phone width: the cards flex
       to share the row and shrink together rather than wrapping. The label is
       a touch smaller with tighter tracking so the longer names (Accounting /
       Documents) keep margin from the card borders instead of butting against
       them. The "+ more" link sits on its own row underneath. */
    .trangle-hero-apps {
        gap: 8px;
        margin-top: 22px;
    }

    .trangle-hero-apps li {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 5px;
    }

    .trangle-hero-app__name {
        font-size: 0.7rem;
        letter-spacing: -0.02em;
    }

    .trangle-hero-apps .trangle-hero-apps__more {
        flex: 0 0 100%;
        padding-top: 2px;
    }

    .trangle-taste-actions .btn {
        width: 100%;
    }

    .trangle-taste-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .trangle-taste-hero__grid {
        gap: 18px;
    }

    .trangle-taste-hero__aside {
        min-height: 0;
        margin-top: 12px;
    }

    .trangle-taste-price {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
        gap: 6px;
        padding: 14px;
    }

.trangle-product-showcase.motion-surface > .trangle-taste-price,
.trangle-product-showcase.motion-surface > .trangle-product-showcase__screen {
    position: relative;
}

    .trangle-taste-price strong {
        font-size: 1.22rem;
    }

    .trangle-taste-price p {
        display: block;
        font-size: 0.86rem;
    }

    .trangle-product-showcase {
        display: grid;
        width: 100%;
        min-height: 0;
        gap: 12px;
        margin-top: 4px;
        overflow: visible;
    }

    .trangle-product-showcase__screen {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        aspect-ratio: 4 / 3;
        padding: 6px;
        border-radius: 8px;
    }

    .trangle-product-showcase__screen img {
        border-radius: 5px;
    }

    .trangle-product-showcase__phone {
        display: none;
    }

    .trangle-hero-proofline {
        gap: 8px 12px;
        font-size: 0.86rem;
    }

    .trangle-product-showcase figcaption {
        display: none;
    }

    .trangle-demo-reel {
        width: min(calc(100% - 24px), 100%);
    }

    .trangle-demo-reel__bar {
        min-height: 42px;
        grid-template-columns: 1fr 7px 7px 7px;
        gap: 7px;
        padding-inline: 12px;
    }

    .trangle-demo-reel__bar span {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .trangle-demo-reel__bar strong {
        display: none;
    }

    .trangle-demo-cursor {
        width: 28px;
        height: 28px;
    }

    .trangle-demo-click {
        width: 44px;
        height: 44px;
    }

    .trangle-screen-card img,
    .trangle-screen-card--wide img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .trangle-taste-ribbon__grid {
        grid-template-columns: 1fr;
    }

    .trangle-taste-ribbon article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(246, 241, 234, 0.1);
    }

    .trangle-taste-app-list article {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .trangle-specialized-tags {
        gap: 7px;
    }

    .trangle-specialized-tags span {
        min-height: 36px;
        font-size: 0.82rem;
    }

    .trangle-odoo-hero h1 {
        font-size: 0.84rem;
        line-height: 1.22;
    }

    .trangle-odoo-hero {
        padding: 34px 0 38px;
    }

    .trangle-hero__offer {
        font-size: clamp(2.35rem, 10vw, 2.85rem);
        line-height: 0.98;
    }

    .trangle-odoo-hero .trangle-hero__statement {
        margin-top: 12px;
        font-size: 1.12rem;
    }

    .trangle-odoo-hero .trangle-hero__lead {
        margin-top: 12px;
        font-size: 0.96rem;
        line-height: 1.46;
    }

    .trangle-hero-price {
        margin-top: 14px;
        padding: 10px 12px;
    }

    .trangle-hero-price strong {
        font-size: 1.08rem;
    }

    .trangle-odoo-hero .trangle-actions {
        margin-top: 14px;
    }

    .trangle-actions .btn--ghost {
        display: none;
    }

    .trangle-actions .btn,
    .proof-actions .btn {
        width: 100%;
    }

    .trangle-proof-ribbon__grid,
    .trangle-app-family__list,
    .trangle-flow,
    .trangle-productivity__grid {
        grid-template-columns: 1fr;
    }

    .trangle-app-family,
    .trangle-flow article,
    .trangle-productivity__grid article,
    .trangle-platform__cards article {
        min-height: auto;
        padding: 24px;
    }

    .trangle-console {
        padding: 20px;
    }

    .trangle-console__screen,
    .trangle-workflow-map,
    .trangle-pricing__grid,
    .trangle-app-grid,
    .trangle-specialized__grid {
        grid-template-columns: 1fr;
    }

    .trangle-console__footer {
        flex-wrap: wrap;
    }

    .trangle-price-card,
    .trangle-app-card,
    .trangle-specialized-card {
        min-height: auto;
        padding: 24px;
    }

    .trangle-app-card > span {
        margin-bottom: 44px;
    }

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    .service-card__top {
        margin-bottom: 34px;
    }

    .case-card,
    .insight-card,
    .quote-card,
    .contact-form {
        padding: 24px;
    }

    .quote-card blockquote {
        font-size: 1.75rem;
    }

    .contact-belt__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        border-inline: 0;
    }

    .contact-belt__inner a,
    .contact-belt__inner span {
        min-height: 58px;
        font-size: 1.08rem;
        border-right: 0;
        border-bottom: 1px solid rgba(246, 241, 234, 0.08);
    }

    .contact-belt__inner a:last-child,
    .contact-belt__inner span:last-child {
        border-bottom: 0;
    }

    .footer__bottom {
        display: grid;
    }

    .site-footer a,
    .site-footer span {
        min-height: 32px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 720px) and (max-width: 900px) {
    .tech-stack-showcase {
        padding: var(--section-space) 0;
    }

    .tech-stack-showcase__panel {
        grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
        gap: clamp(24px, 4vw, 36px);
        align-items: center;
    }

    .tech-stack-showcase__copy h2 {
        max-width: 7.8em;
        font-size: clamp(2.6rem, 5.5vw, 3.35rem);
        line-height: 0.98;
    }

    .tech-stack-showcase__copy p:not(.section-kicker) {
        max-width: 30rem;
        margin-top: 20px;
        font-size: clamp(0.95rem, 1.7vw, 1.02rem);
        line-height: 1.58;
    }

    .tech-stack-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 260px;
        margin-top: 24px;
    }

    .tech-stack-actions .btn {
        width: 100%;
    }

    .tech-stack-logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(10px, 1.6vw, 14px);
        justify-self: end;
        width: min(100%, 430px);
    }

    .tech-stack-logo {
        width: clamp(34px, 4.6vw, 44px);
    }
}

@media (min-width: 641px) and (max-width: 719px) {
    .tech-stack-showcase {
        padding: var(--section-space) 0;
    }

    .tech-stack-showcase__panel {
        gap: 32px;
    }

    .tech-stack-showcase__copy h2 {
        max-width: 12em;
        font-size: clamp(2.65rem, 8.4vw, 3.2rem);
    }

    .tech-stack-logo-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        justify-self: start;
        width: min(100%, 520px);
        gap: 10px;
    }

    .tech-stack-logo {
        width: clamp(32px, 6vw, 42px);
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .proof-band {
        padding-bottom: 0;
    }

    .proof-band__grid {
        width: 100%;
        max-width: none;
        min-height: clamp(640px, calc(100dvh - 72px), 780px);
        margin-inline: 0;
        padding-right: var(--side);
        grid-template-columns: minmax(320px, 38vw) minmax(0, 1fr);
        gap: clamp(28px, 4vw, 48px);
        align-items: stretch;
    }

    .image-stack {
        height: 100%;
        min-height: 100%;
    }

    .proof-content {
        max-width: min(100%, 680px);
        align-self: center;
        padding-block: var(--section-space);
    }

    .proof-content h2 {
        font-size: clamp(3.05rem, 4.6vw, 4.2rem);
        line-height: 0.94;
    }

    .about {
        padding: var(--section-space) 0;
    }

    .about__grid {
        grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.9fr);
        gap: clamp(38px, 5vw, 56px);
        align-items: center;
    }

    .about .rotor {
        width: clamp(220px, 25vw, 280px);
        justify-self: start;
    }

    .about .section-copy {
        max-width: min(100%, 680px);
    }

    .about .section-copy h2 {
        max-width: 680px;
        font-size: clamp(2.45rem, 4vw, 3.1rem);
        line-height: 1.08;
    }

    .about .section-copy > p:not(.section-kicker) {
        max-width: 620px;
        font-size: clamp(1rem, 1.5vw, 1.08rem);
        line-height: 1.66;
    }

    .about-paths {
        inset: auto -26vw -18% -20vw;
        width: 148vw;
        height: min(56vw, 620px);
        opacity: 0.62;
    }

    .trangle-taste-hero__grid {
        grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.68fr);
        gap: 34px;
    }

    .trangle-taste-hero h1 {
        font-size: clamp(3.15rem, 4.9vw, 4.8rem);
    }

    .trangle-taste-hero__aside,
    .trangle-product-showcase {
        min-height: 560px;
    }

    .trangle-product-showcase__screen {
        top: 88px;
        width: min(100%, 570px);
    }

    .trangle-taste-price {
        width: min(250px, 54%);
    }

}

@media (max-width: 1180px) {
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

}

@media (max-width: 900px) {
    .site-header {
        background: #020203;
        border-bottom-color: transparent;
    }

    .site-header__inner {
        min-height: 64px;
    }

    .brand img {
        width: 78px;
    }


    .menu-drawer__panel {
        inset: 0;
        width: 100%;
        border: 0;
        border-radius: 0;
    }

    .menu-drawer__top {
        min-height: 66px;
        padding: 15px 16px 0;
        justify-content: flex-end;
    }

    .menu-drawer__brand {
        display: inline-flex;
        align-items: center;
        margin-right: auto;
    }

    .menu-drawer__brand img {
        width: 78px;
        height: auto;
    }


    .menu-drawer__close {
        position: relative;
        top: auto;
        right: auto;
        flex: 0 0 auto;
    }

    .menu-drawer__panel-view {
        padding: 16px 32px 28px 16px;
    }

    .menu-drawer__primary {
        padding-top: 2px;
        padding-bottom: 24px;
    }

    .menu-drawer__primary a,
    .menu-drawer__primary button {
        min-height: 50px;
        font-size: clamp(2.55rem, 10.2vw, 3.1rem);
        line-height: 1.04;
    }

    .menu-drawer__utility {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .menu-drawer__social {
        margin-top: 28px;
        padding-top: 0;
    }

    .menu-drawer__back {
        margin: 10px 0 32px;
    }

    .menu-drawer__panel-view h2 {
        padding-bottom: 24px;
        font-size: clamp(2.6rem, 11vw, 3.2rem);
    }

    .menu-drawer__subnav {
        padding-top: 46px;
    }

    .menu-drawer__subnav a {
        font-size: clamp(2.38rem, 10vw, 3rem);
    }
}

@media (max-width: 480px) {

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .menu-toggle span {
        width: 28px;
        height: 2.5px;
    }

    .menu-drawer__panel-view {
        padding-right: 31px;
    }

    .menu-drawer__primary a,
    .menu-drawer__primary button {
        font-size: clamp(2.32rem, 10vw, 2.85rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    [data-reveal],
    .reveal-media,
    .title-line span,
    .latest-project__kicker,
    .latest-project h2,
    .latest-project__subheading,
    .latest-project__description,
    .latest-web-work__actions,
    .latest-project__outcomes section,
    .latest-project__browser,
    .latest-project__phone {
        opacity: 1;
        transform: none;
        clip-path: none;
        transition: none;
    }

    .spline-scene-stage {
        animation: none;
        transform: translate(1%, 20%) scale(1.25);
    }

    .service-card__action,
    .text-link {
        --magnetic-x: 0px;
        --magnetic-y: 0px;
        --button-lift: 0px;
        --button-scale: 1;
        transform: none;
    }

    .trangle-demo-frame {
        opacity: 0;
        transform: none;
    }

    .trangle-demo-frame--overview {
        opacity: 1;
    }

    .trangle-demo-reel__bar i {
        animation: none;
    }

    .trangle-demo-cursor,
    .trangle-demo-click,
    .trangle-demo-reel__progress {
        display: none;
    }
}

/* ============================================================
   Web development page — polish pass
   (placed last so it wins source-order ties vs .motion-surface)
   ============================================================ */

/* Packages: "most chosen" badge + emphasized featured CTA */
.web-package-card .web-package-card__badge {
    position: absolute;
    top: -12px;
    left: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    color: var(--neural-ink);
    background: var(--sentient-mint);
    border-radius: 999px;
    font-family: var(--ui);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(104, 224, 196, 0.32);
}

.web-package-card__cta {
    width: 100%;
    margin-top: 4px;
}

/* FAQ: native, accessible accordion */
.web-faq-item {
    display: block;
    padding: 0;
    overflow: hidden;
    transition: border-color 200ms ease, background 200ms ease;
}

.web-faq-item[open] {
    border-color: var(--line-strong);
    background: rgba(16, 26, 31, 0.92);
}

.web-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px clamp(20px, 2.2vw, 28px);
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}

.web-faq-item__q::-webkit-details-marker {
    display: none;
}

.web-faq-item__q h3 {
    margin: 0;
    font-size: clamp(1.05rem, 1.35vw, 1.28rem);
    line-height: 1.25;
    transition: color 200ms ease;
}

.web-faq-item__q:hover h3 {
    color: var(--sentient-mint);
}

.web-faq-item__q:focus-visible {
    outline: 2px solid var(--sentient-mint);
    outline-offset: -3px;
    border-radius: 8px;
}

.web-faq-item__icon {
    position: relative;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    transition: background 220ms ease, border-color 220ms ease;
}

.web-faq-item__icon::before,
.web-faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.6px;
    border-radius: 2px;
    background: var(--sentient-mint);
    transition: transform 280ms var(--ease-soft);
}

.web-faq-item__icon::before {
    transform: translate(-50%, -50%);
}

.web-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.web-faq-item[open] .web-faq-item__icon {
    background: rgba(104, 224, 196, 0.14);
    border-color: var(--sentient-mint);
}

.web-faq-item[open] .web-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.web-faq-item__a {
    padding: 0 clamp(20px, 2.2vw, 28px) 24px;
}

.web-faq-item__a p {
    margin: 0;
    max-width: 72ch;
    color: var(--soft-sage);
    line-height: 1.6;
}

.web-faq-item[open] .web-faq-item__a {
    animation: faqReveal 320ms var(--ease-soft);
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Final CTA: supporting line beside the heading */
.web-final-cta__copy {
    display: grid;
    gap: 14px;
}

.web-final-cta__copy p {
    margin: 0;
    max-width: 560px;
    color: rgba(2, 7, 11, 0.74);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.55;
}

/* Tighter single-column rhythm on small screens */
@media (max-width: 900px) {
    .web-service-card,
    .web-package-card,
    .web-work-card {
        min-height: 0;
    }

    .web-package-card__badge {
        left: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .web-faq-item[open] .web-faq-item__a {
        animation: none;
    }

    .web-faq-item__icon,
    .web-faq-item__icon::before,
    .web-faq-item__icon::after,
    .web-service-card__icon-wrap {
        transition: none;
    }
}
