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

:root {
    --navy: #0b1829;
    --navy-light: #0e2035;
    --teal: #00c2a8;
    --teal-dark: #009e88;
    --offwhite: #f0ede6;
    --slate: #3d5166;
    --mist: #e3ebf2;
    --mid: #7a92a8;
    --serif: "DM Serif Display", Georgia, serif;
    --sans: "Inter", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--sans);
    background: var(--navy);
    color: var(--offwhite);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 4rem;
    background: rgba(11, 24, 41, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 194, 168, 0.15);
}
.nav-logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--offwhite);
    letter-spacing: 0.01em;
    text-decoration: none;
}
.nav-logo-mb {
	display: none;
}
.nav-logo span {
    color: var(--teal);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--teal);
}
.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--teal);
    padding: 0.55rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}
.nav-cta:hover {
    background: var(--teal-dark);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: "";
    background-image: url("../img/hero.jpg");
    background-color: rgba(120, 190, 175, 0.5); /* Semi-transparent color */
    background-blend-mode: luminosity; /* Blend mode to adjust appearance */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 60% 40%,
        rgba(0, 194, 168, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Signal pulse SVG line */
.pulse-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    pointer-events: none;
    opacity: 0.55;
}
.pulse-line {
    stroke: var(--teal);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLine 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.pulse-glow {
    stroke: var(--teal);
    stroke-width: 4;
    fill: none;
    filter: blur(5px);
    opacity: 0.4;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLine 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.05;
    max-width: 15ch;
    color: var(--offwhite);
    opacity: 0;
    animation: fadeUp 0.7s ease 0.35s forwards;
}
.hero h1 em {
    color: var(--teal);
    font-style: italic;
}
.hero-sub {
    margin-top: 1.75rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mid);
    max-width: 48ch;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.65s forwards;
}
.btn-primary {
    background: var(--teal);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
	width: 247px;
	text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.15s;
}
.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}
.btn-ghost {
    border: 1px solid var(--slate);
    color: var(--offwhite);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
	width: 247px;
	text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.hero-stats {
    position: absolute;
    right: 4rem;
    bottom: 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
    visibility: hidden;
}
.stat {
    text-align: right;
}
.stat-num {
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--teal);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ── DIVIDER ── */
.teal-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

/* ── WHAT WE DO (Services overview) ── */
.services-intro {
    background: var(--navy-light);
    color: var(--navy);
    padding: 6rem 4rem;
}
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}
.services-intro h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--offwhite);
    max-width: 22ch;
    line-height: 1.15;
}
.services-intro p {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--mid);
    max-width: 60ch;
}
.services-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border: 1px solid rgba(61, 81, 102, 0.3);
}
.service-card {
    padding: 2.5rem;
    background: var(--navy);
    border: 1px solid rgba(61, 81, 102, 0.3);
    transition: background 0.2s;
}
.service-card:hover {
    background: var(--navy-light);
    border: 1px solid var(--teal-dark);
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--navy-light);
    border: 1px solid rgba(0, 194, 168, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    fill: var(--teal);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--mist);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--mid);
}

/* ── EMAIL MARKETING ── */
.email-section {
    background: var(--navy);
    padding: 6.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.email-section h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
}
.email-section h2 em {
    color: var(--teal);
    font-style: italic;
}
.email-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 1.25rem;
}
.lifecycle-steps {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(61, 81, 102, 0.4);
}
.step:last-child {
    border-bottom: none;
}
.step-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--teal);
    line-height: 1;
    min-width: 2rem;
    padding-top: 0.1rem;
}
.step-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 0.3rem;
}
.step-body p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}
.email-visual {
    background: rgba(0, 194, 168, 0.05);
    border: 1px solid rgba(0, 194, 168, 0.15);
    border-radius: 12px;
    padding: 1rem 2.5rem 2.5rem;
    font-family: var(--sans);
}
.mock-inbox {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.mock-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    background: rgba(11, 24, 41, 0.6);
    border: 1px solid rgba(61, 81, 102, 0.3);
    cursor: default;
    transition: background 0.15s;
}
.mock-row:hover {
    background: rgba(0, 194, 168, 0.08);
}
.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}
.mock-dot.read {
    background: var(--slate);
}
.mock-text {
    flex: 1;
}
.mock-from {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--offwhite);
}
.mock-subject {
    font-size: 0.76rem;
    color: var(--mid);
    margin-top: 0.15rem;
}
.mock-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
}
.badge-open {
    background: rgba(0, 194, 168, 0.15);
    color: var(--teal);
}
.badge-click {
    background: rgba(255, 200, 80, 0.12);
    color: #f5c842;
}
.badge-conv {
    background: rgba(120, 200, 140, 0.12);
    color: #78c88c;
}
.mock-label {
    font-size: 0.72rem;
    color: var(--mid);
    text-align: center;
    margin-top: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.open-rate-bar {
    margin-top: 1.5rem;
}
.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--mid);
    margin-bottom: 0.4rem;
}
.bar-track {
    height: 6px;
    background: rgba(61, 81, 102, 0.4);
    border-radius: 3px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--teal);
}

/* ── SOFTWARE DEV ── */
.dev-section {
    background: #0e2035;
    padding: 6.5rem 4rem;
}
.dev-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.dev-header {
    max-width: 55ch;
    margin-bottom: 4rem;
}
.dev-header h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--offwhite);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.dev-header p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--mid);
}
.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(61, 81, 102, 0.2);
    border: 1px solid rgba(61, 81, 102, 0.3);
    border-radius: 8px;
    overflow: hidden;
}
.dev-panel {
    background: var(--navy);
    padding: 3rem;
}
.dev-panel h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--offwhite);
    margin-bottom: 1rem;
}
.dev-panel p {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--mid);
}
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 194, 168, 0.3);
    color: var(--teal);
}
.sdlc-flow {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.flow-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--mid);
}
.flow-arrow {
    color: var(--teal);
    font-size: 1rem;
}
.flow-name {
    font-weight: 500;
    color: var(--offwhite);
}

/* ── WEB DESIGN ── */
.web-section {
    background: var(--offwhite);
    padding: 8rem 4rem;
    color: var(--navy);
}
.web-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}
.web-inner h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.25rem;
}
.web-inner h2 em {
    color: var(--teal-dark);
    font-style: italic;
}
.web-inner > div > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.25rem;
}
.web-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-left: 2px solid var(--teal-dark);
    background: var(--mist);
    border-radius: 0 6px 6px 0;
}
.pillar-icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}
.pillar h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.pillar p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.6;
}
.web-mockup {
    background: var(--navy);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(11, 24, 41, 0.25);
    border: 1px solid rgba(61, 81, 102, 0.4);
}
.mock-bar {
    background: rgba(61, 81, 102, 0.5);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mock-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mock-url {
    flex: 1;
    background: rgba(11, 24, 41, 0.5);
    border-radius: 3px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    color: var(--mid);
    margin: 0 0.5rem;
}
.mock-page {
    padding: 1.5rem;
}
.mock-hero-block {
    background: linear-gradient(
        135deg,
        rgba(0, 194, 168, 0.15),
        rgba(0, 194, 168, 0.03)
    );
    border: 1px solid rgba(0, 194, 168, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.mock-h {
    height: 10px;
    background: var(--offwhite);
    border-radius: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
.mock-h.short {
    width: 55%;
    opacity: 0.6;
}
.mock-h.xshort {
    width: 30%;
    opacity: 0.4;
}
.mock-btn-demo {
    display: inline-block;
    height: 10px;
    width: 70px;
    background: var(--teal);
    border-radius: 3px;
    margin-top: 0.75rem;
    opacity: 0.85;
}
.mock-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}
.mock-card-block {
    background: rgba(61, 81, 102, 0.2);
    border-radius: 6px;
    padding: 1rem;
}
.mock-card-img {
    height: 40px;
    background: rgba(0, 194, 168, 0.1);
    border-radius: 4px;
    margin-bottom: 0.6rem;
}
.mock-card-line {
    height: 6px;
    background: rgba(240, 237, 230, 0.2);
    border-radius: 2px;
    margin-bottom: 0.35rem;
}
.mock-card-line.short {
    width: 65%;
}

/* ── PROCESS ── */
.process-section {
    background: var(--navy);
    padding: 8rem 4rem;
}
.process-header {
    text-align: center;
    margin-bottom: 5rem;
}
.process-header h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--offwhite);
    max-width: 30ch;
    margin: 0.75rem auto 1.25rem;
}
.process-header p {
    font-size: 1rem;
    color: var(--mid);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.7;
}
.process-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.process-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, var(--teal), rgba(0, 194, 168, 0.2));
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}
.process-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.process-dot svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.process-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 0.5rem;
}
.process-step p {
    font-size: 0.8rem;
    color: var(--mid);
    line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, #00c2a8 0%, #009e88 100%);
    padding: 7rem 4rem;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    max-width: 22ch;
    margin: 0 auto 1.25rem;
    line-height: 1.15;
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(11, 24, 41, 0.7);
    max-width: 46ch;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.btn-dark {
    background: var(--navy);
    color: var(--offwhite);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}
.btn-dark:hover {
    opacity: 0.85;
}

/* ── 404 ── */
.oops {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
}
.oops h3 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.05;
    max-width: 15ch;
    color: var(--offwhite);
    opacity: 0;
    animation: fadeUp 0.7s ease 0.35s forwards;
}
.oops h3 em {
    color: var(--teal);
    font-style: italic;
}
.oops h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.2s forwards;
}
.oops-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.65s forwards;
}

/* ── FOOTER ── */
footer {
    background: #060f19;
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid rgba(61, 81, 102, 0.3);
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--mid);
}
.footer-logo span {
    color: var(--teal);
}
.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.82rem;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--teal);
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(122, 146, 168, 0.5);
}


/* ── RESPONSIVE DT ── */
@media (max-width: 1080px) {
	.nav-logo-dt {
		width: 190px;
	}
}


/* ── RESPONSIVE MOB ── */
@media (max-width: 900px) {
    nav {
        padding: 1rem 1.8rem;
    }
    .nav-links {
        display: none;
    }
	.nav-cta {
		font-size: 0.8rem;
		font-weight: 600;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: var(--navy);
		background: var(--teal);
		padding: 0.55rem 0.8rem;
		border-radius: 4px;
		text-decoration: none;
		transition: background 0.2s;
	}
    .hero {
        padding: 7rem 2rem 4rem;
    }
    .hero-stats {
        position: static;
        margin-top: 3rem;
        flex-direction: row;
        gap: 2.5rem;
    }
    .stat {
        text-align: left;
    }
    .services-intro,
    .dev-section,
    .web-section,
    .process-section,
    .cta-section {
        padding: 5rem 2rem;
    }
    .email-section {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
    }
	.step-body p {
		margin-bottom: 0;
	}
    .dev-grid {
        grid-template-columns: 1fr;
    }
    .web-inner {
        grid-template-columns: 1fr;
    }
    .process-track {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .process-track::before {
        display: none;
    }
    footer {
        padding: 2.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
    }
}
