:root {
    --deep-navy: #061422;
    --steel-blue: #1e3447;
    --orbit-grey: #667786;
    --light-steel: #bfd0dc;
    --warm-white: #f2f0e6;
    --amber: #f5a623;
    --amber-soft: #ffd17a;
    --teal: #18a5a4;
    --line: rgba(245, 166, 35, 0.34);
    --panel: rgba(8, 22, 34, 0.82);
    --panel-solid: #0a1a2a;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 74% 8%, rgba(24, 165, 164, 0.22), transparent 26rem),
        radial-gradient(circle at 16% 22%, rgba(245, 166, 35, 0.18), transparent 24rem),
        linear-gradient(135deg, #030910 0%, var(--deep-navy) 48%, #08111c 100%);
    color: var(--warm-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 86%);
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(3, 9, 16, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--amber);
    border-radius: 50%;
    color: var(--warm-white);
    font-size: 0.72rem;
    font-weight: 900;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(242, 240, 230, 0.32);
    border-radius: 50%;
}

.brand-mark::after {
    inset: auto;
    width: 1px;
    height: 58px;
    background: rgba(245, 166, 35, 0.7);
    border: 0;
}

.brand-mark span {
    position: relative;
    z-index: 1;
    background: var(--deep-navy);
    padding: 0 2px;
}

.brand-text {
    display: grid;
    gap: 2px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand-text strong {
    font-size: 0.9rem;
}

.brand-text small {
    color: var(--amber);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.21em;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    color: var(--light-steel);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--amber-soft);
}

.nav-cta {
    padding: 10px 14px;
    border: 1px solid var(--amber);
    border-radius: 4px;
    color: var(--amber-soft);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border: 1px solid rgba(191, 208, 220, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--light-steel);
    font-size: 0.72rem;
    font-weight: 900;
    text-decoration: none;
}

.language-switcher a.active {
    background: var(--amber);
    color: #07111d;
}

.hero {
    position: relative;
    display: grid;
    align-content: end;
    min-height: calc(100vh - 75px);
    padding: clamp(72px, 9vw, 126px) clamp(18px, 4vw, 56px) 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 9, 16, 0.93) 0%, rgba(3, 9, 16, 0.76) 34%, rgba(3, 9, 16, 0.22) 68%, rgba(3, 9, 16, 0.58) 100%),
        linear-gradient(0deg, rgba(3, 9, 16, 0.9) 0%, rgba(3, 9, 16, 0.08) 34%, rgba(3, 9, 16, 0.2) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -190px;
    top: -230px;
    z-index: 2;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(245, 166, 35, 0.028), 0 0 0 180px rgba(191, 208, 220, 0.018);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 690px;
    padding-bottom: clamp(42px, 7vw, 82px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--amber);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 7.3vw, 6.8rem);
    line-height: 0.9;
}

h2 {
    font-size: clamp(2.1rem, 4.8vw, 4.8rem);
    line-height: 0.96;
}

h3 {
    margin: 0 0 10px;
    color: var(--warm-white);
    font-size: 1.02rem;
    line-height: 1.2;
}

.hero-copy {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(242, 240, 230, 0.84);
    font-size: clamp(1rem, 1.65vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.button.primary {
    background: var(--amber);
    color: #06111d;
}

.button.primary:hover {
    background: var(--amber-soft);
}

.button.secondary {
    background: rgba(191, 208, 220, 0.06);
    border-color: rgba(191, 208, 220, 0.32);
    color: var(--warm-white);
}

.hero-visual {
    position: absolute;
    inset: 0;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.mission-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    border: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
    background: rgba(245, 166, 35, 0.28);
}

.mission-strip span {
    min-height: 58px;
    display: grid;
    grid-template-columns: 14px auto;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(6, 20, 34, 0.86);
    color: var(--warm-white);
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mission-strip span::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 1px solid var(--amber);
    border-radius: 50%;
    background: radial-gradient(circle, var(--amber) 0 28%, transparent 34%);
}

.section,
.section-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.section {
    padding: clamp(72px, 9vw, 116px) 0;
}

.page-hero {
    padding-top: clamp(92px, 10vw, 140px);
}

.systems-page-hero,
.approach-page-hero,
.automations-page-hero,
.pricing-page-hero,
.automation-detail-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: clamp(420px, 58vw, 700px);
    display: grid;
    align-items: end;
    padding: clamp(92px, 10vw, 140px) clamp(18px, 4vw, 56px) clamp(68px, 8vw, 112px);
}

.systems-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 9, 16, 0.92) 0%, rgba(3, 9, 16, 0.76) 34%, rgba(3, 9, 16, 0.38) 68%, rgba(3, 9, 16, 0.72) 100%),
        linear-gradient(180deg, rgba(3, 9, 16, 0.32) 0%, rgba(3, 9, 16, 0.18) 34%, rgba(3, 9, 16, 0.86) 100%),
        url('./process-harbour-systems-hero-generated.png') center right / cover no-repeat;
}

.approach-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 9, 16, 0.9) 0%, rgba(3, 9, 16, 0.72) 34%, rgba(3, 9, 16, 0.28) 68%, rgba(3, 9, 16, 0.76) 100%),
        linear-gradient(180deg, rgba(3, 9, 16, 0.24) 0%, rgba(3, 9, 16, 0.16) 34%, rgba(3, 9, 16, 0.84) 100%),
        url('./process-harbour-approach-hero-wide-generated.png') center center / cover no-repeat;
}

.automations-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 9, 16, 0.92) 0%, rgba(3, 9, 16, 0.76) 34%, rgba(3, 9, 16, 0.24) 68%, rgba(3, 9, 16, 0.78) 100%),
        linear-gradient(180deg, rgba(3, 9, 16, 0.24) 0%, rgba(3, 9, 16, 0.14) 34%, rgba(3, 9, 16, 0.86) 100%),
        url('./process-harbour-automations-hero-wide-generated.png') center center / cover no-repeat;
}

.pricing-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 9, 16, 0.92) 0%, rgba(3, 9, 16, 0.76) 34%, rgba(3, 9, 16, 0.24) 68%, rgba(3, 9, 16, 0.8) 100%),
        linear-gradient(180deg, rgba(3, 9, 16, 0.22) 0%, rgba(3, 9, 16, 0.14) 34%, rgba(3, 9, 16, 0.86) 100%),
        url('./process-harbour-pricing-hero-wide-generated.png') center center / cover no-repeat;
}

.automation-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 9, 16, 0.92) 0%, rgba(3, 9, 16, 0.76) 34%, rgba(3, 9, 16, 0.24) 68%, rgba(3, 9, 16, 0.8) 100%),
        linear-gradient(180deg, rgba(3, 9, 16, 0.28) 0%, rgba(3, 9, 16, 0.16) 34%, rgba(3, 9, 16, 0.88) 100%),
        var(--detail-hero-image) center center / cover no-repeat;
}

.systems-page-hero::after,
.approach-page-hero::after,
.automations-page-hero::after,
.pricing-page-hero::after,
.automation-detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    transform: translateX(-50%);
    z-index: -1;
    background: var(--line);
}

.systems-page-hero .section-heading,
.approach-page-hero .section-heading,
.automations-page-hero .section-heading,
.pricing-page-hero .section-heading,
.automation-detail-hero .section-heading {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.systems-page-hero .section-heading h1,
.systems-page-hero .section-heading p,
.approach-page-hero .section-heading h1,
.approach-page-hero .section-heading p,
.automations-page-hero .section-heading h1,
.automations-page-hero .section-heading p,
.pricing-page-hero .section-heading h1,
.pricing-page-hero .section-heading p,
.automation-detail-hero .section-heading h1,
.automation-detail-hero .section-heading p {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.automation-detail-hero .section-heading {
    text-align: center;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.automation-detail-problem {
    width: min(1180px, calc(100% - 36px));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.automation-detail-problem .section-heading {
    max-width: none;
}

.automation-detail-problem .section-heading h2 {
    max-width: 720px;
    font-size: clamp(1.95rem, 3.3vw, 3.45rem);
    line-height: 1.02;
}

.automation-detail-problem .section-heading p,
.automation-detail-problem .outcome-panel p {
    font-size: 1rem;
}

.mission-band,
.pricing-band,
.outcome-band {
    padding: clamp(64px, 8vw, 92px) 0;
    border-bottom: 1px solid var(--line);
}

.mission-band {
    background:
        linear-gradient(90deg, rgba(245, 166, 35, 0.08), transparent),
        rgba(8, 22, 34, 0.62);
}

.mission-grid,
.pricing-grid,
.split,
.form-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
}

.mission-grid p,
.pricing-grid p,
.section-heading p,
.form-copy p {
    color: var(--light-steel);
    font-size: 1.05rem;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading.align-left {
    margin: 0;
    text-align: left;
}

.system-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr 1fr 1fr;
    gap: 14px;
}

.system-card {
    position: relative;
    min-height: 330px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(30, 52, 71, 0.72), rgba(6, 20, 34, 0.9)),
        var(--panel-solid);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.system-card::after,
.outcome-panel::after,
.price-panel::after {
    content: "";
    position: absolute;
    inset: 12px;
    pointer-events: none;
    border: 1px solid rgba(191, 208, 220, 0.08);
    border-radius: 6px;
}

.system-icon {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 72px;
    border: 1px solid rgba(245, 166, 35, 0.74);
    border-radius: 50%;
    color: var(--amber);
    font-size: 0.76rem;
    font-weight: 950;
}

.system-card p,
.step p {
    margin: 0;
    color: var(--light-steel);
}

.step h3,
.detail-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.15;
}

.image-card {
    padding: 0;
    min-height: 420px;
}

.image-card img,
.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card img {
    object-position: center;
}

.timeline {
    display: grid;
    gap: 12px;
}

.step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(191, 208, 220, 0.18);
    border-left-color: var(--amber);
    border-radius: 8px;
    background: rgba(8, 22, 34, 0.68);
}

.step span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--amber);
    border-radius: 50%;
    color: var(--amber);
    font-weight: 950;
}

.outcome-band {
    background: linear-gradient(180deg, rgba(242, 240, 230, 0.04), rgba(245, 166, 35, 0.05));
}

.outcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr) minmax(220px, 0.55fr);
    gap: 16px;
    align-items: stretch;
}

.outcome-panel,
.improvement-card,
.poster-card,
.price-panel,
.lead-form {
    border: 1px solid var(--line);
    border-radius: 8px;
}

.outcome-panel,
.price-panel,
.lead-form {
    position: relative;
    background: var(--panel);
}

.outcome-panel {
    padding: clamp(24px, 4vw, 34px);
}

.improvement-card {
    padding: clamp(24px, 4vw, 34px);
    background:
        linear-gradient(145deg, rgba(245, 166, 35, 0.13), rgba(191, 208, 220, 0.055)),
        rgba(8, 22, 34, 0.84);
    color: var(--warm-white);
}

.improvement-card h3 {
    max-width: 420px;
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 500;
    line-height: 1;
}

.improvement-card p {
    max-width: 470px;
    margin: 0;
    color: var(--light-steel);
    font-size: 1.02rem;
}

.poster-card {
    overflow: hidden;
    min-height: 380px;
}

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

.automation-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 260px;
    padding: clamp(24px, 4vw, 32px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(30, 52, 71, 0.72), rgba(6, 20, 34, 0.9)),
        var(--panel-solid);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.automation-card p {
    margin: 0;
    color: var(--light-steel);
}

.automation-card .button {
    justify-self: start;
    margin-top: 10px;
}

.automation-detail .outcome-panel p {
    color: var(--light-steel);
    font-size: 1.05rem;
}

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

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

.detail-card {
    min-height: 220px;
    padding: clamp(24px, 4vw, 32px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(30, 52, 71, 0.72), rgba(6, 20, 34, 0.9)),
        var(--panel-solid);
}

.detail-card p {
    margin: 0;
    color: var(--light-steel);
}

.compact-list {
    margin-top: 20px;
}

.compact-top {
    margin-top: 14px;
}

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

.video-frame {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-solid);
    box-shadow: var(--shadow);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--warm-white);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 14px;
    height: 14px;
    border: 1px solid var(--amber);
    border-radius: 50%;
    background: radial-gradient(circle, var(--amber) 0 32%, transparent 36%);
}

.pricing-panels {
    display: grid;
    gap: 14px;
}

.price-panel {
    padding: clamp(26px, 4vw, 34px);
    color: var(--warm-white);
    box-shadow: var(--shadow);
}

.price-label,
.price-note {
    color: var(--light-steel);
}

.price {
    max-width: 540px;
    margin: 8px 0 14px;
    color: var(--amber);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.98;
}

.support-panel {
    background:
        linear-gradient(145deg, rgba(24, 165, 164, 0.12), rgba(191, 208, 220, 0.04)),
        rgba(8, 22, 34, 0.78);
}

.support-price {
    color: var(--light-steel);
}

.lead-form {
    display: grid;
    gap: 18px;
    padding: clamp(22px, 4vw, 34px);
    box-shadow: var(--shadow);
}

.lead-form-status {
    display: grid;
}

.lead-form-body {
    display: grid;
    gap: 18px;
    overflow: hidden;
    transition: opacity 220ms ease, transform 220ms ease, max-height 260ms ease, margin 220ms ease;
    max-height: 1400px;
}

.lead-form.is-submitting .lead-form-body {
    opacity: 0.6;
}

.lead-form.is-submitted .lead-form-body {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    margin: 0;
    pointer-events: none;
}

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

label {
    display: grid;
    gap: 8px;
    color: var(--warm-white);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(191, 208, 220, 0.3);
    border-radius: 4px;
    background: rgba(3, 9, 16, 0.74);
    color: var(--warm-white);
    font: inherit;
    font-weight: 500;
}

input,
select {
    min-height: 48px;
    padding: 0 13px;
}

textarea {
    min-height: 124px;
    padding: 13px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(245, 166, 35, 0.18);
    border-color: var(--amber);
}

select option {
    background: var(--deep-navy);
    color: var(--warm-white);
}

.form-button {
    width: 100%;
    min-height: 54px;
}

.form-button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.form-small {
    margin: -4px 0 0;
    color: var(--light-steel);
    font-size: 0.9rem;
    text-align: center;
}

.form-small a {
    color: var(--amber-soft);
    font-weight: 900;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice {
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 800;
}

.notice ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.notice.success {
    background: rgba(24, 165, 164, 0.16);
    color: #bff7f5;
    border: 1px solid rgba(24, 165, 164, 0.35);
}

.notice.error {
    background: rgba(245, 88, 35, 0.12);
    color: #ffd7c6;
    border: 1px solid rgba(245, 88, 35, 0.34);
}

.newsletter-band {
    padding: 0 clamp(18px, 4vw, 56px) 32px;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: center;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(24, 165, 164, 0.1), rgba(245, 166, 35, 0.06)),
        rgba(8, 22, 34, 0.82);
    box-shadow: var(--shadow);
}

.newsletter-copy p:last-child {
    margin-bottom: 0;
    color: var(--light-steel);
}

.newsletter-form {
    display: grid;
    gap: 14px;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.newsletter-button {
    min-height: 48px;
    white-space: nowrap;
}

.newsletter-small {
    margin: 0;
    color: var(--light-steel);
    font-size: 0.9rem;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(18px, 4vw, 56px);
    color: var(--light-steel);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--amber-soft);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

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

    .newsletter-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        position: static;
    }

    .mission-grid,
    .pricing-grid,
    .split,
    .form-section,
    .field-grid,
    .automation-grid,
    .detail-grid,
    .detail-grid.three,
    .two-column,
    .newsletter-fields {
        grid-template-columns: 1fr;
    }

    .mission-strip,
    .system-grid,
    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

    .mission-strip span {
        justify-content: start;
    }

    .poster-card {
        min-height: 240px;
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .site-header {
        gap: 14px;
    }

    .brand-text {
        letter-spacing: 0.12em;
    }

    .brand-text small {
        display: none;
    }

    .nav-links {
        gap: 12px;
        font-size: 0.66rem;
    }

    .nav-cta {
        padding: 8px 10px;
    }

    .hero {
        padding-top: 42px;
    }

    h1 {
        font-size: clamp(2.85rem, 14vw, 4.5rem);
    }

    .button {
        width: 100%;
    }

    .system-card,
    .step,
    .price-panel,
    .lead-form,
    .outcome-panel,
    .improvement-card,
    .detail-card {
        padding: 20px;
    }
}
