@font-face {
    font-family: "Onest";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/onest-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Onest";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/onest-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --ink-950: #07111f;
    --ink-900: #0b1728;
    --ink-850: #101d30;
    --ink-800: #15243a;
    --ink-700: #21334d;
    --stone-50: #f1ece4;
    --stone-100: #ece7dd;
    --stone-200: #e2dbcf;
    --stone-300: #d6cdbf;
    --surface-light: #e8e2d8;
    --surface-light-deep: #ddd5c9;
    --surface-card: #f1ece4;
    --text-on-dark: #f4f6f8;
    --muted-on-dark: #b6c1cf;
    --text-on-light: #172033;
    --muted-on-light: #586474;
    --border-on-light: rgba(23, 32, 51, 0.14);
    --accent: #f3a20b;
    --accent-hover: #dc8700;
    --success: #20a77d;
    --circuit-bronze: #a97827;
    --circuit-steel: #6f8198;
    --phase: #d65e5e;
    --neutral: #6f9dd9;
    --line-dark: rgba(244, 246, 248, 0.1);
    --line-light: rgba(23, 32, 51, 0.14);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 20px;
    --container: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text-on-dark);
    background: var(--ink-950);
    font-family: "Onest", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 420;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--ink-950);
}

.page-ambient,
.page-circuit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.page-ambient {
    z-index: 1;
    background:
        radial-gradient(circle at 9% 12%, rgba(111, 129, 152, 0.08), transparent 31rem),
        radial-gradient(circle at 88% 34%, rgba(169, 120, 39, 0.07), transparent 36rem),
        radial-gradient(circle at 12% 67%, rgba(111, 129, 152, 0.07), transparent 34rem),
        radial-gradient(circle at 78% 91%, rgba(243, 162, 11, 0.055), transparent 32rem);
}

.page-circuit {
    z-index: 2;
    max-width: none;
    overflow: visible;
}

.page-circuit__trace {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-circuit__trace--bronze {
    stroke: var(--circuit-bronze);
    stroke-opacity: 0.1;
}

.page-circuit__trace--steel {
    stroke: var(--circuit-steel);
    stroke-opacity: 0.085;
}

.page-circuit__trace--bronze .page-circuit__node {
    fill: var(--circuit-bronze);
    fill-opacity: 0.12;
    stroke: none;
}

.page-circuit__trace--steel .page-circuit__node {
    fill: var(--circuit-steel);
    fill-opacity: 0.11;
    stroke: none;
}

main > section > .container {
    position: relative;
    z-index: 3;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--ink-950);
    background: var(--accent);
    border-radius: var(--radius-sm);
    font-weight: 650;
    transform: translateY(-160%);
    transition: transform 0.2s var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(244, 246, 248, 0.08);
    background: rgba(7, 17, 31, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.brand__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    animation: brandSettle 0.38s var(--ease) both;
    filter: drop-shadow(0 3px 8px rgba(243, 162, 11, 0.15));
}

.brand__icon svg {
    width: 40px;
    height: 40px;
    overflow: visible;
}

.brand-mark__ring {
    stroke: rgba(243, 162, 11, 0.88);
    stroke-width: 2.2;
}

.brand-mark__bolt {
    fill: var(--accent);
    stroke: rgba(255, 222, 157, 0.72);
    stroke-width: 0.65;
    stroke-linejoin: round;
}

@keyframes brandSettle {
    from { opacity: 0.6; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}

.brand__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand__name {
    color: var(--text-on-dark);
    font-size: 17px;
    font-weight: 720;
    line-height: 1.05;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.brand__name span {
    color: var(--accent);
}

.brand__subtitle {
    color: #8e9baa;
    font-size: 7px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-phone {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(243, 162, 11, 0.34);
    border-radius: var(--radius-sm);
    background: rgba(243, 162, 11, 0.05);
    transition: color 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.header-phone:hover {
    color: var(--ink-950);
    background: var(--accent);
    border-color: var(--accent);
}

.header-phone svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-phone__text {
    display: none;
}

.section-shell,
.section,
.contact {
    position: relative;
}

.hero {
    padding: 64px 0 72px;
    border-bottom: 1px solid rgba(227, 220, 207, 0.14);
    background:
        radial-gradient(circle at 88% 30%, rgba(243, 162, 11, 0.1), transparent 29rem),
        radial-gradient(circle at 10% -10%, rgba(33, 51, 77, 0.72), transparent 34rem),
        linear-gradient(148deg, var(--ink-950) 0%, var(--ink-900) 58%, #0d192a 100%);
}

.hero__grid {
    display: grid;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 680;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 10vw, 4.65rem);
    font-weight: 720;
    line-height: 1;
    letter-spacing: -0.032em;
}

.hero__lead {
    max-width: 680px;
    margin-bottom: 30px;
    color: var(--muted-on-dark);
    font-size: clamp(1.02rem, 3vw, 1.16rem);
    line-height: 1.65;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 640;
    line-height: 1.25;
    text-align: center;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button--primary {
    color: var(--ink-950);
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(220, 135, 0, 0.2);
}

.button--primary:hover {
    color: var(--ink-950);
    background: #f8ad20;
    box-shadow: 0 11px 24px rgba(220, 135, 0, 0.25);
}

.button--secondary {
    color: var(--text-on-dark);
    border-color: rgba(244, 246, 248, 0.2);
    background: rgba(21, 36, 58, 0.82);
}

.button--secondary:hover {
    color: var(--accent);
    border-color: rgba(243, 162, 11, 0.45);
    background: var(--ink-800);
}

.hero__facts {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted-on-dark);
    font-size: 13px;
}

.hero__facts li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.hero__facts span {
    width: 19px;
    height: 19px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 19px;
    color: var(--success);
    border: 1px solid rgba(32, 167, 125, 0.32);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

.hero__visual {
    min-width: 0;
}

.board {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(182, 193, 207, 0.17);
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, #15243a, #0a1423 72%);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.3);
}

.board::before,
.board::after {
    position: absolute;
    width: 7px;
    height: 7px;
    z-index: 2;
    content: "";
    border: 1px solid rgba(182, 193, 207, 0.28);
    border-radius: 50%;
}

.board::before { top: 12px; right: 12px; }
.board::after { bottom: 12px; left: 12px; }

.board__header {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    color: var(--muted-on-dark);
    background: #1a2a40;
    border-bottom: 1px solid rgba(244, 246, 248, 0.08);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.board__header > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.board__header > span > i {
    width: 7px;
    height: 7px;
    display: block;
    background: var(--success);
    border-radius: 50%;
}

.board__status {
    color: #59c29f;
    font-size: 9px;
}

.board__body {
    padding: 26px 17px 21px;
}

.bus {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
}

.bus b {
    width: 26px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.bus span {
    height: 2px;
    background: currentColor;
}

.bus--phase { color: var(--phase); }
.bus--neutral { color: var(--neutral); }
.bus--earth { color: var(--accent); }

.modules {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin: 25px 0 20px 38px;
}

.module {
    min-width: 0;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 4px;
    color: #38475b;
    background: linear-gradient(180deg, #dce1e5, #aeb8c2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.24);
    font-family: "SFMono-Regular", Consolas, monospace;
}

.module--main {
    border-top: 4px solid var(--accent);
}

.module small {
    overflow: hidden;
    max-width: 100%;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-overflow: ellipsis;
}

.module strong {
    color: var(--ink-950);
    font-size: 12px;
}

.module span {
    width: 21px;
    height: 31px;
    position: relative;
    display: block;
    background: #273244;
    border-radius: 3px;
    box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.25);
}

.module span::before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 11px;
    height: 8px;
    content: "";
    background: var(--success);
    border-radius: 1px;
}

.board__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 38px;
    color: #8795a6;
    font-size: 9px;
}

.board__legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.board__legend i {
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
}

.board__legend .phase { background: var(--phase); }
.board__legend .neutral { background: var(--neutral); }
.board__legend .earth { background: var(--accent); }

.circuit-glow {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(22px);
}

.circuit-glow--hero {
    top: 14%;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(243, 162, 11, 0.045);
}

.section {
    padding: 72px 0;
    border-top: 1px solid rgba(227, 220, 207, 0.08);
}

.section--surface {
    color: var(--text-on-dark);
    background:
        radial-gradient(circle at 8% 28%, rgba(33, 51, 77, 0.42), transparent 31rem),
        radial-gradient(circle at 94% 86%, rgba(243, 162, 11, 0.045), transparent 25rem),
        linear-gradient(142deg, var(--ink-900), var(--ink-850));
    box-shadow: inset 0 1px rgba(244, 246, 248, 0.04), inset 0 -1px rgba(7, 17, 31, 0.7);
}

.section--light {
    color: var(--text-on-light);
    background:
        radial-gradient(circle at 88% 14%, rgba(67, 84, 107, 0.1), transparent 32rem),
        radial-gradient(circle at 8% 88%, rgba(243, 162, 11, 0.07), transparent 28rem),
        linear-gradient(140deg, var(--stone-100) 0%, var(--stone-200) 100%);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.26), inset 0 -1px rgba(23, 32, 51, 0.12);
}

.section-heading {
    max-width: 770px;
    margin: 0 0 42px;
}

.section-heading h2,
.about h2,
.contact h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 690;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.section-heading > p:last-child,
.about p:last-child,
.contact__inner > p:not(.eyebrow):not(.contact__city) {
    max-width: 68ch;
    margin-bottom: 0;
    color: var(--muted-on-light);
    font-size: 16px;
}

.section--surface .section-heading > p:last-child,
.section--surface .benefit-card p {
    color: var(--muted-on-dark);
}

.services-grid {
    display: grid;
    gap: 16px;
}

.service-card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--border-on-light);
    border-radius: var(--radius);
    background: rgba(241, 236, 228, 0.92);
    box-shadow: 0 12px 28px rgba(23, 32, 51, 0.07);
    transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.service-card::before {
    position: absolute;
    top: 0;
    right: 20px;
    width: 54px;
    height: 1px;
    content: "";
    background: var(--accent);
    opacity: 0.75;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 135, 0, 0.32);
    box-shadow: 0 15px 32px rgba(23, 32, 51, 0.1);
}

.icon-box {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--accent-hover);
    background: rgba(243, 162, 11, 0.07);
    border: 1px solid rgba(220, 135, 0, 0.2);
    border-radius: 12px;
}

.icon-box svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3,
.benefit-card h3 {
    margin-bottom: 9px;
    font-size: 18px;
    font-weight: 630;
    line-height: 1.35;
}

.service-card p,
.benefit-card p {
    margin-bottom: 0;
    color: var(--muted-on-light);
    font-size: 14px;
    line-height: 1.65;
}

.benefits-grid {
    position: relative;
    display: grid;
    gap: 30px;
    margin-top: 6px;
}

.benefits-grid::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 1px;
    content: "";
    background: linear-gradient(var(--accent), rgba(243, 162, 11, 0.08));
}

.benefit-card {
    position: relative;
    min-height: 110px;
    padding: 0 0 0 62px;
}

.benefit-card__number {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: var(--accent);
    border: 1px solid rgba(243, 162, 11, 0.46);
    border-radius: 50%;
    background: var(--ink-900);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.benefit-card h3 {
    color: var(--text-on-dark);
}

.about {
    display: grid;
    gap: 36px;
    align-items: center;
}

.about__portrait {
    width: min(100%, 410px);
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(220, 135, 0, 0.28);
    border-radius: 18px;
    background: var(--stone-200);
    box-shadow: 0 18px 42px rgba(23, 32, 51, 0.11);
}

.about__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about__content {
    max-width: 650px;
}

.about__content::before {
    width: 56px;
    height: 1px;
    display: block;
    margin-bottom: 28px;
    content: "";
    background: var(--accent-hover);
}

.about p:last-child {
    color: var(--muted-on-light);
    font-size: clamp(1rem, 2vw, 1.08rem);
    line-height: 1.72;
}

.contact {
    overflow: hidden;
    padding: 72px 0;
    border-top: 1px solid rgba(227, 220, 207, 0.09);
    background:
        radial-gradient(circle at 68% 70%, rgba(243, 162, 11, 0.075), transparent 25rem),
        radial-gradient(circle at 12% 12%, rgba(33, 51, 77, 0.5), transparent 28rem),
        linear-gradient(145deg, var(--ink-950), var(--ink-900));
}

.contact__inner {
    max-width: 780px;
    text-align: center;
}

.contact__inner > p:not(.eyebrow):not(.contact__city) {
    margin-inline: auto;
    color: var(--muted-on-dark);
}

.contact__actions {
    margin-top: 30px;
}

.contact__city {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0 0;
    color: #92a0b1;
    font-size: 13px;
    font-weight: 560;
}

.contact__city svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.circuit-glow--contact {
    right: 8%;
    bottom: -145px;
    width: 420px;
    height: 280px;
    background: rgba(243, 162, 11, 0.055);
}

.footer {
    padding: 24px 0;
    border-top: 1px solid rgba(244, 246, 248, 0.08);
    background: #060f1c;
}

.footer__inner {
    color: #8492a3;
    font-size: 12px;
    text-align: center;
}

.footer p {
    margin: 0;
}

.reveal.is-visible {
    animation: revealIn 0.34s var(--ease) both;
}

@keyframes revealIn {
    from { opacity: 0.01; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 520px) {
    .container {
        width: min(100% - 40px, var(--container));
    }

    .actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero__actions .button,
    .contact__actions .button {
        flex: 1 1 230px;
    }

    .hero__facts,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 680px) {
    .header__inner {
        min-height: 74px;
    }

    .brand {
        gap: 13px;
    }

    .brand__icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .brand__name {
        font-size: 20px;
    }

    .brand__subtitle {
        font-size: 8px;
        letter-spacing: 0.16em;
    }

    .header-phone {
        width: auto;
        min-width: 44px;
        flex-basis: auto;
        gap: 9px;
        padding: 0 15px;
        font-size: 14px;
        font-weight: 650;
    }

    .header-phone__text {
        display: inline;
    }

    .hero {
        padding: 84px 0 92px;
    }

    .section,
    .contact {
        padding-block: 92px;
    }

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

    .service-card {
        padding: 28px;
    }
}

@media (min-width: 960px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
        gap: 68px;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
        padding-top: 0;
    }

    .benefits-grid::before {
        top: 19px;
        right: 7%;
        bottom: auto;
        left: 7%;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, rgba(243, 162, 11, 0.08), var(--accent) 18%, var(--accent) 82%, rgba(243, 162, 11, 0.08));
    }

    .benefit-card {
        min-height: 0;
        padding: 0 16px 0 0;
    }

    .benefit-card__number {
        position: relative;
        margin-bottom: 24px;
    }

    .about {
        grid-template-columns: minmax(320px, 410px) minmax(0, 1fr);
        gap: clamp(56px, 8vw, 100px);
    }
}

@media (min-width: 1280px) {
    .hero {
        padding-block: 104px 110px;
    }

    .section,
    .contact {
        padding-block: 104px;
    }
}

@media (max-width: 679px) {
    .page-circuit {
        display: none;
    }
}

@media (max-width: 360px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand__subtitle {
        display: none;
    }

    .brand__name {
        font-size: 16px;
    }

    .button {
        padding-inline: 13px;
        font-size: 13px;
    }

    .module {
        min-height: 98px;
    }

    .module small {
        font-size: 6px;
    }

    .board__legend {
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal.is-visible {
        animation: none;
    }
}
