:root {
  --ink: #172622;
  --muted: #60706b;
  --paper: #f5f3ed;
  --line: #d8ddd5;
  --lime: #c9ef78;
  --teal: #1d7567;
  --orange: #f26d46;
  --display: 'Sora', 'Trebuchet MS', sans-serif;
  --body: 'Manrope', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
.page-shell { display: flex; flex-direction: column; max-width: 1440px; min-height: 100vh; margin: 0 auto; padding: 0 5.5vw; overflow: hidden; }
.site-header { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 20px; font-weight: 700; }
.brand-name { letter-spacing: .00em; }
.brand-mark { display: flex; align-items: end; gap: 3px; width: 31px; height: 31px; padding: 5px 6px; background: var(--lime); }
.brand-mark span { display: block; width: 5px; height: 13px; border-radius: 4px; background: var(--ink); transform: skew(-18deg); }
.brand-mark span:nth-child(2) { height: 20px; background: var(--teal); }
.brand-mark span:nth-child(3) { height: 9px; background: var(--orange); }
.brand-dot { color: var(--orange); }
.language-switcher { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
.language-link { padding: 5px 0; color: inherit; }
.language-link.is-active, .language-link:hover, .language-link:focus-visible { color: var(--ink); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.simple-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); align-items: center; gap: 8vw; flex: 1; min-height: 560px; padding: 70px 0 85px; }
.simple-copy { max-width: 600px; }
.eyebrow { margin: 0 0 25px; color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(62px, 9vw, 128px); font-weight: 600; line-height: .86; }
h1 .hero-name { letter-spacing: -.020em; }
h1 em { color: var(--teal); font-style: normal; }
.simple-description { max-width: 470px; margin: 0 0 34px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.contact-link { display: inline-flex; align-items: center; gap: 28px; padding: 15px 19px 15px 21px; color: var(--ink); background: var(--lime); font-size: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.contact-link:hover, .contact-link:focus-visible { box-shadow: 6px 6px 0 var(--orange); transform: translate(-2px, -2px); }
.simple-graphic { display: grid; place-items: center; width: min(100%, 390px); aspect-ratio: 1; margin: auto; }
.app-placeholder { display: block; width: min(100%, 300px); height: auto; filter: drop-shadow(18px 20px 0 var(--orange)); transform: rotate(5deg); transition: transform .25s ease; }
.app-placeholder:hover { transform: rotate(2deg) translateY(-5px); }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
@media (max-width: 680px) {
  .page-shell { padding: 0 22px; }
  .site-header { min-height: 78px; }
  .simple-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: auto; padding: 75px 0 85px; }
  .simple-description { font-size: 16px; }
  .simple-graphic { align-self: center; width: min(100%, 300px); margin-top: 24px; }
  .app-placeholder { width: min(100%, 230px); }
  .site-footer { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
