:root {
  color-scheme: light;
  --ink: #17202c;
  --muted: #607087;
  --soft: #f5f7f8;
  --line: #dce3ea;
  --paper: #ffffff;
  --teal: #16858f;
  --teal-dark: #0f6670;
  --blue: #0877ee;
  --green: #13895f;
  --amber: #b97905;
  --danger: #c84747;
  --shadow: 0 20px 48px rgb(23 32 44 / 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 76px;
  padding: 0 max(20px, calc((100% - 1320px) / 2));
  border-bottom: 1px solid rgb(220 227 234 / 0.82);
  background: rgb(255 255 255 / 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand,
.header-tools,
.site-header nav,
.hero-actions,
.hero-facts,
.footer-layout,
.cta-layout,
.export-stats {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  color: #111b2a;
  font-size: 1.12rem;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 8px;
}

.brand span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-header nav {
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.site-header nav a,
.header-action,
.button {
  min-height: 40px;
  border-radius: 8px;
  padding: 9px 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav a {
  color: #38485b;
  padding-inline: 10px;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--teal);
  background: #eef7f7;
}

.header-action {
  justify-self: end;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 10px 24px rgb(22 133 143 / 0.22);
}

.header-tools {
  justify-self: end;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px;
  background: #f8fafc;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 32px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--ink);
  background: #edf3f8;
}

.language-switcher a.active {
  background: var(--ink);
  color: #ffffff;
}

.hero {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #fbfcfd;
  color: var(--ink);
}

.hero::before {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: start;
}

.hero-copy-block {
  min-width: 0;
  max-width: 540px;
}

.hero-visual {
  min-width: 0;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgb(23 32 44 / 0.1);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 950;
  color: var(--ink);
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: #43536a;
  font-size: 1.35rem;
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: #bdc9d6;
  background: #f8fafc;
}

.hero-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  width: min(1160px, calc(100% - 96px));
  margin: 4px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 18px 42px rgb(23 32 44 / 0.11);
}

.hero-facts div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px 10px 0;
  background: transparent;
}

.hero-facts div:last-child {
  border-right: 0;
}

.fact-icon {
  position: relative;
  grid-row: 1 / span 2;
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
}

.fact-icon::before,
.fact-icon::after {
  content: "";
  position: absolute;
}

.fact-icon-tree::before {
  top: 12px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--teal);
  box-shadow:
    -14px 18px 0 var(--teal),
    0 18px 0 var(--teal),
    14px 18px 0 var(--teal);
}

.fact-icon-tree::after {
  top: 22px;
  left: 11px;
  width: 28px;
  height: 16px;
  border-right: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  border-top: 2px solid var(--teal);
}

.fact-icon-export::before {
  top: 10px;
  left: 13px;
  width: 24px;
  height: 30px;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.fact-icon-export::after {
  top: 18px;
  left: 19px;
  width: 13px;
  height: 2px;
  background: var(--green);
  box-shadow:
    0 8px 0 var(--green),
    0 16px 0 var(--green);
}

.fact-icon-sync::before {
  top: 13px;
  left: 12px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--blue);
  border-right-color: transparent;
  border-radius: 50%;
}

.fact-icon-sync::after {
  top: 9px;
  right: 11px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--blue);
}

.hero-facts dt {
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 950;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band,
.services-band,
.outcome-band,
.feature-band,
.screens-band,
.export-band,
.audience-band,
.founders-band,
.cta-band {
  padding: 80px 0;
}

.intro-band {
  background: var(--paper);
  padding-top: 62px;
}

.intro-grid,
.services-layout,
.feature-layout,
.export-layout,
.audience-grid,
.founders-layout {
  display: grid;
  gap: 36px;
}

.intro-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}

.section-kicker {
  color: var(--teal);
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  max-width: 780px;
  font-size: 2.6rem;
  line-height: 1.05;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 900;
}

.intro-grid > p,
.section-heading > p:not(.section-kicker),
.service-grid p,
.feature-copy p,
.export-copy p,
.screen-card p,
.audience-grid p,
.founder-card p,
.cta-layout p {
  margin: 0;
  color: var(--muted);
}

.services-band {
  background: #f8fbfb;
}

.services-layout {
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
}

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

.service-grid article {
  min-width: 0;
  min-height: 232px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
}

.service-grid p {
  margin-top: 10px;
}

.service-mark {
  display: block;
  width: 42px;
  height: 7px;
  margin-bottom: 24px;
  border-radius: 999px;
}

.service-mark.teal {
  background: var(--teal);
}

.service-mark.blue {
  background: var(--blue);
}

.service-mark.amber {
  background: var(--amber);
}

.service-mark.green {
  background: var(--green);
}

.outcome-band {
  background: #eef4f5;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.outcome-grid article,
.screen-card,
.export-stats div,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.outcome-grid article {
  padding: 24px;
  min-height: 210px;
}

.outcome-grid article p {
  margin: 12px 0 0;
  color: var(--muted);
}

.outcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 950;
}

.outcome-icon.teal {
  background: var(--teal);
}

.outcome-icon.blue {
  background: var(--blue);
}

.outcome-icon.green {
  background: var(--green);
}

.feature-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.feature-copy {
  min-width: 0;
}

.feature-copy p {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #324256;
  font-weight: 740;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #dff6ea;
}

.product-shot,
.export-preview {
  margin: 0;
}

.product-shot img,
.export-preview img,
.screen-card img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.screens-band {
  background: #f7f8fb;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  overflow: hidden;
}

.screen-card img {
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.screen-card div {
  padding: 18px;
}

.screen-card p {
  margin-top: 8px;
  font-size: 0.94rem;
}

.export-band {
  background: var(--paper);
}

.export-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.export-copy {
  min-width: 0;
}

.export-copy p {
  margin-top: 18px;
}

.export-stats {
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.export-stats div {
  flex: 1 1 130px;
  padding: 16px;
}

.export-stats strong,
.export-stats span {
  display: block;
}

.export-stats strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.export-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.audience-band {
  background: #fff8ea;
}

.audience-grid {
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.audience-grid > div {
  align-self: center;
}

.audience-grid article {
  padding: 22px;
}

.audience-grid article:nth-of-type(1) {
  border-top: 4px solid var(--teal);
}

.audience-grid article:nth-of-type(2) {
  border-top: 4px solid var(--amber);
}

.audience-grid article:nth-of-type(3) {
  border-top: 4px solid var(--danger);
}

.audience-grid p {
  margin-top: 10px;
}

.founders-band {
  background: var(--paper);
}

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

.founder-card {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #f9fbfc;
}

.founder-photo {
  width: 158px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #e8eef2;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo.initials {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 950;
}

.founder-photo.initials.martin {
  background: var(--teal);
}

.founder-photo.initials.daniel {
  background: #31435a;
}

.founder-body {
  min-width: 0;
}

.founder-role {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.founder-card h3 {
  font-size: 1.28rem;
}

.founder-card p:not(.founder-role) {
  margin-top: 12px;
}

.founder-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.founder-card a:hover,
.founder-card a:focus-visible {
  text-decoration: underline;
}

.cta-band {
  background: #14212d;
  color: #ffffff;
}

.cta-layout {
  justify-content: space-between;
  gap: 24px;
}

.cta-layout h2 {
  max-width: 720px;
}

.cta-layout p {
  color: #9ce4df;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-layout {
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.footer-layout p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.legal-header {
  position: sticky;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(18px);
}

.legal-header nav,
.legal-header .language-switcher {
  border-color: var(--line);
  background: #f8fafc;
}

.legal-header nav a,
.legal-header .language-switcher a {
  color: var(--muted);
}

.legal-header nav a:hover,
.legal-header nav a:focus-visible,
.legal-header .language-switcher a:hover,
.legal-header .language-switcher a:focus-visible {
  color: var(--ink);
  background: #edf3f8;
}

.legal-header .language-switcher a.active {
  background: var(--ink);
  color: #ffffff;
}

.legal-header .header-action {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.legal-main {
  background: #f7f8fb;
  padding: 62px 0 82px;
}

.legal-page {
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 46px;
  background: var(--paper);
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-page p {
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header nav {
    display: none;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    width: 100%;
  }

  .hero-copy-block {
    max-width: 720px;
  }

  .intro-grid,
  .services-layout,
  .feature-layout,
  .export-layout,
  .audience-grid,
  .founders-layout {
    grid-template-columns: 1fr;
  }

  .outcome-grid,
  .screen-grid,
  .service-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid > div {
    align-self: auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    gap: 6px;
    overflow: hidden;
    padding: 0 12px;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
    gap: 9px;
    max-width: calc(100% - 146px);
    font-size: 1rem;
  }

  .brand span {
    max-width: 100%;
    white-space: nowrap;
  }

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

  .header-action,
  .button {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.92rem;
  }

  .header-action {
    flex: 0 0 54px;
    width: 54px;
    min-width: 54px;
    max-width: 54px;
    padding: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0;
  }

  .header-action::after {
    content: "App";
    font-size: 0.92rem;
  }

  .header-tools {
    flex: 0 0 auto;
    justify-self: auto;
    gap: 5px;
    max-width: 140px;
    min-width: 0;
  }

  .language-switcher {
    flex: 0 1 auto;
    min-height: 38px;
    min-width: 0;
  }

  .language-switcher a {
    min-width: 30px;
    min-height: 30px;
    padding: 0 6px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 40px 0 36px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-facts div {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
    border: 1px solid var(--line);
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgb(23 32 44 / 0.08);
  }

  .hero-facts div:last-child {
    border-right: 1px solid var(--line);
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .intro-band,
  .services-band,
  .outcome-band,
  .feature-band,
  .screens-band,
  .export-band,
  .audience-band,
  .founders-band,
  .cta-band {
    padding: 54px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .outcome-grid article {
    min-height: auto;
  }

  .service-grid article {
    min-height: auto;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: min(180px, 100%);
  }

  .cta-layout,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    padding: 28px;
  }

  .legal-page h1 {
    font-size: 2.2rem;
  }
}
