:root {
  --ink: #101828;
  --ink-soft: #344054;
  --paper: #f7f5ef;
  --white: #ffffff;
  --lime: #b8ff5a;
  --blue: #4462ff;
  --coral: #ff796b;
  --line: rgba(16, 24, 40, 0.14);
  --navy: #111827;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  box-shadow: inset -9px -9px 0 rgba(184, 255, 90, 0.18);
  font-size: 0.8rem;
  letter-spacing: -0.06em;
}

.brand-plus {
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.91rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  color: var(--ink-soft);
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 0 rgba(16, 24, 40, 0.14);
  text-decoration: none;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta {
  min-height: 42px;
  padding-inline: 17px;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(16, 24, 40, 0.16);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 500px;
  height: 500px;
  top: -230px;
  right: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 98, 255, 0.17), rgba(68, 98, 255, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(68, 98, 255, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.highlight {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: 0.04em;
  left: -0.05em;
  height: 0.18em;
  transform: rotate(-1deg);
  background: var(--lime);
}

.hero-copy > p {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-note {
  color: #667085;
  font-size: 0.86rem;
}

.visual-board {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--navy);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.visual-board::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -35px;
  right: -30px;
  border: 60px solid var(--blue);
  border-radius: 50%;
  opacity: 0.9;
}

.visual-board::after {
  content: "+";
  position: absolute;
  right: 24px;
  bottom: -56px;
  color: var(--lime);
  font-size: 17rem;
  font-weight: 300;
  line-height: 1;
}

.board-label {
  position: absolute;
  top: 30px;
  left: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.idea-card,
.product-card,
.market-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.idea-card {
  top: 95px;
  left: 27px;
  width: 175px;
  padding: 18px;
}

.product-card {
  top: 220px;
  left: 110px;
  width: 220px;
  padding: 21px;
  background: var(--coral);
  transform: rotate(-5deg);
}

.market-card {
  right: 23px;
  bottom: 45px;
  width: 195px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  transform: rotate(3deg);
}

.card-kicker {
  display: block;
  margin-bottom: 9px;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-board strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.connector {
  position: absolute;
  height: 2px;
  border-top: 2px dashed rgba(184, 255, 90, 0.66);
  transform-origin: left;
}

.connector-one {
  width: 92px;
  top: 222px;
  left: 75px;
  transform: rotate(51deg);
}

.connector-two {
  width: 105px;
  right: 96px;
  bottom: 170px;
  transform: rotate(38deg);
}

.mini-trust {
  padding: 22px 0;
  border-block: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading h2,
.closing h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.dark-section {
  color: var(--white);
  background: var(--navy);
}

.dark-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

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

.process-card {
  min-height: 310px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.process-card:nth-child(2) {
  background: var(--blue);
}

.process-card:nth-child(3) {
  color: var(--ink);
  background: var(--lime);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 88px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 850;
}

.process-card h3,
.service-card h3,
.principle h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.process-card p {
  margin: 0;
  color: inherit;
  opacity: 0.78;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.service-card:nth-child(1) {
  grid-row: span 2;
  min-height: 538px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--coral);
}

.service-card:nth-child(4) {
  background: var(--white);
}

.service-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 50px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.service-card:nth-child(1) p {
  color: rgba(16, 24, 40, 0.78);
  font-size: 1.1rem;
}

.principles {
  overflow: hidden;
  padding: 100px 0;
  background: var(--blue);
  color: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.quote-mark {
  display: block;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.55;
}

.principles h2 {
  max-width: 570px;
  margin: 26px 0 0;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.principles-list {
  display: grid;
  gap: 13px;
}

.principle {
  padding: 23px 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
}

.principle h3 {
  margin-bottom: 5px;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.closing {
  padding: 110px 0;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 78px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy);
}

.closing-card::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-54%);
  color: rgba(184, 255, 90, 0.13);
  font-size: 23rem;
  font-weight: 300;
  line-height: 0.8;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.closing h2 {
  margin-bottom: 20px;
}

.closing p {
  max-width: 650px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.company-data {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.company-data strong {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #667085;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--blue);
}

.legal-hero {
  padding: 82px 0 45px;
}

.legal-page {
  background: var(--white);
}

.legal-page main {
  min-height: 65vh;
}

.legal-page .legal-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-content {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 110px;
}

.legal-content section {
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  padding-left: 21px;
}

.legal-updated {
  display: inline-flex;
  margin-top: 25px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 7px 4px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .section-heading,
  .principles-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

  .visual-board {
    min-height: 440px;
  }

  .section-heading {
    gap: 20px;
  }

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

  .process-card {
    min-height: 230px;
  }

  .step-number {
    margin-bottom: 55px;
  }

  .principles-grid {
    gap: 50px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .hero {
    padding: 44px 0 58px;
  }

  h1 {
    font-size: clamp(2.8rem, 12.5vw, 4.4rem);
  }

  .visual-board {
    min-height: 410px;
    border-radius: 27px;
    transform: none;
  }

  .product-card {
    left: 48px;
  }

  .trust-row,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 42px;
  }

  .section {
    padding: 85px 0;
  }

  .service-card:nth-child(1) {
    min-height: 390px;
  }

  .principles,
  .closing {
    padding: 82px 0;
  }

  .closing-card {
    border-radius: 23px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
