:root {
 --bg: #ffffff;
 --bg-soft: rgba(255, 255, 255, 0.86);
 --surface: rgba(51, 60, 82, 0.9);
 --surface-soft: rgba(255, 255, 255, 0.88);
 --surface-border: rgba(255, 255, 255, 0.18);
 --text: #1e274a;
 --text-soft: #4d5570;
 --light: #ffffff;
 --accent: #d5a200;
 --accent-dark: #1e274a;
 --accent-wine: #612e37;
 --accent-olive: #736851;
 --accent-sage: #62827f;
 --brand-navy: #333c52;
 --wordmark: #1e274a;
 --shadow: 0 24px 80px rgba(30, 39, 74, 0.12);
 --radius-xl: 32px;
 --radius-lg: 22px;
 --radius-md: 16px;
 --container: 1180px;
}

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

html {
 scroll-behavior: smooth;
}

body {
 margin: 0;
 font-family: "IBM Plex Sans", sans-serif;
 color: var(--text);
 overflow-x: hidden;
 background:
 radial-gradient(circle at top right, rgba(213, 162, 0, 0.08), transparent 24%),
 radial-gradient(circle at left 18%, rgba(51, 60, 82, 0.04), transparent 24%),
 linear-gradient(180deg, #ffffff 0%, #fdfdfd 42%, #fafafa 100%);
}

body::before {
 content: "";
 position: fixed;
 inset: 0;
 pointer-events: none;
 background:
 linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 36%),
 radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.5), transparent 18%);
 opacity: 1;
}

.page-shell {
 position: relative;
 overflow: hidden;
}

.hero {
 min-height: 92vh;
 padding: 28px 24px 80px;
 background:
 linear-gradient(135deg, rgba(30, 39, 74, 0.94), rgba(51, 60, 82, 0.78)),
 url("https://mottoamfluss.at/wp-content/uploads/2026/03/DSC08677.jpg") center/cover;
 color: var(--light);
}

.topbar,
.hero-content,
.section,
.closing-card {
 width: min(100%, var(--container));
 margin: 0 auto;
}

.topbar {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 padding: 10px 0 32px;
}

.brand,
.topbar-links a,
.button {
 text-decoration: none;
}

.brand {
 color: var(--light);
 font-size: 1rem;
 font-weight: 800;
 letter-spacing: 0.16em;
 text-transform: none;
}

.topbar-links {
 display: flex;
 flex-wrap: wrap;
 gap: 18px;
}

.topbar-links a {
 color: rgba(255, 255, 255, 0.86);
 font-size: 0.95rem;
}

.hero-content {
 display: grid;
 grid-template-columns: minmax(0, 1.25fr) minmax(300px, 420px);
 gap: 40px;
 align-items: end;
 padding-top: 80px;
 overflow: hidden;
}

.eyebrow {
 margin: 0 0 14px;
 color: var(--accent);
 text-transform: none;
 letter-spacing: 0.14em;
 font-size: 0.8rem;
 font-weight: 800;
}

.hero .eyebrow {
 color: #c39200;
}

.hero-kicker,
.hero-slogan {
 font-size: 1.05rem;
}

.hero-kicker {
 margin-bottom: 14px;
}

.hero-slogan {
 margin-top: 28px;
 margin-bottom: 26px;
 color: var(--light) !important;
 font-size: 1.18rem;
 font-weight: 800;
 letter-spacing: 0;
 line-height: 1.8;
}

h1,
h2,
h3 {
 margin: 0;
 font-family: "IBM Plex Sans", sans-serif;
 line-height: 0.98;
 letter-spacing: -0.03em;
}

h1 {
 font-size: clamp(4rem, 8vw, 7.2rem);
 margin-bottom: 14px;
}

h2 {
 font-size: clamp(2.5rem, 4vw, 4rem);
 margin-bottom: 20px;
}

h3 {
 font-size: 1.9rem;
}

p,
h1,
h2,
h3,
.hero-text,
.timeline-content,
.hero-card,
.signup-copy,
.intro-copy,
.feature-list li,
.topbar-links a,
.brand {
 overflow-wrap: anywhere;
}

.hero-text,
.intro-copy p,
.timeline-content p,
.signup-copy p,
.closing-card p {
 margin: 0 0 18px;
 font-size: 1.05rem;
 line-height: 1.8;
}

.hero-text {
 max-width: 720px;
 color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
 margin-top: 34px;
}

.button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 56px;
 padding: 0 28px;
 border-radius: 999px;
 border: 1px solid transparent;
 font-weight: 800;
 transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
 background: linear-gradient(135deg, #e0b21b, #c39200);
 color: var(--wordmark);
 box-shadow: 0 16px 40px rgba(213, 162, 0, 0.22);
}

.button-secondary {
 background: rgba(255, 255, 255, 0.08);
 border-color: rgba(255, 255, 255, 0.24);
 color: var(--light);
}

.hero-card {
 width: 100%;
 max-width: 100%;
 padding: 28px;
 border-radius: var(--radius-xl);
 background: rgba(255, 255, 255, 0.92);
 backdrop-filter: blur(18px);
 color: var(--text);
 box-shadow: var(--shadow);
 border: 1px solid rgba(30, 39, 74, 0.08);
}

.hero-card-block {
 display: flex;
 flex-direction: column;
 gap: 6px;
 padding: 18px 0;
 border-bottom: 1px solid rgba(30, 39, 74, 0.08);
}

.hero-card-block:last-child {
 border-bottom: 0;
}

.hero-card .label,
.panel-title {
 font-size: 0.82rem;
 font-weight: 800;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--text-soft);
}

.hero-card strong {
 font-size: 1.15rem;
}

.hero-card-highlight {
 margin-top: 8px;
 padding: 18px;
 border-radius: var(--radius-md);
 background: linear-gradient(180deg, rgba(213, 162, 0, 0.14), rgba(213, 162, 0, 0.06));
}

.section {
 padding: 110px 24px 0;
}

.section-heading {
 max-width: 760px;
 margin-bottom: 42px;
}

.section-heading h2 {
 line-height: 1.02;
}

.intro-grid,
.signup-grid {
 display: grid;
 grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
 gap: 34px;
}

.signup-grid {
 grid-template-columns: minmax(0, 1fr);
 align-items: start;
}

.signup-copy {
 max-width: 46rem;
}

.signup-stack {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
}

.signup-stack .signup-form {
 margin-top: 14px;
}

.feature-panel,
.signup-form,
.closing-card {
 border-radius: var(--radius-xl);
 box-shadow: var(--shadow);
}

.feature-panel {
 padding: 28px;
 background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 250, 0.96));
 border: 1px solid rgba(30, 39, 74, 0.08);
}

.feature-list {
 margin: 18px 0 0;
 padding-left: 20px;
 color: var(--text-soft);
 line-height: 1.9;
}

.feature-list li::marker {
 color: var(--accent);
}

.timeline {
 position: relative;
 display: grid;
 gap: 18px;
}

.timeline::before {
 content: "";
 position: absolute;
 left: 135px;
 top: 0;
 bottom: 0;
 width: 1px;
 background: linear-gradient(180deg, rgba(30, 39, 74, 0.22), rgba(30, 39, 74, 0.06));
}

.timeline-item {
 display: grid;
 grid-template-columns: 110px minmax(0, 1fr);
 gap: 34px;
 align-items: start;
}

.timeline-time {
 position: relative;
 padding-top: 18px;
 font-weight: 800;
 color: var(--wordmark);
}

.timeline-time::after {
 content: "";
 position: absolute;
 top: 24px;
 right: -31px;
 width: 14px;
 height: 14px;
 border-radius: 50%;
 background: var(--accent);
 box-shadow: 0 0 0 8px rgba(213, 162, 0, 0.14);
}

.timeline-content {
 padding: 24px 26px;
 border-radius: var(--radius-lg);
 background: rgba(255, 255, 255, 0.92);
 border: 1px solid rgba(30, 39, 74, 0.08);
 backdrop-filter: blur(12px);
}

.timeline-content p {
 margin-bottom: 0;
 color: var(--text-soft);
}

.timeline-content h3 {
 line-height: 1.15;
}

.signup-form {
 padding: 30px;
 background: linear-gradient(180deg, rgba(30, 39, 74, 0.98), rgba(51, 60, 82, 0.96));
 color: var(--light);
 border: 1px solid rgba(30, 39, 74, 0.12);
 width: 100%;
 min-width: 0;
}

.hubspot-form {
 overflow: hidden;
}

.hubspot-form,
.hubspot-form .hs-form-frame,
.hubspot-form iframe {
 width: 100% !important;
 max-width: 100% !important;
 min-width: 0 !important;
}

.hubspot-form .hs-form-frame {
 min-height: 420px;
}

.hubspot-form iframe {
 display: block;
 border: 0;
}

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

.signup-form label {
 display: flex;
 flex-direction: column;
 gap: 10px;
}

.signup-form label span {
 font-size: 0.95rem;
 font-weight: 700;
}

.full-width {
 grid-column: 1 / -1;
}

input,
textarea {
 width: 100%;
 border: 1px solid rgba(255, 255, 255, 0.14);
 border-radius: 16px;
 background: rgba(255, 250, 245, 0.08);
 color: var(--light);
 padding: 16px 18px;
 font: inherit;
}

input::placeholder,
textarea::placeholder {
 color: rgba(255, 250, 245, 0.5);
}

input:focus,
textarea:focus {
 outline: none;
 border-color: rgba(94, 171, 163, 0.95);
 box-shadow: 0 0 0 4px rgba(94, 171, 163, 0.18);
}

.checkbox-row {
 flex-direction: row;
 align-items: flex-start;
 gap: 14px;
 margin: 22px 0 26px;
}

.checkbox-row input {
 width: 20px;
 height: 20px;
 margin-top: 3px;
 padding: 0;
 border-radius: 6px;
}

.closing {
 padding-bottom: 110px;
}

.closing-card {
 padding: 46px;
 background:
 linear-gradient(135deg, rgba(30, 39, 74, 0.92), rgba(51, 60, 82, 0.8)),
 url("https://images.unsplash.com/photo-1493246507139-91e8fad9978e?auto=format&fit=crop&w=1600&q=80") center/cover;
 color: var(--light);
 text-align: center;
}

.closing-card p {
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
 color: rgba(255, 250, 245, 0.88);
}

@media (max-width: 1080px) {
 .signup-grid {
 grid-template-columns: 1fr;
 gap: 22px;
 }

 .signup-copy {
 max-width: 42rem;
 }
}

@media (max-width: 960px) {
 .hero-content,
 .intro-grid,
 .signup-grid {
 grid-template-columns: 1fr;
 }

 .hero {
 min-height: auto;
 padding-bottom: 64px;
 }

 .hero-content {
 padding-top: 48px;
 gap: 28px;
 }

 .timeline::before {
 left: 22px;
 }

 .timeline-item {
 grid-template-columns: 1fr;
 gap: 10px;
 padding-left: 48px;
 }

 .timeline-time {
 padding-top: 0;
 }

 .timeline-time::after {
 top: 6px;
 left: -33px;
 right: auto;
 }

 h1 {
 font-size: clamp(2.9rem, 9vw, 4.4rem);
 }

 h2 {
 font-size: clamp(2rem, 6.5vw, 3rem);
 }

 h3 {
 font-size: clamp(1.35rem, 4.2vw, 1.7rem);
 }
}

@media (max-width: 720px) {
 .topbar {
 flex-direction: column;
 align-items: flex-start;
 padding-bottom: 20px;
 }

 .topbar-links {
 gap: 12px;
 }

 .section,
 .hero {
 padding-left: 18px;
 padding-right: 18px;
 }

 .form-grid {
 grid-template-columns: 1fr;
 }

 .full-width {
 grid-column: auto;
 }

 .signup-form,
 .feature-panel,
 .hero-card,
 .closing-card {
 padding: 22px;
 }

 h1 {
 font-size: clamp(2.35rem, 11vw, 3.1rem);
 line-height: 1.02;
 }

 h2 {
 font-size: clamp(1.8rem, 8vw, 2.35rem);
 line-height: 1.06;
 }

 h3 {
 font-size: clamp(1.2rem, 5.6vw, 1.5rem);
 line-height: 1.15;
 }

 .eyebrow {
 font-size: 0.72rem;
 line-height: 1.5;
 letter-spacing: 0.11em;
 }

 .hero-content {
 padding-top: 28px;
 gap: 20px;
 }

 .hero-text,
 .intro-copy p,
 .timeline-content p,
 .signup-copy p,
 .closing-card p {
 font-size: 0.98rem;
 line-height: 1.65;
 }

 .hero-card strong {
 font-size: 1.02rem;
 }

 .hero-card-block span,
 .timeline-time,
 .feature-list,
 .topbar-links a {
 font-size: 0.95rem;
 }

 .section {
 padding-top: 72px;
 }

 .closing {
 padding-bottom: 72px;
 }

 .timeline-item {
 padding-left: 38px;
 }

 .timeline::before {
 left: 16px;
 }

 .timeline-time::after {
 left: -27px;
 width: 12px;
 height: 12px;
 }

 .button {
 width: 100%;
 min-height: 52px;
 padding: 0 20px;
 font-size: 0.96rem;
 }

 .hubspot-form .hs-form-frame {
 min-height: 360px;
 }
}

@media (max-width: 420px) {
 .section,
 .hero {
 padding-left: 14px;
 padding-right: 14px;
 }

 .topbar-links {
 width: 100%;
 gap: 10px 14px;
 }

 .hero-card,
 .feature-panel,
 .signup-form,
 .closing-card,
 .timeline-content {
 padding: 18px;
 }

 .hero-text,
 .intro-copy p,
 .timeline-content p,
 .signup-copy p,
 .closing-card p,
 .feature-list {
 font-size: 0.94rem;
 }
}
