:root {
  --paper: #f3eee4;
  --paper-deep: #e8e0d0;
  --cream: #fffbf4;
  --ink: #141a17;
  --ink-soft: #3f4a44;
  --ink-faint: #6b746e;
  --forest: #1c3d32;
  --forest-deep: #122820;
  --moss: #2f6f57;
  --leaf: #3d8f6e;
  --brass: #a6844a;
  --brass-soft: #c4a36a;
  --ok: #2f6f57;
  --tight: #c4922a;
  --short: #b42318;
  --line: rgba(20, 26, 23, 0.1);
  --line-strong: rgba(20, 26, 23, 0.16);
  --shadow: 0 24px 60px rgba(20, 26, 23, 0.1);
  --shadow-soft: 0 10px 30px rgba(20, 26, 23, 0.07);
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 72px;
  --banner-h: 44px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--banner-h) + 8px);
}

html[lang="de"] .t[lang="en"],
html[lang="en"] .t[lang="de"] {
  display: none !important;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus {
  left: 8px;
  z-index: 100;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 8px;
}

/* —— Investor banner —— */
.investor-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--forest-deep);
  color: #f3eee4;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.investor-banner .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-soft);
  box-shadow: 0 0 0 4px rgba(196, 163, 106, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(196, 163, 106, 0.08);
  }
}

.investor-banner a {
  color: var(--brass-soft);
  border-bottom: 1px solid rgba(196, 163, 106, 0.45);
  padding-bottom: 1px;
}

.investor-banner a:hover {
  color: #f3eee4;
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: var(--banner-h);
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(243, 238, 228, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 18px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}

.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  cursor: pointer;
}

.lang-toggle button.active {
  background: var(--forest);
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 550;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--forest-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-brass {
  background: var(--brass);
  color: #fffbf4;
}

.btn-brass:hover {
  background: #8f6e3b;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
}

/* —— Layout —— */
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
}

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  max-width: 16ch;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.lede {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--ink-soft);
  max-width: 42ch;
  margin-top: 18px;
}

.muted {
  color: var(--ink-soft);
}

.center {
  text-align: center;
}

.center h2,
.center .lede {
  margin-left: auto;
  margin-right: auto;
}

/* —— Hero —— */
.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-faint);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.device-stage {
  position: relative;
  height: 540px;
}

.laptop {
  position: absolute;
  right: 0;
  top: 28px;
  width: min(100%, 460px);
  background: #1a211e;
  border-radius: 16px 16px 10px 10px;
  padding: 10px 10px 0;
  box-shadow: var(--shadow);
}

.laptop-bar {
  display: flex;
  gap: 6px;
  padding: 4px 6px 10px;
}

.laptop-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a5550;
}

.laptop-bar i:first-child {
  background: #8a6a3d;
}

.laptop-screen {
  background: #f7f3ea;
  border-radius: 8px 8px 0 0;
  min-height: 280px;
  padding: 16px;
  color: var(--ink);
}

.laptop-chin {
  height: 14px;
  background: #121815;
  margin: 0 -10px;
  border-radius: 0 0 8px 8px;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4e4c6;
  color: #8a5a12;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill.ok {
  background: #dceee4;
  color: var(--forest);
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.cash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.cash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}

.cash-card span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.cash-card strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.danger {
  background: #fff6f4;
  border: 1px solid #f0d2cc;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}

.danger b {
  color: var(--short);
}

.chase-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chase {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12.5px;
}

.chase small {
  color: var(--ink-faint);
}

.phone {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 210px;
  background: #111;
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 3px solid #2a2a2a;
  z-index: 2;
}

.phone-notch {
  width: 72px;
  height: 8px;
  background: #000;
  border-radius: 8px;
  margin: 4px auto 10px;
}

.phone-screen {
  background: linear-gradient(180deg, #1c3d32, #122820);
  border-radius: 18px;
  min-height: 280px;
  padding: 16px 12px;
  color: #f3eee4;
}

.phone-time {
  text-align: center;
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.notify {
  background: rgba(255, 251, 244, 0.12);
  border: 1px solid rgba(243, 238, 228, 0.16);
  border-radius: 14px;
  padding: 12px;
  backdrop-filter: blur(8px);
}

.notify-app {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.notify-app img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.notify p {
  font-size: 13.5px;
  line-height: 1.4;
}

.sync-badge {
  position: absolute;
  left: 168px;
  top: 46%;
  z-index: 3;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  color: var(--moss);
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}

.stat {
  background: var(--cream);
  padding: 28px 24px;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.stat em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-faint);
}

/* —— Problem —— */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.problem-list li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--forest);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

/* —— How —— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 240px;
}

.step .n {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--brass);
  display: block;
  margin-bottom: 18px;
}

.step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* —— Product / apps —— */
.apps {
  background: var(--forest-deep);
  color: #f3eee4;
  border-radius: 0;
}

.apps h2 {
  max-width: 18ch;
}

.apps .lede {
  color: rgba(243, 238, 228, 0.72);
}

.apps .eyebrow {
  color: var(--brass-soft);
}

.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}

.app-card {
  background: rgba(243, 238, 228, 0.06);
  border: 1px solid rgba(243, 238, 228, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.app-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196, 163, 106, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--brass-soft);
}

.app-card h3 {
  margin-bottom: 8px;
}

.app-card p {
  color: rgba(243, 238, 228, 0.7);
  font-size: 15px;
}

.coming {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-soft);
  border: 1px solid rgba(196, 163, 106, 0.35);
  padding: 4px 8px;
  border-radius: 999px;
}

.day-strip {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 6px;
  margin-top: 48px;
}

.day {
  background: rgba(243, 238, 228, 0.08);
  border-radius: 8px;
  padding: 10px 0;
  text-align: center;
  font-size: 11px;
}

.day b {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.day.ok {
  background: rgba(61, 143, 110, 0.28);
}

.day.tight {
  background: rgba(196, 146, 42, 0.35);
}

.day.short {
  background: rgba(180, 35, 24, 0.4);
}

.strip-caption {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(243, 238, 228, 0.55);
}

/* —— Features —— */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.feature h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.feature p {
  color: var(--ink-soft);
  font-size: 15px;
}

.feature .mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e4eee8;
  color: var(--forest);
  display: grid;
  place-items: center;
  font-size: 18px;
}

/* —— Pricing —— */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.plan {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
  transform: translateY(-8px);
}

.plan .price {
  font-family: var(--serif);
  font-size: 44px;
  margin: 16px 0 4px;
}

.plan .price span {
  font-family: var(--sans);
  font-size: 16px;
  opacity: 0.7;
}

.plan ul {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.plan ul li::before {
  content: "– ";
  color: var(--brass);
}

.plan.featured ul li::before {
  color: var(--brass-soft);
}

.plan .btn {
  margin-top: auto;
}

.plan.featured .btn-ghost {
  border-color: rgba(243, 238, 228, 0.25);
  color: var(--paper);
}

.price-note {
  margin-top: 20px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* —— Security —— */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.security-item {
  padding: 22px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.security-item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.disclaimer {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--brass);
  background: #efe6d4;
  font-size: 15px;
}

/* —— Founder —— */
.founder {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
}

.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #1c3d32, #2f6f57 55%, #c4a36a);
}

.founder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f3eee4;
  text-align: center;
  padding: 24px;
}

.founder-placeholder .initials {
  font-family: var(--serif);
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.founder-placeholder p {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.85;
  max-width: 22ch;
}

.role {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 600;
  margin-bottom: 8px;
}

.founder h3 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.founder .bio {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 48ch;
}

.founder-meta {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  font-size: 14px;
}

.founder-meta b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 4px;
}

/* —— Investors —— */
.investor-panel {
  background: var(--forest);
  color: var(--paper);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.investor-panel h2 {
  max-width: 14ch;
}

.investor-panel .lede {
  color: rgba(243, 238, 228, 0.75);
}

.invest-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invest-points li {
  padding-left: 18px;
  position: relative;
  color: rgba(243, 238, 228, 0.88);
}

.invest-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-soft);
  position: absolute;
  left: 0;
  top: 9px;
}

.invest-form {
  background: rgba(243, 238, 228, 0.08);
  border: 1px solid rgba(243, 238, 228, 0.12);
  border-radius: 20px;
  padding: 28px;
}

.invest-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 12px 0 6px;
  opacity: 0.75;
}

.invest-form input,
.invest-form textarea,
.invest-form select {
  width: 100%;
  background: rgba(255, 251, 244, 0.08);
  border: 1px solid rgba(243, 238, 228, 0.16);
  color: #fffbf4;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
}

.invest-form input::placeholder,
.invest-form textarea::placeholder {
  color: rgba(243, 238, 228, 0.4);
}

.invest-form textarea {
  min-height: 96px;
  resize: vertical;
}

.form-msg {
  margin-top: 12px;
  font-size: 14px;
  min-height: 1.2em;
}

.form-light {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  max-width: 480px;
  margin: 36px auto 0;
}

.form-light label {
  color: var(--ink-faint);
}

.form-light input,
.form-light textarea,
.form-light select {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.form-light .form-msg {
  color: var(--moss);
}

/* —— Footer —— */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

footer h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
}

footer a:hover {
  color: var(--moss);
}

.legal-line {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* —— Legal pages —— */
.legal {
  padding: 64px 0 96px;
  max-width: 760px;
}

.legal h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.legal h2 {
  font-size: 24px;
  margin: 32px 0 10px;
  max-width: none;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.legal ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

/* —— Mobile nav —— */
.nav-links.open {
  display: flex;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .founder,
  .investor-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .features,
  .plans,
  .app-cards,
  .stats,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero-visual,
  .device-stage {
    min-height: 560px;
    height: 560px;
  }

  .laptop {
    width: 92%;
  }

  .plan.featured {
    transform: none;
  }

  .day-strip {
    grid-template-columns: repeat(7, 1fr);
  }

  .investor-panel,
  .founder {
    padding: 28px;
  }

  .legal-line {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-inner,
  .wrap {
    width: calc(100% - 28px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .investor-banner {
    font-size: 11px;
    padding: 0 12px;
    text-align: center;
    height: auto;
    min-height: var(--banner-h);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .phone {
    width: 170px;
  }

  .sync-badge {
    left: 130px;
    font-size: 10px;
  }

  .btn.nav-cta {
    display: none;
  }
}
