:root {
  --ink: #17211f;
  --muted: #687773;
  --paper: #ffffff;
  --mist: #eef4f2;
  --mist-strong: #dceae6;
  --line: #d8e4e0;
  --teal: #0f766e;
  --teal-strong: #0b5f59;
  --teal-deep: #083f3b;
  --sun: #f7c65f;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(10, 52, 48, 0.12);
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 4px;
  color: var(--paper);
  background: var(--teal-deep);
  font-weight: 700;
}

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

.shell,
.header-inner,
.hero-content,
.quick-benefits-inner {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--paper);
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(12, 59, 55, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-brands {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 1.06rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
}

.fraiwerk-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 16px;
  border-left: 1px solid currentColor;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.fraiwerk-brand:hover,
.fraiwerk-brand:focus-visible {
  opacity: 1;
}

.fraiwerk-mark {
  width: 29px;
  height: 22px;
  flex: 0 0 auto;
  fill: var(--sun);
}

.fraiwerk-word > span {
  color: var(--sun);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.site-header.is-scrolled .nav-cta,
.legal-page .nav-cta {
  color: var(--paper);
  border-color: var(--teal);
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 100svh);
  overflow: hidden;
  align-items: center;
  color: var(--paper);
  background: #173a36;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: rgba(8, 31, 28, 0.53);
}

.ai-image-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(5, 29, 26, 0.48);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.2;
  backdrop-filter: blur(5px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 140px 96px;
}

.hero-content > * {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 15px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.teal {
  color: var(--teal);
}

.eyebrow.light {
  color: #bfe2dc;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(3.45rem, 7vw, 6.5rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  line-height: 1.6;
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--teal);
}

.button-primary:hover {
  background: var(--teal-strong);
}

.hero .button-primary {
  color: var(--teal-deep);
  background: var(--sun);
}

.hero .button-primary:hover {
  background: #ffd577;
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(10, 38, 35, 0.28);
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(10, 38, 35, 0.5);
}

.button-outline {
  color: var(--teal-strong);
  border-color: var(--teal);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper);
  background: var(--teal);
}

.button-light {
  color: var(--teal-deep);
  background: var(--paper);
}

.hero-scroll {
  position: absolute;
  right: 50%;
  bottom: 26px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--paper);
  transform: translateX(50%);
}

.hero-scroll svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-benefits {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quick-benefits-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-benefits-inner > div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  color: #33423f;
  font-weight: 700;
  text-align: center;
}

.quick-benefits-inner > div + div {
  border-left: 1px solid var(--line);
}

.icon {
  width: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding-block: 110px;
}

.section-heading {
  width: min(100%, 720px);
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading h2,
.connection-copy h2,
.receiver-copy h2,
.faq-heading h2,
.contact-inner h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading > p:last-child,
.connection-copy > p,
.receiver-copy > p,
.faq-heading > p,
.contact-inner p {
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.step {
  position: relative;
  text-align: center;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 48px;
  left: calc(50% + 50px);
  width: calc(100% - 58px);
  height: 1px;
  content: "";
  background: var(--line);
}

.step-number {
  position: absolute;
  top: -7px;
  left: calc(50% + 25px);
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 94px;
  height: 94px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mist);
}

.step-icon svg {
  width: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3,
.feature h3,
.variant-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.step p,
.feature p {
  margin: 10px auto 0;
  color: var(--muted);
}

.connection-section {
  background: var(--mist);
}

.connection-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 80px;
}

.connection-copy > p {
  margin: 24px 0 0;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #34433f;
  font-weight: 650;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--teal);
  font-size: 0.78rem;
}

.connection-visual {
  display: grid;
  min-height: 300px;
  align-items: center;
  padding: 40px 34px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 0.6fr 1.15fr 0.6fr 1.2fr;
  gap: 10px;
}

.signal-source,
.personal-devices,
.device-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.signal-source,
.personal-devices {
  flex-direction: column;
  color: var(--teal-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.signal-source > svg {
  width: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.device-hub {
  min-height: 120px;
  flex-direction: column;
  padding: 20px 10px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--teal-deep);
}

.device-hub strong {
  font-size: 0.95rem;
}

.signal-line {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

.signal-line span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.signal-line span:nth-child(2) {
  opacity: 0.6;
}

.signal-line span:nth-child(3) {
  opacity: 0.3;
}

.personal-devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.personal-devices div {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mist);
}

.personal-devices svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.personal-devices > span {
  grid-column: 1 / -1;
}

.feature-section {
  padding-block: 90px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.feature {
  padding-top: 22px;
  border-top: 2px solid var(--line);
}

.feature-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.receiver-section {
  overflow: hidden;
  background: #f8fbfa;
}

.receiver-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 90px;
}

.receiver-illustration {
  position: relative;
  min-height: 330px;
}

.camper-shape {
  position: absolute;
  top: 92px;
  left: 10px;
  width: min(95%, 390px);
  height: 170px;
  border: 3px solid var(--teal-deep);
  border-radius: 26px 38px 8px 8px;
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--mist-strong);
}

.camper-shape::before {
  position: absolute;
  top: 26px;
  left: 30px;
  width: 80px;
  height: 50px;
  border-radius: 5px;
  content: "";
  background: #b9ddd8;
}

.camper-window {
  position: absolute;
  top: 26px;
  left: 125px;
  width: 112px;
  height: 50px;
  border-radius: 5px;
  background: #b9ddd8;
}

.camper-door {
  position: absolute;
  right: 38px;
  bottom: 0;
  width: 66px;
  height: 118px;
  border: 3px solid var(--teal-deep);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.wheel {
  position: absolute;
  bottom: -24px;
  width: 47px;
  height: 47px;
  border: 10px solid var(--teal-deep);
  border-radius: 50%;
  background: var(--paper);
}

.wheel.one {
  left: 67px;
}

.wheel.two {
  right: 65px;
}

.receiver-shape {
  position: absolute;
  top: 35px;
  left: 80px;
  width: 18px;
  height: 76px;
  border-radius: 9px;
  background: var(--teal);
  transform: rotate(-4deg);
}

.receiver-shape::after {
  position: absolute;
  bottom: -20px;
  left: 7px;
  width: 2px;
  height: 24px;
  content: "";
  background: var(--teal-deep);
}

.receiver-shape span {
  position: absolute;
  top: -8px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.receiver-wifi {
  position: absolute;
  top: 12px;
  left: 108px;
  width: 58px;
  height: 48px;
  color: var(--teal);
}

.receiver-wifi svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
}

.receiver-copy > p {
  margin: 24px 0 0;
}

.receiver-copy .small-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--sun);
  color: #4a5955;
  background: var(--paper);
  font-size: 0.94rem;
}

.everyday-section {
  color: var(--paper);
  background: var(--teal-deep);
}

.everyday-heading {
  width: min(100%, 820px);
  margin: 0 auto 58px;
  text-align: center;
}

.everyday-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.everyday-heading > p:last-child {
  margin: 24px auto 0;
  color: #c9e1dd;
  font-size: 1.08rem;
  text-wrap: pretty;
}

.usecase-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.usecase {
  min-width: 0;
  padding: 32px 28px;
  background: var(--teal-deep);
}

.usecase svg {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--sun);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usecase h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.35;
}

.usecase p {
  margin: 12px 0 0;
  color: #c9e1dd;
  font-size: 0.95rem;
}

.everyday-note {
  display: grid;
  width: min(100%, 900px);
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
}

.everyday-note strong {
  color: var(--sun);
  font-size: 0.9rem;
}

.everyday-note p {
  margin: 0;
  color: #c9e1dd;
  font-size: 0.9rem;
}

.variants-section {
  background: var(--paper);
}

.variant-grid {
  display: grid;
  width: min(100%, 930px);
  margin-inline: auto;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.variant-card {
  display: flex;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.variant-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.variant-label {
  align-self: flex-start;
  margin: 0 0 17px;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--teal-strong);
  background: var(--mist);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.variant-card.featured .variant-label {
  color: var(--paper);
  background: var(--teal);
}

.variant-card > p:not(.variant-label) {
  margin: 14px 0 0;
  color: var(--muted);
}

.variant-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.variant-card li {
  position: relative;
  padding-left: 26px;
}

.variant-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.variant-card .button {
  width: 100%;
  margin-top: auto;
}

.faq-section {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-heading > p {
  margin-top: 22px;
}

.faq-heading a {
  color: var(--teal-strong);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid #c9d9d5;
}

.faq-list details {
  border-bottom: 1px solid #c9d9d5;
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px;
  font-size: 1.03rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--teal);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  margin: -4px 48px 24px 4px;
  color: var(--muted);
}

.contact-section {
  padding-block: 86px;
  color: var(--paper);
  background: var(--teal-deep);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-inner h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-inner p {
  margin: 17px 0 0;
  color: #c9e1dd;
}

.contact-inner .button {
  flex: 0 0 auto;
}

.site-footer {
  padding-block: 70px 24px;
  color: #4d5b58;
  background: #f8fbfa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand .brand {
  color: var(--ink);
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.92rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #778480;
  font-size: 0.82rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-page {
  background: var(--mist);
}

.legal-main {
  min-height: 70vh;
  padding: 132px 0 100px;
}

.legal-hero {
  width: min(100%, 820px);
  margin-bottom: 48px;
}

.legal-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  width: min(100%, 820px);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 1.28rem;
  line-height: 1.35;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content ul {
  margin: 0 0 16px;
  color: #4b5a56;
}

.legal-content a {
  color: var(--teal-strong);
  font-weight: 650;
}

.legal-note {
  padding: 14px 16px;
  border-left: 3px solid var(--sun);
  background: #fffaf0;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  color: var(--ink);
  background: var(--mist);
}

.error-inner {
  width: min(100%, 620px);
  text-align: center;
}

.error-inner img {
  width: 64px;
  margin: 0 auto 24px;
}

.error-inner h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 1.05;
}

.error-inner p {
  margin: 20px auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 1040px) {
  .connection-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .connection-copy {
    width: min(100%, 700px);
  }

  .connection-visual {
    width: min(100%, 720px);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .receiver-inner {
    gap: 48px;
  }

  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .shell,
  .header-inner,
  .hero-content,
  .quick-benefits-inner {
    width: min(calc(100% - 30px), var(--shell));
  }

  .site-header,
  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 rgba(12, 59, 55, 0.1);
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 16px 30px rgba(10, 52, 48, 0.13);
    opacity: 0;
    transition: max-height 220ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 68px);
    padding: 12px 20px 24px;
    opacity: 1;
  }

  .site-nav.legal-nav {
    position: static;
    display: flex;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    opacity: 1;
  }

  .site-nav.legal-nav a {
    padding: 8px 0;
    border: 0;
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    color: var(--paper);
    border-color: var(--teal);
    background: var(--teal);
  }

  .hero {
    min-height: 760px;
    text-align: center;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-shade {
    background: rgba(7, 30, 27, 0.66);
  }

  .hero-content {
    padding-block: 128px 92px;
  }

  .hero-content > * {
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .hero-lead {
    max-width: 590px;
    font-size: 1.08rem;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .quick-benefits-inner > div {
    min-height: 68px;
    justify-content: flex-start;
    padding: 15px 12px;
    text-align: left;
  }

  .quick-benefits-inner > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .everyday-heading {
    margin-bottom: 44px;
  }

  .steps {
    width: min(100%, 520px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step:not(:last-child)::after {
    top: 96px;
    left: 50%;
    width: 1px;
    height: 38px;
  }

  .connection-copy,
  .receiver-copy,
  .faq-heading {
    text-align: center;
  }

  .check-list {
    width: min(100%, 580px);
    margin-inline: auto;
    text-align: left;
  }

  .receiver-inner,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .receiver-illustration {
    width: min(100%, 470px);
    margin-inline: auto;
  }

  .faq-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .header-brands {
    gap: 10px;
  }

  .fraiwerk-brand {
    padding-left: 10px;
  }

  .legal-page .header-inner {
    gap: 12px;
  }

  .legal-page .fraiwerk-word {
    display: none;
  }

  .legal-page .fraiwerk-mark {
    width: 27px;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 118px;
  }

  .ai-image-label {
    top: 80px;
    right: 12px;
    bottom: auto;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-heading h2,
  .connection-copy h2,
  .receiver-copy h2,
  .faq-heading h2,
  .legal-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .connection-visual {
    min-height: auto;
    padding: 28px 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .signal-line {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .device-hub {
    min-height: 105px;
  }

  .feature-grid,
  .variant-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 32px;
  }

  .variant-card {
    padding: 28px 24px;
  }

  .usecase {
    padding: 28px 24px;
  }

  .everyday-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .receiver-illustration {
    min-height: 280px;
    transform: scale(0.86);
    transform-origin: center;
  }

  .contact-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-main {
    padding-top: 108px;
  }

  .legal-content {
    padding: 28px 22px;
  }
}

@media (max-width: 420px) {
  .shell,
  .header-inner,
  .hero-content,
  .quick-benefits-inner {
    width: min(calc(100% - 24px), var(--shell));
  }

  .brand {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .receiver-illustration {
    width: 116%;
    margin-left: -8%;
  }

  .faq-list summary {
    align-items: flex-start;
    padding-block: 20px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .fraiwerk-word {
    display: none;
  }

  .fraiwerk-mark {
    width: 27px;
  }
}

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

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