:root {
  --paper: #fcfcf9;
  --ink: #172432;
  --muted: #64717c;
  --blue: #2663ed;
  --line: #e3e7e8;
  --soft-blue: #edf3ff;
  --mint: #e5f2e8;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
::selection {
  background: #d3e3ff;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 1.06;
}
h2 {
  font-size: clamp(32px, 4vw, 50px);
  white-space: pre-line;
  font-weight: 600;
}
h3 {
  letter-spacing: -0.025em;
  font-size: 22px;
  line-height: 1.25;
}
p {
  line-height: 1.7;
}
svg {
  flex-shrink: 0;
}
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 40px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.7;
  margin-bottom: 25px;
}
.text-blue {
  color: var(--blue);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  background: var(--ink);
  color: white;
  padding: 15px;
  z-index: 100;
}
.skip-link:focus {
  top: 15px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 252, 249, 0.95);
  border-bottom: 1px solid rgba(227, 231, 232, 0.65);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 29px;
  font-weight: 750;
  letter-spacing: -1.4px;
}
.brand-dot {
  color: var(--blue);
}
.header-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}
.header-nav a,
.footer-links a {
  transition: color 0.2s;
}
.header-nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.language-picker {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}
.language-picker > span {
  font-size: 24px;
}
.language-picker select {
  background: transparent;
  border: 0;
  color: var(--ink);
  max-width: 110px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 12px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  background: var(--blue);
  color: white;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #164ac6;
  transform: translateY(-2px);
}
.button-small {
  padding: 12px 17px;
  font-size: 12px;
  gap: 18px;
}
.button-small svg {
  width: 17px;
  height: 17px;
}
.button:disabled {
  background: #8595b4;
  transform: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}
.text-link:hover {
  color: var(--blue);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 35px;
  min-height: 690px;
  padding-top: 60px;
  padding-bottom: 65px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.status-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65a67b;
  box-shadow: 0 0 0 4px #e8f1e8;
}
.hero h1 {
  font-size: clamp(50px, 5.9vw, 78px);
  margin: 0 0 26px;
  font-weight: 600;
}
.hero h1 > span {
  display: block;
}
.hero-description {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-benefits {
  display: flex;
  gap: 18px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-benefits span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
}
.hero-benefits svg {
  height: 14px;
  width: 14px;
  color: #4e9162;
}
.hero-benefits span + span {
  border-left: 1px solid #cdd3d8;
  padding-left: 18px;
}
.hero-art {
  position: relative;
  height: 540px;
  background: #eaf0f9;
  border-radius: 48% 48% 42% 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art::after {
  content: '';
  position: absolute;
  bottom: 38px;
  width: 230px;
  height: 25px;
  border-radius: 50%;
  background: #566b8225;
  filter: blur(18px);
}
.hero-orbit {
  position: absolute;
  border: 1px solid #d2dfed;
  border-radius: 50%;
  width: 440px;
  height: 440px;
}
.orbit-two {
  width: 350px;
  height: 350px;
}
.hero-phone {
  transform: rotate(-7deg);
  position: relative;
  z-index: 2;
}
.phone {
  position: relative;
  width: 250px;
  aspect-ratio: 9/19.5;
  border: 7px solid #253443;
  border-radius: 38px;
  background: #f9fbfd;
  box-shadow:
    0 22px 35px -24px #18354e80,
    0 0 0 1px #7c8995;
  overflow: hidden;
}
.phone-camera {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  height: 18px;
  width: 70px;
  border-radius: 20px;
  background: #253443;
  z-index: 3;
}
.phone-placeholder {
  position: absolute;
  inset: 0;
  padding: 50px 19px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(150deg, #fff, #edf4ff);
}
.phone-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.8px;
}
.phone-brand svg {
  width: 23px;
  color: var(--blue);
}
.placeholder-orbit {
  display: grid;
  place-items: center;
  margin-top: 40px;
  width: 83px;
  height: 83px;
  border: 1px solid #c9d9f1;
  border-radius: 26px;
  background: #e6efff;
  box-shadow:
    0 0 0 13px #eef4ff,
    0 0 0 14px #dce6f5;
}
.placeholder-orbit svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}
.phone-label {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.placeholder-lines {
  width: 100%;
  padding: 24px 0;
  display: grid;
  gap: 8px;
}
.placeholder-lines i {
  height: 9px;
  background: #dce5f0;
  border-radius: 10px;
  display: block;
}
.placeholder-lines i:nth-child(2) {
  width: 80%;
}
.placeholder-lines i:last-child {
  width: 60%;
}
.screenshot-note {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  font-size: 11px;
  color: #607187;
}
.screenshot-note svg {
  width: 18px;
  height: 18px;
}
.screenshot-note small {
  font-size: 9px;
  color: #607187;
}
.phone-screenshot {
  object-fit: contain;
  background: #fff;
}
.phone-clients .phone-placeholder {
  background: linear-gradient(150deg, #fff, #eaf3e8);
}
.phone-booking .phone-placeholder {
  background: linear-gradient(150deg, #fff, #f2ece2);
}
.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 13px;
  background: #fffffff5;
  padding: 14px 17px;
  box-shadow: 0 12px 40px #22436012;
  border: 1px solid white;
  font-size: 12px;
  font-weight: 600;
  max-width: 260px;
}
.floating-note small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  margin-top: 5px;
}
.note-top {
  right: -10px;
  top: 109px;
}
.note-bottom {
  left: -32px;
  bottom: 96px;
}
.note-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 10px;
}
.note-icon svg {
  width: 20px;
}
.note-icon.mint {
  background: var(--mint);
  color: #54815e;
}
.tiny-check {
  color: #568763;
}
.tiny-check svg {
  width: 16px;
}
.art-plus {
  position: absolute;
  color: var(--blue);
  font-size: 49px;
  font-weight: 200;
}
.plus-one {
  top: 18px;
  right: 65px;
}
.plus-two {
  bottom: 28px;
  left: 76px;
  font-size: 33px;
}
.art-caption {
  position: absolute;
  bottom: -22px;
  font-size: 8px;
  letter-spacing: 0.19em;
  color: #657586;
}
.audience {
  padding-top: 25px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.audience .eyebrow {
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 23px;
}
.audience > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.audience > div span + span::before {
  content: '✳';
  font-size: 12px;
  color: #a6b5ab;
  margin-right: 30px;
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 35px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 290px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 5px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 27px 23px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  position: relative;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--soft-blue);
  color: var(--blue);
  margin-bottom: 36px;
}
.tone-1 {
  background: #eaf2e7;
  color: #5e8559;
}
.tone-2 {
  background: #f5ede2;
  color: #977841;
}
.tone-3 {
  background: #f0ebf7;
  color: #85689f;
}
.feature-number {
  position: absolute;
  top: 28px;
  right: 22px;
  color: #aab1b8;
  font-size: 10px;
}
.feature-card h3 {
  font-size: 18px;
  min-height: 46px;
  margin-bottom: 13px;
}
.feature-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}
.preview-section {
  background: #f0f3ee;
  padding: 88px 0 72px;
  overflow: hidden;
}
.center-heading {
  text-align: center;
  max-width: 680px;
  margin: auto;
}
.center-heading > p:last-child {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}
.preview-phones {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 68px;
  margin-top: 58px;
}
.preview-phones figure {
  margin: 28px 0 0;
}
.preview-phones figure:nth-child(2) {
  margin-top: 0;
}
.preview-phones .phone {
  width: 225px;
}
.preview-phones .phone-placeholder {
  padding-top: 42px;
}
.preview-phones .placeholder-orbit {
  margin-top: 30px;
  width: 67px;
  height: 67px;
}
.preview-phones figcaption {
  text-align: center;
  margin-top: 25px;
  font-size: 12px;
  font-weight: 600;
}
.preview-phones figcaption span {
  font-size: 9px;
  color: var(--muted);
  margin-right: 10px;
}
.steps-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: flex;
  gap: 23px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.steps li:first-child {
  padding-top: 0;
}
.step-number {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--soft-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.steps h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.steps-decoration {
  margin-top: 36px;
  color: #a7bbaa;
}
.steps-decoration svg {
  width: 72px;
  height: 72px;
  stroke-width: 0.8;
}
.download-section {
  padding-bottom: 90px;
}
.download-panel {
  position: relative;
  overflow: hidden;
  background: #e9efff;
  border: 1px solid #dce5fc;
  text-align: center;
  border-radius: 26px;
  padding: 64px 25px 35px;
}
.download-panel > .eyebrow {
  color: var(--blue);
  font-size: 9px;
}
.download-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.download-panel > p:not(.eyebrow) {
  max-width: 415px;
  margin: 0 auto 26px;
  font-size: 13px;
  color: #5e6c80;
}
.download-spark {
  position: absolute;
  font-size: 300px;
  line-height: 1;
  right: -65px;
  top: -48px;
  color: #dbe5fd;
  transform: rotate(20deg);
}
.store-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  padding: 12px 21px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.2;
  text-align: left;
  min-width: 157px;
}
.store-button small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 3px;
}
.store-pending {
  background: #34465f;
}
.store-button[href]:hover {
  background: var(--blue);
}
.download-platforms {
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #6b788d;
  margin-top: 20px;
}
.site-footer {
  padding: 20px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 40px;
}
.footer-top p {
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 11px;
  max-width: 670px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.inner-page {
  padding-top: 70px;
  padding-bottom: 95px;
  min-height: 70vh;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 48px;
}
.back-link svg {
  width: 16px;
  transform: rotate(180deg);
}
.inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: start;
}
.inner-heading {
  font-size: clamp(36px, 4.5vw, 56px);
  white-space: pre-line;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.inner-intro {
  color: var(--muted);
  font-size: 15px;
  max-width: 440px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-card > svg {
  color: var(--blue);
}
.contact-card small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-card a {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 10px 40px #1c354805;
}
.form-card h2 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-bottom: 29px;
}
.form-field {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}
.form-field > label {
  font-size: 12px;
  font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: #fafbf9;
  border: 1px solid #dbe0e4;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 14px;
  min-height: 46px;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7d8992;
}
.field-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 23px;
}
.checkbox-label input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.form-submit {
  width: 100%;
  margin-top: 22px;
}
.form-notice {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  margin: 17px 0 0;
}
.form-notice a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  padding: 15px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  background: var(--soft-blue);
  color: #34547a;
  margin: 20px 0 0;
}
.form-status[data-error='true'] {
  background: #fff1ed;
  color: #943b28;
}
.success-panel {
  text-align: center;
  padding: 35px 10px;
}
.success-panel > svg {
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 50%;
  background: var(--mint);
  color: #49835a;
}
.success-panel p {
  font-size: 15px;
  margin-top: 22px;
}
.captcha-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 78px;
  margin-bottom: 22px;
  overflow: hidden;
}
.captcha-wrap iframe {
  max-width: 100%;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.delete-steps {
  margin-top: 35px;
}
.delete-steps li {
  gap: 15px;
  padding: 19px 0;
}
.delete-steps h3 {
  font-size: 16px;
}
.delete-steps p {
  font-size: 12px;
}
.info-note {
  font-size: 12px;
  color: var(--muted);
  padding: 18px;
  background: #f0f3f5;
  border-radius: 12px;
  margin-top: 22px;
}
.legal-wrap {
  max-width: 770px;
  margin: auto;
}
.legal-document-wrap {
  max-width: 820px;
}
.legal-updated {
  font-size: 12px;
  color: var(--muted);
  margin: -8px 0 24px;
}
.legal-lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}
.legal-contents {
  background: var(--soft-blue);
  border: 1px solid #dce5fc;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 30px 0 42px;
}
.legal-contents summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.legal-contents summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.legal-contents ol {
  padding-left: 22px;
  margin: 20px 0 0;
  columns: 2;
  column-gap: 40px;
}
.legal-contents li {
  break-inside: avoid;
  font-size: 12px;
  line-height: 1.65;
  padding: 4px 0;
}
.legal-contents a:hover {
  color: var(--blue);
}
.legal-document section {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 115px;
}
.legal-document h2 {
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 18px;
  white-space: normal;
}
.legal-document p {
  font-size: 15px;
  line-height: 1.85;
  color: #435261;
  margin-bottom: 17px;
  overflow-wrap: anywhere;
}
.legal-document a {
  color: #1b52cd;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-document strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 600px) {
  .legal-document-wrap:lang(de) .inner-heading {
    font-size: clamp(28px, 8.5vw, 39px);
  }
  .legal-contents ol {
    columns: 1;
  }
  .legal-document h2 {
    font-size: 22px;
  }
  .legal-document p {
    font-size: 14px;
  }
}
.legal-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  margin-top: 30px;
}
.draft-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #f7eddb;
  color: #7b6239;
  border-radius: 30px;
  padding: 8px 13px;
  font-size: 11px;
}
.legal-card > p {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 28px;
  color: var(--muted);
}
.legal-card .text-link {
  color: var(--blue);
}
.invite-page {
  max-width: 740px;
  margin: auto;
  text-align: center;
  padding: 30px 0;
}
.invite-page > svg {
  width: 64px;
  height: 64px;
  background: var(--soft-blue);
  color: var(--blue);
  padding: 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.invite-page .inner-intro {
  margin: 0 auto 30px;
}
@media (min-width: 1450px) {
  .hero {
    min-height: 760px;
  }
  .hero-art {
    height: 570px;
  }
}
@media (max-width: 1100px) {
  .header-nav {
    gap: 18px;
  }
  .header-actions {
    gap: 12px;
  }
  .container {
    padding-inline: 28px;
  }
  .hero {
    gap: 30px;
  }
  .hero-art {
    height: 490px;
  }
  .hero-orbit {
    width: 350px;
    height: 350px;
  }
  .orbit-two {
    width: 280px;
    height: 280px;
  }
  .hero .phone {
    width: 225px;
  }
  .note-top {
    right: -5px;
    top: 90px;
  }
  .note-bottom {
    left: -15px;
    bottom: 65px;
  }
  .floating-note {
    padding: 10px;
    font-size: 10px;
  }
  .audience > div span + span::before {
    margin-right: 14px;
  }
  .audience > div {
    font-size: 13px;
  }
  .preview-phones {
    gap: 40px;
  }
  .inner-grid {
    gap: 40px;
  }
  .footer-links {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .header-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    min-height: 600px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-art {
    height: 420px;
  }
  .hero .phone {
    width: 190px;
    border-radius: 31px;
  }
  .hero .phone-placeholder {
    padding: 42px 12px 15px;
  }
  .hero .placeholder-orbit {
    width: 55px;
    height: 55px;
    margin-top: 22px;
  }
  .hero .phone-label {
    font-size: 12px;
  }
  .hero .placeholder-lines {
    padding: 15px 0;
  }
  .hero .screenshot-note {
    font-size: 9px;
  }
  .hero .screenshot-note small {
    font-size: 8px;
  }
  .hero-buttons {
    gap: 15px;
  }
  .hero-buttons .button {
    font-size: 12px;
    padding: 15px;
  }
  .hero-buttons .text-link {
    font-size: 11px;
  }
  .hero-orbit {
    width: 270px;
    height: 270px;
  }
  .orbit-two {
    width: 210px;
    height: 210px;
  }
  .floating-note {
    font-size: 9px;
    gap: 7px;
  }
  .note-icon {
    width: 29px;
    height: 29px;
  }
  .note-top {
    right: -8px;
    top: 70px;
  }
  .note-bottom {
    left: -15px;
    bottom: 45px;
  }
  .art-plus {
    font-size: 34px;
  }
  .plus-one {
    right: 23px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card h3 {
    min-height: 0;
  }
  .preview-phones {
    gap: 25px;
  }
  .preview-phones .phone {
    width: 195px;
  }
  .preview-phones .phone-placeholder {
    padding-inline: 14px;
  }
  .preview-phones .placeholder-orbit {
    width: 56px;
    height: 56px;
    margin-top: 20px;
  }
  .preview-phones .phone-label {
    font-size: 13px;
  }
  .preview-phones .screenshot-note small {
    font-size: 8px;
  }
  .steps-section {
    gap: 40px;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > p {
    max-width: 230px;
  }
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .inner-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .inner-intro {
    max-width: 600px;
  }
  .contact-card {
    margin-top: 25px;
  }
  .form-card {
    max-width: 650px;
    width: 100%;
  }
  .inner-page {
    max-width: 760px;
  }
  .delete-steps {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 78px;
  }
  .container {
    padding-inline: 22px;
  }
  .header-inner {
    height: 73px;
    gap: 10px;
  }
  .brand {
    font-size: 25px;
  }
  .brand > svg {
    width: 29px;
  }
  .header-download {
    display: none;
  }
  .language-picker select {
    font-size: 12px;
    max-width: 110px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 50px;
    padding-bottom: 55px;
  }
  .hero h1 {
    font-size: clamp(46px, 12vw, 66px);
    letter-spacing: -0.05em;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 420px;
  }
  .hero-buttons .button {
    padding: 17px 20px;
    font-size: 13px;
  }
  .hero-buttons .text-link {
    font-size: 12px;
  }
  .hero-art {
    height: 470px;
    width: 100%;
    max-width: 400px;
    margin: auto;
    border-radius: 44%;
  }
  .hero .phone {
    width: 220px;
    border-radius: 35px;
  }
  .hero .placeholder-orbit {
    width: 70px;
    height: 70px;
    margin-top: 30px;
  }
  .hero .phone-label {
    font-size: 15px;
  }
  .hero .phone-placeholder {
    padding: 46px 17px 20px;
  }
  .hero .screenshot-note {
    font-size: 10px;
  }
  .hero-orbit {
    width: 310px;
    height: 310px;
  }
  .orbit-two {
    width: 240px;
    height: 240px;
  }
  .note-top {
    right: -2px;
    top: 95px;
    font-size: 11px;
  }
  .note-bottom {
    left: -2px;
    bottom: 70px;
    font-size: 11px;
  }
  .floating-note small {
    font-size: 9px;
  }
  .art-caption {
    bottom: -21px;
  }
  .audience {
    padding-top: 10px;
    padding-bottom: 35px;
  }
  .audience > div {
    justify-content: center;
    gap: 18px;
    font-size: 12px;
  }
  .audience > div span + span::before {
    display: none;
  }
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 20px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 19px;
  }
  h2 {
    font-size: 35px;
  }
  .feature-grid {
    gap: 12px;
  }
  .feature-card {
    padding: 20px 16px;
    border-radius: 15px;
  }
  .feature-icon {
    margin-bottom: 27px;
    width: 39px;
    height: 39px;
  }
  .feature-number {
    top: 23px;
    right: 16px;
    font-size: 9px;
  }
  .feature-card h3 {
    font-size: 17px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .preview-section {
    padding: 60px 0 45px;
  }
  .preview-phones {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 15px 7px 23px;
    margin: 30px -7px 0;
    gap: 28px;
  }
  .preview-phones figure,
  .preview-phones figure:nth-child(2) {
    flex-shrink: 0;
    margin-top: 0;
    scroll-snap-align: center;
  }
  .preview-phones .phone {
    width: 220px;
  }
  .preview-phones .phone-placeholder {
    padding-top: 45px;
  }
  .preview-phones .placeholder-orbit {
    margin-top: 30px;
    width: 70px;
    height: 70px;
  }
  .preview-phones figcaption {
    margin-top: 20px;
  }
  .steps-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .steps-decoration {
    display: none;
  }
  .steps-section h2 {
    margin-bottom: 0;
  }
  .steps h3 {
    font-size: 18px;
  }
  .download-section {
    padding-bottom: 60px;
  }
  .download-panel {
    padding: 45px 20px 30px;
    border-radius: 20px;
  }
  .download-panel h2 {
    font-size: 33px;
  }
  .download-spark {
    font-size: 220px;
    right: -100px;
  }
  .store-button {
    padding: 12px 14px;
    min-width: 135px;
    font-size: 15px;
    gap: 8px;
  }
  .store-button svg {
    width: 21px;
  }
  .store-links {
    gap: 9px;
  }
  .footer-top {
    padding-bottom: 27px;
  }
  .footer-links {
    font-size: 11px;
    gap: 20px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 13px;
    font-size: 10px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .inner-page {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .back-link {
    margin-bottom: 35px;
  }
  .inner-heading {
    font-size: 39px;
  }
  .inner-intro {
    font-size: 14px;
  }
  .form-card {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .form-card h2 {
    font-size: 23px;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
  }
  .legal-card {
    padding: 27px 23px;
  }
  .legal-card > p {
    font-size: 14px;
  }
}
@media (max-width: 359px) {
  .container {
    padding-inline: 16px;
  }
  .form-card {
    padding-inline: 10px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .store-links {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

[x-cloak] { display: none !important; }
.phone-screenshot { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; }
