:root {
  --navy: #061d3d;
  --navy-deep: #02142f;
  --ink: #081a34;
  --muted: #667284;
  --line: #dfe5ec;
  --paper: #ffffff;
  --offwhite: #f7f8fa;
  --silver: #a8b1bd;
  --shadow: 0 18px 54px rgba(3, 19, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(0);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    height 280ms ease;
  z-index: 50;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-compact {
  box-shadow: 0 18px 55px rgba(3, 19, 43, 0.08);
  height: 66px;
}

.brand-link {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 250px;
}

.brand-symbol {
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.brand-wordmark,
.footer-wordmark {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  color: #23324a;
  display: flex;
  font-size: 14px;
  gap: clamp(22px, 3vw, 44px);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--navy);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav {
  display: none;
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 236, 0.92);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(3, 19, 43, 0.08);
  color: var(--navy);
  height: 54px;
  padding: 0;
  position: fixed;
  right: clamp(18px, 4vw, 56px);
  top: 12px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  width: 54px;
  z-index: 140;
}

.switch {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.switch .wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 28px;
  justify-content: center;
  position: relative;
  transition: transform 220ms ease;
  width: 28px;
}

.switch .row {
  align-items: flex-start;
  display: flex;
  height: 50%;
  justify-content: space-between;
  width: 100%;
}

.switch .row-bottom {
  align-items: flex-end;
}

.switch .dot {
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  height: 7px;
  transition:
    border-color 200ms ease,
    height 220ms ease,
    width 220ms ease,
    border-radius 220ms ease;
  width: 7px;
}

.switch .row-horizontal {
  align-items: center;
  display: flex;
  height: fit-content;
  justify-content: space-between;
  position: absolute;
  transition: width 220ms ease;
  width: 100%;
}

.switch .row-vertical {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  position: absolute;
  transition: height 220ms ease;
  width: fit-content;
}

.menu-toggle:hover {
  border-color: rgba(6, 29, 61, 0.28);
  box-shadow: 0 18px 44px rgba(3, 19, 43, 0.14);
  transform: translateY(-1px);
}

.menu-toggle:hover .wrapper .row-horizontal {
  width: 74px;
}

.menu-toggle:hover .wrapper .row-vertical {
  height: 74px;
}

.menu-toggle:hover .wrapper .row-vertical .middle-dot {
  border-radius: 5px;
  height: 28px;
}

.menu-toggle:hover .wrapper .row-horizontal .middle-dot-horizontal {
  border-radius: 5px;
  width: 28px;
}

.menu-toggle.is-open {
  background: #fff;
  border-color: rgba(6, 29, 61, 0.16);
  box-shadow: none;
}

.menu-toggle.is-open .wrapper {
  transform: rotate(45deg) scale(1.12);
}

.menu-toggle.is-open .wrapper .row-vertical {
  height: 74px;
}

.menu-toggle.is-open .wrapper .row-horizontal {
  width: 74px;
}

.menu-toggle.is-open .wrapper .row-vertical .middle-dot {
  border-radius: 5px;
  height: 28px;
}

.menu-toggle.is-open .wrapper .row-horizontal .middle-dot-horizontal {
  border-radius: 5px;
  width: 28px;
}

.menu-overlay {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy-deep);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(82px, 10vw, 130px) clamp(24px, 8vw, 120px) clamp(42px, 6vw, 80px);
  pointer-events: none;
  position: fixed;
  transform: translateY(-10px);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 120;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-open {
  overflow: hidden;
}

.menu-overlay-inner {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  max-width: 1040px;
  width: 100%;
}

.menu-kicker {
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  margin: 0;
  text-transform: uppercase;
}

.menu-links {
  display: grid;
  gap: 1px;
}

.menu-links a {
  align-items: baseline;
  border-top: 1px solid var(--line);
  color: var(--navy-deep);
  display: grid;
  font-size: clamp(38px, 7vw, 86px);
  font-weight: 760;
  grid-template-columns: 56px minmax(0, 1fr);
  letter-spacing: 0;
  line-height: 1;
  opacity: 0;
  padding: clamp(15px, 2vw, 24px) 0;
  transform: translateY(18px);
  transition:
    color 220ms ease,
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-overlay.is-open .menu-links a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(90ms + (var(--i) * 55ms));
}

.menu-links a span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.menu-links a:hover {
  color: var(--navy);
}

.menu-contact {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 760;
  width: fit-content;
}

.section-grid,
.hero-simple,
.products,
.philosophy,
.detail-section,
.external-cta-wrap {
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}

.section-grid {
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1280px;
}

.hero,
.page-hero {
  padding-bottom: clamp(88px, 10vw, 132px);
  padding-top: clamp(150px, 16vw, 210px);
}

.hero-simple {
  max-width: 1280px;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.84) 100%),
    url("hofinger-office-background.png") center / cover no-repeat;
  margin: 0;
  max-width: none;
  min-height: 100vh;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
  position: relative;
}

.home-hero .hero-copy {
  margin: 0 auto;
  max-width: 1280px;
}

.hero-copy {
  max-width: 900px;
}

.page-hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1280px;
}

.page-intro {
  max-width: 780px;
}

.eyebrow {
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  color: var(--navy-deep);
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 28px;
  max-width: 980px;
}

h2 {
  color: var(--navy-deep);
  font-size: clamp(34px, 4.4vw, 60px);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 0;
  max-width: 920px;
}

h3 {
  color: var(--navy-deep);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-subline,
.page-intro p,
.about-copy p,
.detail-list p,
.philosophy p,
.imprint-details,
.footer-brand p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 760px;
}

.hero-subline {
  max-width: 780px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.button {
  align-items: center;
  background-image: linear-gradient(var(--button-hover-bg), var(--button-hover-bg));
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  border: 1px solid var(--navy);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  height: 58px;
  justify-content: center;
  min-width: 190px;
  overflow: hidden;
  padding: 0 28px;
  position: relative;
  transition:
    color 240ms ease,
    background-size 340ms cubic-bezier(0.76, 0, 0.24, 1),
    box-shadow 220ms ease,
    transform 220ms ease;
}

.button::after {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  content: "";
  height: 18px;
  left: var(--x, 50%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: var(--y, 50%);
  transform: translate(-50%, -50%) scale(1);
  transition:
    transform 520ms ease,
    opacity 520ms ease;
  width: 18px;
}

.button.is-rippling::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(16);
}

.button:hover {
  background-size: 100% 100%;
  box-shadow: 0 18px 42px rgba(3, 19, 43, 0.14);
  transform: translateY(-2px);
}

.button-primary {
  --button-hover-bg: #fff;
  background-color: var(--navy);
  color: #fff;
}

.button-primary:hover {
  color: var(--navy);
}

.button-secondary {
  --button-hover-bg: var(--navy);
  background-color: #fff;
  color: var(--navy);
}

.button-secondary:hover {
  color: #fff;
}

.products {
  background: var(--navy);
  border-bottom: 1px solid var(--navy);
  border-top: 1px solid var(--navy);
  display: block;
  max-width: none;
  padding-bottom: clamp(78px, 9vw, 120px);
  padding-top: clamp(78px, 9vw, 120px);
}

.section-heading {
  margin: 0 auto 44px;
  max-width: 1280px;
}

.products .eyebrow,
.products h2 {
  color: #fff;
}

.product-grid {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 1280px;
}

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

.product-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 308px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  position: relative;
  text-align: left;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    transform 240ms ease;
  z-index: 0;
}

.product-card::before {
  background: var(--navy-deep);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.product-card:hover {
  border-color: #fff;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.2);
  color: #fff;
  transform: translateY(-4px);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-kicker {
  align-self: flex-end;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.product-icon {
  align-items: center;
  border: 1px solid currentColor;
  display: flex;
  font-size: 13px;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  margin-bottom: 28px;
  width: 42px;
}

.product-card strong {
  display: block;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
  margin-bottom: 20px;
  max-width: 650px;
}

.product-card span:last-child {
  color: inherit;
  font-size: 17px;
  max-width: 620px;
  opacity: 0.78;
}

.philosophy {
  background: #fff;
  padding-bottom: clamp(78px, 9vw, 120px);
  padding-top: clamp(78px, 9vw, 120px);
}

.philosophy-inner,
.detail-list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.philosophy article,
.detail-list article {
  border-left: 1px solid var(--line);
  padding: 8px clamp(26px, 3vw, 44px) 14px;
}

.philosophy span,
.detail-list span {
  color: var(--navy);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.about {
  align-items: center;
  background: var(--navy);
  color: #fff;
  max-width: none;
  padding-bottom: clamp(78px, 9vw, 120px);
  padding-top: clamp(78px, 9vw, 120px);
}

.about .eyebrow,
.about h2,
.about h3,
.about-copy p {
  color: #fff;
}

.about-copy p {
  margin-bottom: 20px;
  opacity: 0.82;
}

.about-photo {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.about-photo img {
  display: block;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.detail-section {
  background: var(--navy);
  color: #fff;
  max-width: none;
  padding-bottom: clamp(78px, 9vw, 120px);
  padding-top: clamp(78px, 9vw, 120px);
}

.detail-section h2,
.detail-section p,
.detail-section span {
  color: #fff;
}

.detail-section p {
  opacity: 0.82;
}

.detail-section article {
  border-left-color: rgba(255, 255, 255, 0.22);
}

.external-cta-wrap {
  background: #fff;
  padding-bottom: clamp(78px, 9vw, 120px);
  padding-top: clamp(78px, 9vw, 120px);
}

.external-cta {
  background-color: var(--navy);
  background-image: linear-gradient(#fff, #fff);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  border: 1px solid var(--navy);
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  transition:
    background-size 380ms cubic-bezier(0.76, 0, 0.24, 1),
    color 260ms ease,
    transform 220ms ease;
}

.external-cta:hover {
  background-size: 100% 100%;
  color: var(--navy);
  transform: translateY(-3px);
}

.external-cta span {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.external-cta strong {
  font-size: clamp(38px, 6vw, 92px);
  line-height: 0.95;
}

.form-choice {
  align-items: start;
  background: #fff;
  padding-bottom: clamp(78px, 9vw, 120px);
  padding-top: clamp(78px, 9vw, 120px);
}

.choice-grid {
  display: grid;
  gap: 18px;
}

.choice-card {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: block;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
  transition:
    color 260ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
  z-index: 0;
}

.choice-card::before {
  background: var(--navy);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.choice-card > * {
  position: relative;
  z-index: 1;
}

.choice-card:hover {
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.choice-card:hover::before {
  transform: scaleX(1);
}

.choice-card span {
  border: 1px solid currentColor;
  display: inline-block;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  padding: 5px 8px;
  text-transform: uppercase;
}

.choice-card strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.choice-card p {
  color: inherit;
  margin-bottom: 0;
  opacity: 0.76;
}

.form-page {
  align-items: start;
  background: var(--navy);
  color: #fff;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  min-height: 100vh;
  padding: clamp(130px, 14vw, 190px) clamp(24px, 5vw, 72px) clamp(72px, 8vw, 110px);
}

.compact-form-page {
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.9fr);
}

.form-intro {
  max-width: 640px;
  position: sticky;
  top: 120px;
}

.form-intro .eyebrow,
.form-intro h1,
.form-intro p {
  color: #fff;
}

.form-intro p {
  font-size: clamp(18px, 1.6vw, 21px);
  opacity: 0.78;
}

.premium-form {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 48px);
}

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

.premium-form label,
.premium-form legend {
  color: var(--navy);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 9px;
  letter-spacing: 0.02em;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  background: var(--offwhite);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.premium-form textarea {
  resize: vertical;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: var(--navy);
  outline: 2px solid rgba(6, 29, 61, 0.12);
}

.premium-form fieldset {
  border: 1px solid var(--line);
  margin: 0;
  padding: 22px;
}

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

.option-grid label {
  align-items: center;
  background: var(--offwhite);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: row;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  min-height: 48px;
  padding: 10px 12px;
}

.option-grid input {
  min-height: auto;
  width: auto;
}

.hp-field {
  display: none !important;
}

.flow-hidden-radio {
  display: none;
}

.form-submit {
  width: fit-content;
}

.thanks-page {
  align-items: center;
  background: var(--navy);
  color: #fff;
  display: flex;
  min-height: 100vh;
  padding: clamp(48px, 8vw, 90px) clamp(24px, 5vw, 72px);
}

.thanks-card {
  margin: 0 auto;
  max-width: 840px;
  text-align: center;
}

.thanks-card .eyebrow,
.thanks-card h1,
.thanks-card p {
  color: #fff;
}

.thanks-card p {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  max-width: 680px;
  opacity: 0.78;
}

.thanks-card .button-primary {
  --button-hover-bg: var(--navy);
  background-color: #fff;
  border-color: #fff;
  color: var(--navy);
}

.thanks-card .button-primary:hover {
  color: #fff;
}

.startklar-body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)),
    url("hofinger-office-background.png") center / cover fixed no-repeat;
  color: var(--ink);
  overflow: hidden;
}

.flow-form {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 56%, rgba(255, 255, 255, 0.7) 100%),
    url("hofinger-office-background.png") center / cover no-repeat;
  min-height: 100vh;
  position: relative;
}

.flow-brand {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  gap: 12px;
  left: clamp(22px, 4vw, 58px);
  position: fixed;
  top: clamp(22px, 4vw, 42px);
  z-index: 20;
}

.flow-brand img {
  height: 30px;
  object-fit: contain;
  width: 30px;
}

.flow-brand span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.flow-step {
  align-items: center;
  background: transparent;
  display: flex;
  inset: 0;
  justify-content: center;
  min-height: 100vh;
  opacity: 0;
  padding: clamp(92px, 9vw, 132px) clamp(64px, 10vw, 150px);
  pointer-events: none;
  position: fixed;
  transform: translateX(42px);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.76, 0, 0.24, 1);
}

.flow-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 5;
}

.flow-step.is-exiting-left {
  transform: translateX(-42px);
}

.flow-panel {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  max-width: 920px;
  width: min(920px, 100%);
}

.flow-panel-wide {
  max-width: 1080px;
  width: min(1080px, 100%);
}

.flow-kicker {
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.flow-panel h1,
.flow-panel h2 {
  color: var(--navy-deep);
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
  margin: 0;
  max-width: 920px;
}

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

.flow-input-grid label,
.flow-textarea {
  color: var(--navy);
  display: grid;
  font-size: 12px;
  font-weight: 850;
  gap: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow-input-grid input,
.flow-textarea textarea {
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 650;
  min-height: 64px;
  outline: 0;
  padding: 10px 0 14px;
  text-transform: none;
  width: 100%;
}

.flow-textarea textarea {
  line-height: 1.25;
  min-height: 160px;
  resize: vertical;
}

.flow-input-grid input:focus,
.flow-textarea textarea:focus {
  border-bottom-color: var(--navy);
}

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

.color-picker-grid label {
  align-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  cursor: pointer;
  display: grid;
  gap: 18px;
  min-height: 190px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.color-picker-grid label:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.color-picker-grid span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.color-picker-grid input {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 74px;
  padding: 0;
  width: 100%;
}

.color-picker-grid input::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-picker-grid input::-webkit-color-swatch {
  border: 1px solid var(--line);
}

.color-picker-grid input::-moz-color-swatch {
  border: 1px solid var(--line);
}

.color-picker-grid strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tile-options,
.font-options,
.yes-no-options {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tile-options label,
.yes-no-options label,
.font-options label {
  align-items: center;
  background-color: #fff;
  background-image: linear-gradient(var(--navy), var(--navy));
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 760;
  gap: 22px;
  justify-content: space-between;
  min-height: clamp(86px, 10vw, 132px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px);
  position: relative;
  transition:
    background-size 320ms cubic-bezier(0.76, 0, 0.24, 1),
    border-color 240ms ease,
    color 240ms ease,
    transform 220ms ease;
}

.tile-options label:hover,
.yes-no-options label:hover,
.font-options label:hover,
.tile-options label:has(input:checked),
.yes-no-options label:has(input:checked),
.font-options label:has(input:checked) {
  background-size: 100% 100%;
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.tile-options input,
.yes-no-options input,
.font-options input {
  appearance: none;
  align-self: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: block;
  flex: 0 0 auto;
  height: 14px;
  margin: 0;
  order: 2;
  width: 14px;
}

.tile-options input:checked,
.yes-no-options input:checked,
.font-options input:checked {
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.multi-options label {
  min-height: clamp(74px, 8vw, 112px);
}

.font-options label {
  min-height: clamp(94px, 9vw, 130px);
}

.font-modern {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.font-elegant {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500 !important;
}

.font-editorial {
  font-family: "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0.03em;
}

.font-friendly {
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 650 !important;
}

.font-technical {
  font-family: "Courier New", monospace;
  font-weight: 700 !important;
}

.yes-no-options {
  grid-template-columns: repeat(2, minmax(180px, 320px));
}

.yes-no-options label {
  justify-content: center;
  min-height: clamp(128px, 14vw, 190px);
  text-align: center;
}

.yes-no-options input {
  margin-left: 18px;
}

.conditional-field {
  display: grid;
  gap: 22px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-12px);
  transition:
    max-height 360ms ease,
    opacity 260ms ease,
    transform 320ms ease;
}

.conditional-field.is-visible {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

.conditional-field label {
  color: var(--navy);
  display: grid;
  font-size: 12px;
  font-weight: 850;
  gap: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.conditional-field input {
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: clamp(24px, 3vw, 40px);
  min-height: 66px;
  outline: 0;
}

.flow-alt-button,
.flow-skip {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  justify-self: start;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.flow-alt-button {
  border: 1px solid var(--line);
  color: var(--navy);
  min-height: 58px;
  padding: 0 22px;
  text-decoration: none;
}

.flow-alt-button:hover,
.flow-skip:hover {
  color: var(--navy-deep);
}

.flow-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.flow-arrow {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 30px;
  height: 76px;
  justify-content: center;
  opacity: 0.34;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: 76px;
  z-index: 20;
}

.flow-arrow:hover {
  opacity: 1;
}

.flow-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.12;
}

.flow-arrow-left {
  left: clamp(10px, 2vw, 28px);
}

.flow-arrow-left:hover {
  transform: translate(-4px, -50%);
}

.flow-arrow-right {
  right: clamp(10px, 2vw, 28px);
}

.flow-arrow-right:hover {
  transform: translate(4px, -50%);
}

.flow-progress {
  align-items: center;
  bottom: clamp(24px, 4vw, 44px);
  display: flex;
  gap: 12px;
  justify-content: center;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 20;
}

.flow-dot {
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 7px;
  opacity: 0.34;
  padding: 0;
  position: relative;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: 7px;
}

.flow-dot::after {
  border: 1px solid var(--ink);
  border-radius: 999px;
  content: "";
  inset: -6px;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
}

.flow-dot.is-active {
  opacity: 1;
}

.flow-dot.is-active::after {
  opacity: 1;
}

.flow-dot:disabled {
  cursor: not-allowed;
}

.flow-error {
  color: #9d1c1c;
  font-size: 14px;
  font-weight: 750;
  min-height: 22px;
}

.contact-band {
  align-items: center;
  background: var(--navy);
  color: #fff;
  max-width: none;
  padding-bottom: clamp(78px, 9vw, 110px);
  padding-top: clamp(78px, 9vw, 110px);
}

.contact-band .eyebrow,
.contact-band h2 {
  color: #fff;
}

.contact-band .button-primary {
  --button-hover-bg: var(--navy);
  background-color: #fff;
  border-color: #fff;
  color: var(--navy);
}

.contact-band .button-primary:hover {
  color: #fff;
}

.contact-band .button-secondary {
  --button-hover-bg: #fff;
  background-color: var(--navy);
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
}

.contact-band .button-secondary:hover {
  color: var(--navy);
}

.imprint-details {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
  padding-left: clamp(28px, 4vw, 52px);
}

.imprint-details a {
  color: var(--navy);
  font-weight: 850;
}

.site-footer {
  background: var(--navy-deep);
  color: #fff;
  display: grid;
  gap: 42px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  padding: 64px clamp(24px, 5vw, 72px) 54px;
}

.footer-wordmark {
  color: #fff;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 14px;
  margin-top: 12px;
}

.toast {
  background: var(--navy);
  bottom: 26px;
  box-shadow: var(--shadow);
  color: #fff;
  left: 50%;
  opacity: 0;
  padding: 14px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: 60;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .section-grid,
  .form-choice,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-grid-large,
  .philosophy-inner,
  .detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .imprint-details {
    border-left: 0;
    padding-left: 0;
  }

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

  .form-intro {
    position: static;
  }

  .flow-step {
    padding-left: clamp(48px, 8vw, 86px);
    padding-right: clamp(48px, 8vw, 86px);
  }

  .tile-options,
  .font-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-link {
    min-width: 0;
  }

  .brand-wordmark {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .product-grid-large,
  .philosophy-inner,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .external-cta {
    display: grid;
    gap: 24px;
  }

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

  .form-submit {
    width: 100%;
  }

  .startklar-body {
    overflow: auto;
  }

  .flow-brand span {
    display: none;
  }

  .flow-step {
    min-height: 100svh;
    padding: 94px 24px 82px;
  }

  .flow-input-grid,
  .color-picker-grid,
  .yes-no-options {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    bottom: 18px;
    font-size: 24px;
    height: 52px;
    top: auto;
    transform: none;
    width: 52px;
  }

  .flow-arrow-left,
  .flow-arrow-right {
    left: auto;
    right: auto;
  }

  .flow-arrow-left {
    left: 16px;
  }

  .flow-arrow-right {
    right: 16px;
  }

  .flow-arrow-left:hover,
  .flow-arrow-right:hover {
    transform: none;
  }

  .flow-progress {
    bottom: 40px;
    max-width: calc(100vw - 150px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (hover: none) {
  .site-nav a:hover::after {
    transform: scaleX(0);
  }

  .button:hover,
  .external-cta:hover {
    background-size: 0 100%;
    box-shadow: none;
    transform: none;
  }

  .button-primary:hover,
  .contact-band .button-secondary:hover,
  .external-cta:hover {
    color: #fff;
  }

  .button-secondary:hover,
  .contact-band .button-primary:hover,
  .thanks-card .button-primary:hover {
    color: var(--navy);
  }

  .product-card:hover,
  .choice-card:hover,
  .color-picker-grid label:hover {
    box-shadow: none;
    color: var(--ink);
    transform: none;
  }

  .product-card:hover::before,
  .choice-card:hover::before {
    transform: scaleX(0);
  }

  .tile-options label:hover,
  .yes-no-options label:hover,
  .font-options label:hover {
    background-size: 0 100%;
    border-color: var(--line);
    color: var(--ink);
    transform: none;
  }

  .tile-options label:has(input:checked),
  .yes-no-options label:has(input:checked),
  .font-options label:has(input:checked) {
    background-size: 100% 100%;
    border-color: var(--navy);
    color: #fff;
  }

  .flow-arrow:hover,
  .flow-arrow-left:hover,
  .flow-arrow-right:hover {
    opacity: 0.34;
    transform: none;
  }

  .menu-toggle:hover {
    box-shadow: 0 14px 36px rgba(3, 19, 43, 0.08);
    transform: none;
  }

  .menu-toggle:hover .wrapper .row-horizontal {
    width: 100%;
  }

  .menu-toggle:hover .wrapper .row-vertical {
    height: 100%;
  }

  .menu-toggle:hover .wrapper .row-vertical .middle-dot {
    border-radius: 50%;
    height: 7px;
  }

  .menu-toggle:hover .wrapper .row-horizontal .middle-dot-horizontal {
    border-radius: 50%;
    width: 7px;
  }

  .menu-toggle.is-open .wrapper .row-vertical {
    height: 74px;
  }

  .menu-toggle.is-open .wrapper .row-horizontal {
    width: 74px;
  }

  .menu-toggle.is-open .wrapper .row-vertical .middle-dot {
    border-radius: 5px;
    height: 28px;
  }

  .menu-toggle.is-open .wrapper .row-horizontal .middle-dot-horizontal {
    border-radius: 5px;
    width: 28px;
  }
}

@media (max-width: 760px) {
  body {
    line-height: 1.5;
  }

  .site-header {
    height: 62px;
    padding: 0 18px;
  }

  .menu-toggle {
    height: 48px;
    right: 16px;
    top: max(10px, env(safe-area-inset-top));
    width: 48px;
  }

  .switch .wrapper {
    height: 25px;
    width: 25px;
  }

  .switch .dot {
    height: 6px;
    width: 6px;
  }

  .menu-toggle.is-open .wrapper {
    transform: rotate(45deg) scale(1.08);
  }

  .menu-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: calc(88px + env(safe-area-inset-top)) 20px calc(34px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }

  .menu-overlay-inner {
    gap: 26px;
    min-height: calc(100svh - 122px);
  }

  .menu-links a {
    font-size: clamp(34px, 12vw, 58px);
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px 0;
  }

  .menu-contact {
    font-size: 17px;
    margin-top: auto;
    overflow-wrap: anywhere;
  }

  .site-header.is-compact {
    height: 58px;
  }

  .brand-symbol {
    height: 24px;
    width: 24px;
  }

  .brand-wordmark {
    font-size: 10px;
    letter-spacing: 0.16em;
    max-width: calc(100vw - 72px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .page-hero {
    padding-bottom: 68px;
    padding-top: 116px;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 54%, rgba(255, 255, 255, 0.92) 100%),
      url("hofinger-office-background.png") center top / cover no-repeat;
    min-height: 88svh;
  }

  .section-grid,
  .hero-simple,
  .products,
  .philosophy,
  .detail-section,
  .external-cta-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.03;
    margin-bottom: 22px;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.06;
  }

  h3 {
    font-size: 24px;
  }

  .hero-subline,
  .page-intro p,
  .about-copy p,
  .detail-list p,
  .philosophy p,
  .imprint-details,
  .footer-brand p {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions,
  .flow-actions {
    align-items: stretch;
    display: grid;
    gap: 12px;
  }

  .button,
  .flow-alt-button {
    min-height: 54px;
    min-width: 0;
    width: 100%;
  }

  .product-card,
  .choice-card,
  .external-cta {
    min-height: auto;
    padding: 28px 22px;
  }

  .product-card strong,
  .external-cta strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .philosophy,
  .about,
  .products,
  .detail-section,
  .form-choice,
  .external-cta-wrap,
  .contact-band {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .philosophy article,
  .detail-list article {
    border-left: 0;
    border-top: 1px solid currentColor;
    padding: 28px 0 0;
  }

  .about-photo img {
    max-height: 440px;
  }

  .site-footer {
    gap: 28px;
    padding: 46px 20px 42px;
  }

  .form-page,
  .compact-form-page {
    gap: 30px;
    min-height: 100svh;
    padding: 104px 20px 54px;
  }

  .premium-form {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    gap: 20px;
    padding: 24px 18px;
  }

  .premium-form fieldset {
    padding: 18px;
  }

  .startklar-body {
    overflow: hidden;
  }

  .flow-form {
    background:
      linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.92)),
      url("hofinger-office-background.png") center top / cover no-repeat;
    min-height: var(--flow-vh, 100svh);
  }

  .flow-brand {
    left: 18px;
    top: max(16px, env(safe-area-inset-top));
  }

  .flow-step {
    align-items: flex-start;
    inset: 0;
    min-height: var(--flow-vh, 100svh);
    overflow-y: auto;
    padding: calc(78px + env(safe-area-inset-top)) 20px calc(108px + env(safe-area-inset-bottom));
    position: fixed;
    -webkit-overflow-scrolling: touch;
  }

  .flow-panel,
  .flow-panel-wide {
    gap: 22px;
    max-width: none;
    padding-top: 4px;
    width: 100%;
  }

  .flow-panel h1,
  .flow-panel h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.03;
  }

  .flow-kicker {
    font-size: 11px;
    margin-bottom: -4px;
  }

  .flow-input-grid,
  .color-picker-grid,
  .tile-options,
  .font-options,
  .yes-no-options {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .flow-input-grid input,
  .flow-textarea textarea,
  .conditional-field input {
    font-size: 22px;
    min-height: 58px;
  }

  .tile-options label,
  .yes-no-options label,
  .font-options label {
    font-size: clamp(21px, 6.6vw, 30px);
    gap: 16px;
    min-height: 76px;
    padding: 20px 18px;
  }

  .yes-no-options label {
    min-height: 112px;
  }

  .tile-options input,
  .yes-no-options input,
  .font-options input {
    height: 16px;
    width: 16px;
  }

  .color-picker-grid label {
    min-height: 142px;
    padding: 20px 18px;
  }

  .color-picker-grid input {
    height: 56px;
  }

  .color-picker-grid strong {
    font-size: 22px;
  }

  .conditional-field.is-visible {
    max-height: 260px;
  }

  .flow-skip {
    min-height: 44px;
  }

  .flow-arrow {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    bottom: calc(18px + env(safe-area-inset-bottom));
    height: 48px;
    opacity: 1;
    width: 48px;
  }

  .flow-progress {
    bottom: calc(38px + env(safe-area-inset-bottom));
    gap: 10px;
    max-width: calc(100vw - 150px);
    overflow: hidden;
  }

  .flow-dot {
    height: 6px;
    width: 6px;
  }

  .flow-dot::after {
    inset: -5px;
  }

  .toast {
    bottom: calc(18px + env(safe-area-inset-bottom));
    max-width: calc(100vw - 32px);
    width: max-content;
  }
}

@media (max-width: 380px) {
  .brand-wordmark {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .flow-panel h1,
  .flow-panel h2 {
    font-size: 32px;
  }

  .tile-options label,
  .font-options label {
    font-size: 21px;
  }
}

.error-body {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    url("hofinger-office-background.png") center / cover no-repeat;
  min-height: 100vh;
}

.error-page {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: clamp(32px, 6vw, 78px);
}

.error-card {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  max-width: 880px;
}

.error-brand {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  gap: 14px;
  width: fit-content;
}

.error-brand img {
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.error-brand span {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.error-code {
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
  margin: clamp(22px, 4vw, 42px) 0 -10px;
}

.error-card h1 {
  color: var(--navy-deep);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  margin: 0;
  max-width: 900px;
}

.error-card p:not(.error-code) {
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  margin: 0;
  max-width: 650px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .error-body {
    background:
      linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)),
      url("hofinger-office-background.png") center top / cover no-repeat;
  }

  .error-page {
    align-items: flex-start;
    min-height: 100svh;
    padding: calc(48px + env(safe-area-inset-top)) 20px calc(42px + env(safe-area-inset-bottom));
  }

  .error-card {
    gap: 22px;
    width: 100%;
  }

  .error-brand span {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .error-card h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

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