/* ===== ErkaTech — base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --h1-size: clamp(2.6rem, 8.5vw, 7.5rem);
    --bg: #ffffff;
    --fg: #0a0a0a;
    --gray: #6b6b6b;
    --line: #e2e2e2;
    --panel-bg: #f4f4f4;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { padding: 0 5vw; }

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Header ===== */
header.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 5vw;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--fg);
}
header.site-header * { color: var(--fg); }

.logo-lockup {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.2rem;
}
.logo-lockup img { width: 70px; height: 70px; }
.logo-mark {
    width: 70px;
    height: 70px;
    overflow: hidden;
    position: relative;
    flex: 0 0 70px;
}
header.site-header .logo-mark img {
    position: absolute;
    width: 242px;
    height: 242px;
    max-width: none;
    left: -87px;
    top: -71px;
}

nav.main-nav {
    display: flex;
    gap: 2.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
nav.main-nav a { opacity: 0.75; transition: opacity 0.2s; }
nav.main-nav a:hover { opacity: 1; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 0.3rem 0.2rem;
}
.lang-toggle button {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
    opacity: 0.55;
}
.lang-toggle span {
    color: var(--gray);
    font-weight: 400;
    user-select: none;
}
.lang-toggle button.active {
    background: #0a0a0a;
    color: #fff;
    opacity: 1;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5vw;
    position: relative;
}

.hero-headline {
    overflow: hidden;
}
.hero-headline .line {
    overflow: hidden;
}
.hero-headline h1 {
    font-size: var(--h1-size);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.02em;
    transform: translateY(110%);
    transition: transform 1s var(--ease);
}
.hero-headline.in-view .line:nth-child(1) h1 { transition-delay: 0.05s; }
.hero-headline.in-view .line:nth-child(2) h1 { transition-delay: 0.18s; }
.hero-headline.in-view h1 { transform: translateY(0); }

.hero-sub {
    display: flex;
    justify-content: flex-end;
    margin-top: 2.5rem;
}
.hero-sub p {
    width: min(480px, 90%);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--gray);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s var(--ease) 0.4s, transform 0.8s var(--ease) 0.4s;
}
.hero-headline.in-view ~ .hero-sub p,
.hero.in-view .hero-sub p { opacity: 1; transform: translateY(0); }

/* ===== Scroll-zoom live surface panel ===== */
.panel-section {
    height: 190vh;
    position: relative;
}
.panel-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0 8vw;
    overflow: hidden;
}
.scene-layout {
    width: min(1440px, 100%);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: clamp(2.5rem, 8vw, 9rem);
}
.scene-copy {
    position: relative;
    min-height: 260px;
}
.scene-index {
    display: block;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scene-step {
    position: absolute;
    inset: 2rem 0 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    pointer-events: none;
}
.scene-step.active {
    opacity: 1;
    transform: translateY(0);
}
.scene-step h2 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 4vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.scene-step p {
    max-width: 32ch;
    margin-top: 1.35rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}
.panel-frame {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.12 / 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}
.surface-stage {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 44%, rgba(255,255,255,0.95), rgba(235,235,231,0.78) 68%, rgba(218,218,214,0.72)),
        #efefeb;
}
.surface-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(30,30,30,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,30,30,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.34;
}
.surface-stage canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}
.surface-fallback-message {
    display: none;
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 1.2rem;
    width: min(82%, 360px);
    transform: translateX(-50%);
    color: var(--gray);
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.4;
}
.surface-stage.is-fallback .surface-fallback-message { display: block; }
.surface-stage.is-fallback canvas { display: none; }
/* ===== Scroll-pinned magnet matrix chapter ===== */
.magnet-section {
    height: 165vh;
    position: relative;
    background: #f7f7f5;
}
.magnet-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0 8vw;
    overflow: hidden;
}
.magnet-frame {
    width: 100%;
    aspect-ratio: 1.12 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: none;
}
.magnet-stage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, #ffffff 0%, #f0f0ed 62%, #dfdfda 100%);
}
.magnet-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(30,30,30,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,30,30,0.035) 1px, transparent 1px);
    background-size: 32px 32px;
}
.magnet-stage canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}
.magnet-fallback-message {
    display: none;
    position: absolute;
    z-index: 2;
    bottom: 1.2rem;
    left: 50%;
    width: min(82%, 360px);
    transform: translateX(-50%);
    color: var(--gray);
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.4;
}
.magnet-stage.is-fallback .magnet-fallback-message { display: block; }
.magnet-stage.is-fallback canvas { display: none; }
/* ===== Editorial story sections ===== */
.story-intro,
.story-bridge {
    padding: 12vh 8vw;
}
.story-layout {
    display: grid;
    grid-template-columns: minmax(280px, 560px) minmax(280px, 640px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
}
.story-intro-copy,
.story-bridge-copy {
    max-width: 560px;
}
.story-index {
    display: block;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.story-intro h2,
.story-bridge h2 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 4.5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.04em;
}
.story-bridge h2 { font-size: clamp(2.15rem, 4vw, 4.2rem); }
.story-intro p,
.story-bridge p {
    max-width: 52ch;
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.65;
}
.story-bridge {
    padding-top: 14vh;
    padding-bottom: 14vh;
    background: var(--panel-bg);
}
.story-intro {
    padding-top: 10vh;
    padding-bottom: 11vh;
}
.story-intro .story-layout {
    gap: clamp(2rem, 5vw, 6rem);
}
.story-intro .story-visual {
    width: min(100%, 620px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.story-intro .story-visual img {
    transform: scale(1.12);
}
.story-visual {
    width: 100%;
    margin: 0;
    justify-self: end;
}
.story-visual img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}
.material-proof,
.demo-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 10rem);
    padding: 16vh 10vw;
}
.material-proof-media {
    aspect-ratio: 1 / 1;
    max-width: 520px;
    justify-self: center;
    overflow: hidden;
    border-radius: 18px;
    background: var(--panel-bg);
}
.material-proof-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.material-proof-copy,
.demo-proof-copy {
    max-width: 460px;
}
.material-proof-copy h2,
.demo-proof-copy h2 {
    margin: 0.75rem 0 1.5rem;
    font-size: clamp(2rem, 3.8vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.035em;
}
.material-proof-copy p,
.demo-proof-copy p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 1rem;
}
.demo-proof {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    background: var(--panel-bg);
}
.demo-video-wrap {
    width: min(100%, 470px);
    justify-self: center;
    overflow: hidden;
    border-radius: 18px;
    background: #151515;
    box-shadow: 0 24px 56px rgba(0,0,0,0.2);
}
.demo-video {
    display: block;
    width: 100%;
    aspect-ratio: 464 / 832;
    background: #151515;
    object-fit: cover;
}
.vision {
    padding: 16vh 10vw 12vh;
}
.vision-layout {
    display: grid;
    grid-template-columns: minmax(280px, 660px) minmax(280px, 480px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
}
.vision-copy {
    max-width: 830px;
}
.vision-index {
    display: block;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.vision h2 {
    max-width: 16ch;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.vision p {
    max-width: 590px;
    margin-top: 1.35rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.65;
}
.vision-image {
    margin: 0;
    justify-self: end;
    width: 100%;
}
.vision-image img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.supporters {
    padding: 8vh 10vw 12vh;
}
.supporters-head {
    margin-bottom: 3rem;
}
.supporters-head h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.035em;
}
.supporter-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.supporter-logo {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem clamp(2rem, 6vw, 6rem);
}
.supporter-logo + .supporter-logo { border-left: 1px solid var(--line); }
.supporter-logo img {
    display: block;
    width: min(100%, 280px);
    max-height: 76px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.08);
}
.supporter-logo:last-child img {
    width: min(100%, 92px);
    max-height: 92px;
}
.supporter-name {
    margin-top: 0.65rem;
    color: var(--fg);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ===== Section shell ===== */
section.block {
    padding: 10vh 5vw;
}
.block-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.block-head h2 {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.block-head p {
    max-width: 420px;
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ===== Tech tile grid ===== */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}
.tile {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--panel-bg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.tile-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.tile-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.tile:hover .tile-thumb img { transform: scale(1.06); }
.tile-link { color: inherit; }
.magnet-tile-visual {
    position: relative;
    background:
        radial-gradient(circle at 50% 55%, rgba(255,255,255,0.16), transparent 44%),
        linear-gradient(135deg, #202020, #4c4c49);
}
.magnet-tile-visual::before {
    content: "";
    position: absolute;
    inset: 13% 15%;
    background-image: radial-gradient(circle, #e2e2dc 0 20%, transparent 23%);
    background-size: 25% 25%;
    opacity: 0.96;
}
.magnet-tile-visual::after {
    content: "";
    position: absolute;
    inset: 28% 10%;
    border-top: 1px solid rgba(255,255,255,0.42);
    border-bottom: 1px solid rgba(255,255,255,0.24);
    transform: skewY(-10deg);
    opacity: 0.78;
}
.tile-text {
    padding: 1.1rem 1.2rem 1.4rem;
}
.tile-text .step {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.tile-text h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ===== Prototype / two-up image section ===== */
.duo {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.duo-media {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.duo-media img { width: 100%; height: 100%; object-fit: cover; }
.duo-text h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}
.duo-text p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}
.stat-row {
    display: flex;
    gap: 2.4rem;
    margin-top: 2rem;
}
.stat-row div strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}
.stat-row div span {
    font-size: 0.78rem;
    color: var(--gray);
    letter-spacing: 0.04em;
}

/* ===== About ===== */
.about-block p {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--fg);
    margin-bottom: 1.2rem;
}
.about-block p.muted {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== Contact / CTA ===== */
section.cta {
    background: var(--fg);
    color: #fff;
    border-radius: 24px;
    margin: 4vh 5vw 10vh;
    padding: 8vh 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
section.cta h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    font-weight: 800;
    max-width: 560px;
    letter-spacing: -0.01em;
}
a.button,
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    border-radius: 30px;
    border: 0;
    background: #fff;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s;
}
a.button:hover,
.contact-submit:hover { transform: translateY(-2px); }
section.cta .contact-submit {
    padding: 1.425rem 2.7rem;
    font-size: 1.35rem;
}
.contact-form {
    width: min(100%, 430px);
    display: grid;
    gap: 1rem;
}
.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.contact-form input:not(.contact-honeypot),
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 8px;
    padding: 0.8rem 0.9rem;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 0.95rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.contact-form input:not(.contact-honeypot):focus,
.contact-form textarea:focus {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}
.contact-honeypot { position: absolute; left: -9999px; }

/* ===== Footer ===== */
footer {
    padding: 4vh 5vw 6vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--gray);
    flex-wrap: wrap;
    gap: 1rem;
}
footer .logo-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
}
footer .logo-mark img {
    position: absolute;
    width: 118px;
    height: 118px;
    max-width: none;
    left: -42px;
    top: -35px;
}
footer .foot-links { display: flex; gap: 1.6rem; }

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease);
    z-index: 200;
    padding: 6vh 5vw;
}
.modal.show { opacity: 1; visibility: visible; }
.modal-inner {
    max-width: 900px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.modal-inner img {
    max-height: 68vh;
    width: auto;
    margin: 0 auto;
    border-radius: 10px;
}
.modal-inner h3 { color: #fff; font-size: 1.3rem; font-weight: 700; }
.modal-inner p { color: #b8b8b8; font-size: 0.9rem; max-width: 640px; }
.modal-close {
    position: absolute;
    top: 2rem; right: 5vw;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
}

/* ===== Scroll progress bar ===== */
#scrollbar {
    position: fixed;
    height: 120px;
    width: 3px;
    background-color: rgba(0,0,0,0.12);
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    z-index: 90;
}
#scrollbar-handle {
    background-color: rgba(0,0,0,0.65);
    position: absolute;
    width: 100%;
    height: 10px;
    border-radius: 8px;
}

/* ===== Reveal-on-scroll utility ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    nav.main-nav { display: none; }
    .tile-grid { grid-template-columns: repeat(2, 1fr); }
    .duo { grid-template-columns: 1fr; }
    .panel-sticky,
    .magnet-sticky { padding: 0 7vw; }
    .scene-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
        align-content: center;
    }
    .scene-copy { min-height: 340px; }
    .scene-step h2 { max-width: 15ch; font-size: clamp(2rem, 9vw, 3.1rem); }
    .scene-step p { max-width: none; margin-top: 1rem; }
    .story-intro,
    .story-bridge { padding: 15vh 7vw; }
    .story-layout { grid-template-columns: 1fr; gap: 3rem; }
    .story-intro-copy,
    .story-bridge-copy {
        display: block;
    }
    .story-index { margin-bottom: 1rem; }
    .story-intro h2,
    .story-bridge h2 { max-width: 15ch; }
    .story-intro p,
    .story-bridge p { margin-top: 1.6rem; }
    .story-visual {
        width: min(100%, 480px);
        justify-self: start;
    }
    .story-intro .story-visual img { transform: none; }
    .material-proof,
    .demo-proof {
        grid-template-columns: 1fr;
        padding: 13vh 7vw;
        gap: 3rem;
    }
    .demo-proof-copy { order: 1; }
    .demo-video-wrap { order: 2; }
    .vision {
        padding: 13vh 7vw 11vh;
    }
    .vision-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .vision-image {
        justify-self: start;
        width: min(100%, 480px);
    }
    .supporters { padding: 8vh 7vw 11vh; }
    .supporters-head { margin-bottom: 2rem; }
    .supporter-logos { grid-template-columns: 1fr; }
    .supporter-logo { min-height: 130px; }
    .supporter-logo + .supporter-logo { border-left: none; border-top: 1px solid var(--line); }
    section.cta .contact-submit {
        width: 100%;
        justify-content: center;
        padding: 1.425rem 2rem;
        font-size: 1.35rem;
    }
    .hero-sub { justify-content: flex-start; }
    .hero-sub p { width: 100%; }
    section.cta { flex-direction: column; align-items: flex-start; }
    .contact-form { width: 100%; }
}
