:root {
    --bg-deep: #0B1220;
    --bg-surface: #13233D;
    --accent-primary: #2563EB;
    --accent-highlight: #00C2FF;
    --text-soft: #D9DDE3;
    --white: #FFFFFF;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-soft);
    background:
        radial-gradient(circle at 12% 8%, var(--accent-primary) 0%, transparent 24%),
        radial-gradient(circle at 88% 10%, var(--accent-highlight) 0%, transparent 22%),
        radial-gradient(circle at top left, var(--bg-surface) 0%, var(--bg-deep) 42%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-shell::before {
    background:
        linear-gradient(var(--bg-surface) 1px, transparent 1px),
        linear-gradient(90deg, var(--bg-surface) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.08;
    mask-image: linear-gradient(180deg, var(--white), transparent 88%);
}

.site-shell::after {
    background:
        radial-gradient(circle at 0% 20%, var(--accent-primary) 0%, transparent 26%),
        radial-gradient(circle at 100% 0%, var(--accent-highlight) 0%, transparent 24%),
        radial-gradient(circle at 100% 100%, var(--accent-primary) 0%, transparent 28%);
    opacity: 0.18;
    filter: blur(22px);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-surface));
    border-bottom: 1px solid var(--bg-surface);
}

.site-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    box-shadow: 0 0 6px var(--accent-primary), 0 0 10px var(--accent-highlight);
    pointer-events: none;
}

.header-inner,
.footer-inner,
.hero-grid,
.product-highlight,
.cta-panel,
.trust-items,
.steps-grid,
.card-grid,
.industry-grid {
    display: grid;
}

.header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    width: auto;
    height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0,194,255,0.2));
}

.site-nav {
    display: inline-flex;
    justify-content: center;
    gap: 28px;
    font-size: 15px;
}

.site-nav a {
    position: relative;
    padding: 6px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.site-nav a,
.button,
.feature-card,
.step-card,
.industry-card,
.interface-card {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-position 500ms ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--accent-primary);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 0 0 0 transparent;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 18px var(--accent-primary), 0 0 28px var(--accent-highlight);
}

.button:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 18px var(--accent-primary), 0 0 28px var(--accent-highlight);
}

.button-primary {
    color: var(--white);
    padding: 0 28px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 0 22px var(--accent-primary), 0 0 34px var(--accent-highlight);
}

.button-secondary {
    color: var(--white);
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    border-color: var(--accent-highlight);
}

.hero {
    position: relative;
    padding: 86px 0 48px;
    background:
        linear-gradient(
            90deg,
            rgba(11,18,32,0.96) 0%,
            rgba(11,18,32,0.92) 42%,
            rgba(11,18,32,0.82) 100%
        ),
        url('../assets/images/hero.jpeg');
    background-size: cover;
    background-position: right center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 48px;
    left: 8%;
    width: min(520px, 45vw);
    height: min(520px, 45vw);
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-primary) 0%, var(--accent-highlight) 38%, transparent 72%);
    opacity: 0.16;
    filter: blur(18px);
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    right: 4%;
    bottom: -40px;
    width: min(440px, 38vw);
    height: min(440px, 38vw);
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-highlight) 0%, var(--accent-primary) 42%, transparent 74%);
    opacity: 0.12;
    backdrop-filter: blur(2px);
    filter: blur(24px);
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, var(--accent-primary) 0%, var(--bg-deep) 30%),
        radial-gradient(circle at 80% 30%, var(--accent-highlight) 0%, var(--bg-surface) 28%),
        linear-gradient(120deg, var(--bg-deep) 0%, var(--bg-surface) 48%, var(--bg-deep) 100%);
    opacity: 0.12;
    animation: drift 14s ease-in-out infinite alternate;
}

.hero-grid {
    position: relative;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--accent-highlight);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--white);
    font-weight: 600;
    line-height: 1.08;
}

h1 {
    max-width: 12ch;
    font-size: clamp(42px, 7vw, 56px);
    letter-spacing: -0.03em;
    text-shadow: 0 0 22px var(--accent-primary);
    line-height: 0.98;
}

.hero-accent {
    display: block;
    margin-top: 10px;
    color: var(--white);
    text-shadow: 0 0 28px var(--accent-highlight);
}

h2 {
    max-width: 16ch;
    font-size: clamp(28px, 5vw, 32px);
}

h3 {
    font-size: 22px;
}

p {
    margin: 0;
    line-height: 1.7;
}

.hero-text {
    max-width: 38rem;
    margin-top: 24px;
    font-size: 18px;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-actions .button-primary {
    background: linear-gradient(90deg, #2563EB, #00C2FF);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.25);
}

.hero-actions .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.35);
}

.demo-note {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 14px;
}

.demo-note a {
    color: var(--accent-highlight);
    font-weight: 600;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual.is-visible {
    animation: floatInterface 6s ease-in-out infinite;
}

.interface-card {
    position: relative;
    width: min(100%, 470px);
    padding: 24px;
    border: 1px solid var(--accent-highlight);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    box-shadow: inset 0 1px 0 var(--accent-highlight), inset 0 -16px 32px var(--bg-deep);
    overflow: hidden;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.interface-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep), var(--bg-surface));
    box-shadow: inset 0 1px 0 var(--accent-highlight), inset 0 -16px 32px var(--bg-deep), 0 0 18px var(--accent-primary);
}

.interface-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    opacity: 0.12;
    pointer-events: none;
}

.interface-topline,
.interface-grid {
    position: relative;
    z-index: 1;
}

.interface-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.interface-chip,
.interface-status,
.step-number,
.icon-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.interface-chip,
.interface-status {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--accent-primary);
    color: var(--white);
    background: var(--bg-deep);
}

.interface-status {
    position: relative;
    gap: 8px;
    padding-left: 12px;
}

.interface-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-highlight);
    box-shadow: 0 0 0 0 var(--accent-highlight);
    animation: livePulse 1.6s ease-out infinite;
}

.interface-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.interface-panel {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 128px;
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-surface);
    background: linear-gradient(145deg, var(--bg-deep), var(--bg-surface));
    box-shadow: inset 0 1px 0 var(--accent-primary), inset 0 -10px 24px var(--bg-deep);
    color: var(--white);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.interface-panel:hover {
    transform: translateY(-4px);
    border-color: var(--accent-highlight);
    background: linear-gradient(145deg, var(--bg-surface), var(--bg-deep), var(--bg-surface));
    box-shadow: inset 0 1px 0 var(--accent-highlight), inset 0 -10px 24px var(--bg-deep), 0 0 14px var(--accent-primary);
}

.interface-panel strong,
.interface-panel small,
.interface-icon {
    position: relative;
    z-index: 1;
}

.interface-panel strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.interface-panel small {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
}

.interface-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--accent-primary);
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(145deg, var(--accent-primary), var(--bg-surface));
    box-shadow: inset 0 1px 0 var(--accent-highlight);
}

.interface-icon svg {
    width: 18px;
    height: 18px;
}

.panel-large,
.panel-wide {
    grid-column: span 2;
}

.panel-large {
    min-height: 150px;
}

.trust-bar {
    padding: 20px 0 8px;
}

.trust-items {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.trust-items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1px solid var(--bg-surface);
    border-radius: 999px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    color: var(--text-soft);
    opacity: 0.72;
}

.trust-items svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--accent-highlight);
}

.trust-items em {
    font-style: normal;
    color: var(--white);
}

.section {
    padding: 92px 0;
}

.section-alt {
    padding-top: 72px;
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}

.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.step-card,
.industry-card,
.product-highlight,
.cta-panel {
    position: relative;
    border: 1px solid var(--bg-surface);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    box-shadow: 0 14px 28px var(--bg-deep);
}

.feature-card,
.step-card {
    padding: 24px;
}

.feature-card h3 {
    font-size: 24px;
    line-height: 1.14;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 16px;
}

.feature-card::before,
.step-card::before,
.industry-card::before,
.product-highlight::before,
.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

.feature-card:hover,
.step-card:hover,
.industry-card:hover,
.interface-card:hover,
.product-highlight:hover,
.cta-panel:hover {
    transform: translateY(-8px);
    border-color: var(--accent-highlight);
    box-shadow: 0 22px 42px var(--bg-deep), 0 0 20px var(--accent-primary);
}

.feature-card:hover {
    box-shadow: 0 26px 46px var(--bg-deep), 0 0 24px var(--accent-highlight);
}

.feature-card:hover .icon-placeholder {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 18px var(--accent-primary), inset 0 1px 0 var(--accent-highlight);
}

.feature-card:hover::before,
.step-card:hover::before,
.industry-card:hover::before,
.product-highlight:hover::before,
.cta-panel:hover::before {
    opacity: 0.08;
}

.icon-placeholder {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--accent-primary);
    color: var(--white);
    background: linear-gradient(145deg, var(--bg-deep), var(--bg-surface));
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.icon-placeholder svg {
    width: 24px;
    height: 24px;
}

.feature-card p,
.step-card p,
.product-copy p:last-of-type {
    margin-top: 12px;
}

.steps-grid {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.onboarding-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.onboarding-grid::before,
.onboarding-grid::after {
    display: none;
}

.steps-grid::before,
.steps-grid::after {
    content: "";
    position: absolute;
    top: 44px;
    left: 16.66%;
    width: 66.68%;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
}

.steps-grid::before {
    background: linear-gradient(90deg, var(--bg-surface), var(--accent-primary), var(--bg-surface));
    opacity: 0.65;
}

.steps-grid::after {
    background: linear-gradient(90deg, transparent, var(--accent-highlight), transparent);
    opacity: 0.95;
    animation: stepProgress 3.8s ease-in-out infinite;
}

.step-card {
    z-index: 1;
}

.step-number {
    min-width: 54px;
    min-height: 32px;
    margin-bottom: 18px;
    padding: 0 14px;
    border: 1px solid var(--accent-highlight);
    color: var(--white);
    background: var(--bg-deep);
}

.industry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.industry-card {
    min-height: 140px;
    padding: 24px;
    display: grid;
    align-items: end;
    gap: 24px;
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.industry-card span {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
}

.industry-icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--accent-primary);
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-surface));
    box-shadow: inset 0 1px 0 var(--accent-highlight), inset 0 -10px 20px var(--bg-deep);
}

.industry-icon svg {
    width: 24px;
    height: 24px;
}

.industry-card:hover {
    border-color: var(--accent-highlight);
    box-shadow: 0 0 0 1px var(--accent-primary), 0 18px 32px var(--bg-deep);
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-deep), var(--bg-surface));
}

.industry-card:hover .industry-icon {
    border-color: var(--accent-highlight);
    box-shadow: inset 0 1px 0 var(--accent-highlight), 0 0 18px var(--accent-primary), inset 0 -10px 20px var(--bg-deep);
}

.avyrasection {
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(11,18,32,0.96) 0%,
            rgba(11,18,32,0.92) 42%,
            rgba(11,18,32,0.82) 100%
        ),
        url('../assets/images/avyrasection_img.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

#avyra .product-highlight {
    background: linear-gradient(180deg, rgba(11,18,32,0.84), rgba(19,35,61,0.86));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: var(--accent-primary);
}

#avyra .product-highlight::before {
    opacity: 0.05;
}

.product-highlight {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 40px;
    padding: 40px;
    overflow: hidden;
}

.product-copy,
.cta-panel {
    position: relative;
    z-index: 1;
}

.product-title {
    max-width: 13ch;
    font-size: clamp(34px, 5vw, 40px);
}

.product-copy > p {
    max-width: 36rem;
}

.product-points {
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.product-points li {
    position: relative;
    padding-left: 28px;
    color: var(--white);
}

.product-points li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    box-shadow: 0 0 10px var(--accent-highlight);
}

.product-visual {
    display: flex;
    justify-content: flex-end;
}

.product-ui {
    width: min(100%, 420px);
    padding: 24px;
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    box-shadow: inset 0 1px 0 var(--accent-highlight), inset 0 -20px 34px var(--bg-deep);
}

.product-ui-topline,
.product-ui-row {
    display: grid;
}

.product-ui-topline {
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.product-ui-chip,
.product-ui-status {
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--accent-primary);
    color: var(--white);
    background: var(--bg-deep);
    font-size: 13px;
    font-weight: 600;
}

.product-ui-status {
    border-color: var(--accent-highlight);
}

.product-ui-callout,
.product-ui-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--bg-surface);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-surface));
    color: var(--white);
}

.product-ui-callout strong,
.product-ui-card strong {
    font-weight: 600;
}

.product-ui-callout span,
.product-ui-card span {
    color: var(--text-soft);
    font-size: 15px;
}

.product-ui-callout-primary {
    margin-bottom: 14px;
    border-color: var(--accent-highlight);
    box-shadow: inset 0 1px 0 var(--accent-highlight), 0 0 18px var(--accent-primary);
}

.product-ui-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.final-cta {
    padding-top: 32px;
}

.cta-section {
    padding-top: 32px;
}

.section-eyebrow {
    margin: 0;
    color: var(--accent-highlight);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cta-panel {
    justify-items: center;
    gap: 18px;
    padding: 44px 28px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-deep), var(--bg-surface));
}

.cta-card {
    justify-items: start;
    text-align: left;
}

.cta-card h2,
.cta-card p {
    max-width: 34rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: auto 15% -30% 15%;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-primary) 0%, var(--accent-highlight) 55%, transparent 80%);
    opacity: 0.22;
    pointer-events: none;
}

.site-footer {
    padding: 28px 0 40px;
}

.footer-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--bg-surface);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 680ms ease, transform 680ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-delay {
    --reveal-delay: 80ms;
}

.reveal-delay-2 {
    --reveal-delay: 160ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes drift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(0, 18px, 0) scale(1.04);
    }
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--accent-highlight);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px transparent;
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes floatInterface {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes stepProgress {
    0% {
        transform: translateX(-22%) scaleX(0.22);
        opacity: 0;
    }
    20% {
        opacity: 0.95;
    }
    80% {
        opacity: 0.95;
    }
    100% {
        transform: translateX(22%) scaleX(0.22);
        opacity: 0;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .product-highlight,
    .card-grid,
    .industry-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid::before,
    .steps-grid::after {
        display: none;
    }

    .industry-grid article:last-child {
        grid-column: 1 / -1;
    }

    .product-visual {
        justify-content: stretch;
    }

    .onboarding-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 20px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-grid,
    .product-highlight,
    .trust-items,
    .card-grid,
    .industry-grid,
    .steps-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .product-highlight {
        justify-items: start;
    }

    .product-ui-row {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        height: 68px;
    }

    .onboarding-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-actions,
    .button,
    .header-cta {
        width: 100%;
    }

    .brand-logo {
        height: 60px;
    }

    .interface-grid {
        grid-template-columns: 1fr;
    }

    .panel-large,
    .panel-wide {
        grid-column: auto;
    }
}