@font-face {
  font-family: "Revora Rounded";
  src: url("./assets/fonts/nunito/nunito-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --text: #111111;
  --muted: #6f6f6f;
  --line: rgba(17, 17, 17, 0.1);
  --orange: #f75b1f;
  --orange-deep: #e24b11;
  --shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "SF Pro Text", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

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

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

.page,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.page {
  position: relative;
  padding: 2.5rem 0 3.25rem;
}

/* ── Status pill ── */

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  margin: -0.6rem 0 0.9rem -0.75rem;
  padding: 0.6rem 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 5;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.status-pill:hover .status-pill-label,
.status-pill:focus-visible .status-pill-label {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.status-pill-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  transition: background 400ms ease;
}

.status-pill-dot.degraded {
  background: #f59e0b;
}

.status-pill-dot.outage {
  background: #ef4444;
}

.status-pill-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: status-ping 1.6s ease-out infinite;
}

@keyframes status-ping {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── End status pill ── */

.decor-logo {
  position: fixed;
  z-index: 0;
  opacity: 0.92;
  pointer-events: auto;
}

.decor-logo-left {
  left: -2rem;
  bottom: -2.25rem;
  width: 9rem;
  transform: rotate(-10deg);
  transition: transform 180ms ease-out;
}

.decor-logo-left:hover {
  transform: translate3d(16px, -18px, 0) rotate(-10deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(3.5rem, 5vw, 4.5rem);
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  min-height: calc(100vh - 4rem);
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 590px;
  transform: translateY(-130px);
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 110px 0 -8rem 0;
}

.hero-title-image {
  width: min(560px, calc(100vw - 2rem));
  max-width: none;
  margin-left: -120px;
  transform: translateY(-5px);
}

.hero-app-icon {
  width: 88px;
  height: 88px;
  border-radius: 22%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.14);
  transform: translateY(-20px);
}

h1,
h2,
h3,
.footer-brand strong {
  font-family: "Avenir Next", "SF Pro Display", "Helvetica Neue", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

h1 span {
  display: block;
}

.hero-title {
  font-family: "Revora Rounded", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: clamp(2.45rem, 4.15vw, 3.35rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-text {
  margin: 1.4rem 0 0;
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  min-height: 3.2rem;
  padding: 0 1.55rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button-primary {
  color: #ffffff;
  background: #ef4c29;
  box-shadow: 0 14px 28px rgba(239, 76, 41, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f55c34;
}

.button-primary:active {
  background: #f8714d;
  transform: translateY(1px);
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus-visible,
.button-disabled:active {
  background: #e3e5e8;
  color: #7a818c;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.4rem;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}

.cta-group {
  display: inline-grid;
  justify-items: center;
}

.cta-note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-phone {
  display: grid;
  justify-items: center;
  position: relative;
}

.hero-phone-image {
  display: block;
  width: min(100%, 356px);
  height: auto;
}

.app-flow {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 1.5rem;
}

.section-heading {
  max-width: 520px;
}

.section-heading h2,
.bottom-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 1rem 0 0;
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.flow-steps {
  display: grid;
  gap: 6.5rem;
  margin-top: 4.5rem;
}

.flow-step {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 5.5rem;
  align-items: center;
}

.flow-step-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
}

.flow-step-reverse .flow-phone {
  order: 2;
}

.flow-step-reverse .flow-copy {
  order: 1;
}

.flow-phone {
  display: flex;
  justify-content: flex-start;
}

.flow-step-reverse .flow-phone {
  justify-content: flex-end;
}

.flow-phone img {
  width: min(100%, 310px);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(17, 17, 17, 0.16));
}

.flow-copy {
  max-width: 420px;
}

.flow-step-reverse .flow-copy {
  justify-self: start;
}

.flow-copy h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 3.84vw, 3.18rem);
  line-height: 1;
  letter-spacing: 0;
}

.step-num {
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.step-sep {
  display: inline-block;
  width: 2px;
  height: 0.8em;
  background: var(--line);
  border-radius: 2px;
  flex-shrink: 0;
}

.flow-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.26rem;
  line-height: 1.5;
}

.feature-highlight {
  margin-top: 12.5rem;
}

.feature-highlight .section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.feature-highlight .section-heading p {
  max-width: 42rem;
  margin-inline: auto;
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(1rem, 3vw, 2.25rem);
  max-width: 900px;
  margin: 3.5rem auto 0;
}

.feature-frame {
  display: flex;
  justify-content: center;
}

.feature-frame-center {
  transform: translateY(-1.1rem);
}

.feature-frame img {
  width: min(100%, 280px);
  height: auto;
  filter: drop-shadow(0 28px 60px rgba(17, 17, 17, 0.18));
}

.bottom-cta {
  display: grid;
  justify-items: center;
  margin-top: 12.5rem;
  text-align: center;
}

.bottom-cta .button {
  margin-top: 1.6rem;
}

.bottom-cta h2 {
  font-family: "Revora Rounded", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.mini-island {
  top: 0.55rem;
  width: 4rem;
  height: 0.9rem;
}

.site-footer {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem 0 3.2rem;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.footer-brand strong {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.footer-brand a,
.footer-nav {
  color: var(--muted);
  font-size: 1.08rem;
}

.footer-nav {
  display: inline-flex;
  gap: 1.25rem;
}

.footer-brand a,
.footer-nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 160ms ease, color 160ms ease;
}

.footer-brand a:hover,
.footer-brand a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  text-decoration-color: currentColor;
}

.footer-meta {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}

.imprint-page-body {
  overflow-x: hidden;
  background: #ffffff;
  color: #151515;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
}

.imprint-page {
  width: min(calc(100% - 2rem), 860px);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.imprint-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.imprint-heading {
  margin-bottom: 2rem;
}

.language-switcher {
  display: inline-flex;
  gap: 0.25rem;
  margin-bottom: 1.1rem;
  padding: 0.25rem;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: #ffffff;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  color: #242b36;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  background: #f4f4f5;
}

.language-switcher a[aria-current="page"] {
  background: #151515;
  color: #ffffff;
}

.imprint-heading-row {
  position: relative;
}

.imprint-heading h1 {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.imprint-heading p,
.imprint-section p,
.imprint-section li,
.contact-note {
  color: #555d6b;
  font-size: 1rem;
  line-height: 1.7;
}

.imprint-heading p {
  max-width: 44rem;
  margin: 1rem 0 0;
}

.legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.legal-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  color: #242b36;
  font-size: 0.95rem;
  font-weight: 800;
}

.legal-page-nav a[aria-current="page"] {
  background: #151515;
  color: #ffffff;
}

.imprint-back-link {
  position: absolute;
  top: calc(1.65rem - 18px);
  left: -3.25rem;
  color: #151515;
  font-size: 2rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.imprint-back-link:hover,
.imprint-back-link:focus-visible {
  transform: translateX(-1px);
}

.imprint-section + .imprint-section {
  margin-top: 1.7rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.imprint-section h2 {
  margin: 0 0 0.9rem;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.imprint-section h3 {
  margin: 1.2rem 0 0.55rem;
  color: #242b36;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.imprint-section p,
.imprint-section ul,
.imprint-section ol {
  margin: 0 0 1rem;
}

.imprint-section ul,
.imprint-section ol {
  padding-left: 1.35rem;
}

.imprint-table-wrap {
  margin: 0 0 1rem;
  overflow-x: auto;
}

.imprint-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: #555d6b;
  font-size: 1rem;
  line-height: 1.6;
}

.imprint-table th,
.imprint-table td {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(21, 21, 21, 0.1);
  text-align: left;
  vertical-align: top;
}

.imprint-table th {
  color: #242b36;
  font-weight: 800;
}

.imprint-section a,
.contact-note a {
  color: #ef4c29;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.15em;
  overflow-wrap: anywhere;
  transition: text-decoration-color 160ms ease;
}

.imprint-section .imprint-email-link {
  color: #2563eb;
  cursor: pointer;
}

.imprint-section a:hover,
.imprint-section a:focus-visible,
.contact-note a:hover,
.contact-note a:focus-visible {
  text-decoration-color: currentColor;
}

.contact-form {
  margin-top: 1rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.form-field {
  display: grid;
  gap: 0.5rem;
  color: #242b36;
  font-size: 0.96rem;
  font-weight: 700;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 18px;
  background: #fbfbfb;
  color: #151515;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 11rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(239, 76, 41, 0.2);
  outline-offset: 0;
  border-color: rgba(239, 76, 41, 0.5);
}

.form-submit {
  margin-top: 1.15rem;
  min-height: 3.2rem;
  padding: 0 1.4rem;
  border: 0;
  border-radius: 999px;
  background: #ef4c29;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-status {
  margin: calc(1.5rem + 55px) 0 0;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status[hidden] {
  display: none;
}

.imprint-section .form-status-success {
  color: #166534;
}

.imprint-section .form-status-error {
  color: #991b1b;
}

.contact-note {
  max-width: 42rem;
  margin: 1.4rem 0 0;
}

.contact-form .contact-note {
  font-size: 0.88rem;
  line-height: 1.55;
}

.support-faq-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.support-faq-item {
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
}

.support-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.95rem 0;
  color: #242b36;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.support-faq-item summary::after {
  content: "⌄";
  flex: 0 0 auto;
  color: #ef4c29;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.support-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.support-faq-item p {
  margin: 0 0 1rem;
  transform-origin: top;
}

.support-faq-item[open] p {
  animation: faq-reveal 220ms ease-out;
}

@keyframes faq-reveal {
  from {
    max-height: 0;
    opacity: 0;
    transform: translateY(-0.25rem);
  }

  to {
    max-height: 12rem;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    justify-items: center;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: 40rem;
    transform: translateY(-90px);
  }

  .hero-phone {
    margin-top: 0.5rem;
  }

  .app-flow {
    padding-top: 3rem;
  }

  .flow-steps {
    gap: 5rem;
  }

  .flow-step,
  .flow-step-reverse {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    justify-items: center;
  }

  .flow-step-reverse .flow-phone,
  .flow-step-reverse .flow-copy {
    order: initial;
  }

  .flow-phone,
  .flow-step-reverse .flow-phone {
    justify-content: center;
  }

  .flow-phone img {
    width: min(100%, 290px);
  }

  .flow-copy {
    justify-self: stretch;
    max-width: 40rem;
  }

  .feature-highlight {
    margin-top: 9rem;
  }

  .feature-showcase {
    max-width: 720px;
    margin-top: 3rem;
  }

  .feature-frame img {
    width: min(100%, 240px);
  }

  .bottom-cta {
    margin-top: 9rem;
  }

  .site-footer {
    justify-items: stretch;
  }

  .footer-top {
    display: grid;
    gap: 1rem;
  }

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

  .imprint-card {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 3rem;
  }

  .status-pill {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    gap: 1.8rem;
  }

  .hero-copy {
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-title-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: -1rem auto 2.5rem;
  }

  .hero-title-image {
    order: 1;
    width: min(80%, 320px);
    max-width: 100%;
    transform: scale(1.35);
    transform-origin: center center;
    margin-left: 0;
    margin-top: -15px;
  }

  .hero-app-icon {
    order: 2;
    width: 77px;
    height: 77px;
    transform: none;
    margin-top: -35px;
  }

  .hero-phone-image {
    width: min(100%, 340px);
  }

  .app-flow {
    padding-top: 2.5rem;
  }

  .section-heading h2,
  .bottom-cta h2 {
    font-size: 2.3rem;
  }

  .bottom-cta h2 {
    font-size: 1.75rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .flow-copy p {
    font-size: 1.2rem;
  }

  .flow-steps {
    gap: 4rem;
    margin-top: 3.25rem;
  }

  .flow-step,
  .flow-step-reverse {
    gap: 1.75rem;
  }

  .flow-phone img {
    width: min(100%, 260px);
  }

  .flow-copy h3 {
    font-size: 2.4rem;
  }

  .feature-highlight {
    margin-top: 6.5rem;
  }

  .feature-showcase {
    display: flex;
    gap: 1rem;
    width: calc(100% + 1.5rem);
    max-width: none;
    margin: 2.75rem -0.75rem 0;
    padding: 0 0.75rem 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .feature-frame {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: center;
  }

  .feature-frame img {
    width: min(100%, 240px);
  }

  .feature-frame-center {
    transform: none;
  }

  .bottom-cta {
    margin-top: 6.5rem;
  }

  h1 {
    font-size: 3.6rem;
  }

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

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .imprint-page {
    width: min(calc(100% - 1.5rem), 860px);
    padding-top: 2rem;
  }

  /* Back arrow: show above the title on mobile instead of clipped on the left */
  .imprint-heading-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .imprint-back-link {
    position: static;
    font-size: 1.6rem;
    line-height: 1;
  }

  /* Hide the decorative logo/mascot on mobile */
  .decor-logo {
    display: none;
  }
}
