:root {
  --bg: #f7f3ec;
  --ink: #182334;
  --muted: #687386;
  --line: rgba(24, 35, 52, 0.14);
  --panel: #fffdf8;
  --navy: #182334;
  --blue: #3f66d6;
  --gold: #c79a42;
  --shadow: 0 24px 70px rgba(24, 35, 52, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(63, 102, 214, 0.1), transparent 32%),
    linear-gradient(180deg, #f7f3ec 0%, #fbf8f1 100%);
}

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

.wrap {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 28px 0 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.nav strong {
  font-size: 1.2rem;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img,
.footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav a {
  color: var(--ink);
  font-weight: 800;
}

.nav > a:not(.brand) {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 253, 248, 0.72);
}

.hero-content {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.54fr);
  gap: 72px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  max-width: 900px;
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 16px 0 0;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 8.8ch;
  font-size: clamp(3rem, 6.1vw, 6.2rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
}

.intro,
.section p,
.principles p,
li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.intro {
  max-width: 68ch;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border: 0;
  border-radius: 4px;
  padding: 0 22px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.platform-orbit {
  --orbit-radius: 154px;
  position: relative;
  display: grid;
  place-items: center;
  width: min(410px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  margin-right: 6px;
}

.platform-orbit::before,
.platform-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(24, 35, 52, 0.14);
}

.platform-orbit::before {
  inset: 20px;
}

.platform-orbit::after {
  inset: 72px;
  background: rgba(255, 253, 248, 0.56);
  box-shadow: var(--shadow);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
}

.platform-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  width: 132px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(24, 35, 52, 0.12);
  animation: orbit-counter-spin 24s linear infinite;
}

.platform-node img {
  display: block;
  width: 100%;
  height: 100%;
}

.simple-logo {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.sheets-logo::before {
  content: "";
  width: 18px;
  height: 22px;
  margin-right: 8px;
  border-radius: 4px;
  background: linear-gradient(135deg, #0f9d58 0 64%, #34a853 64%);
  box-shadow: inset -5px 5px 0 rgba(255, 255, 255, 0.28);
}

.crm-logo {
  background: #fffdfa;
}

.hubspot {
  transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
}

.salesforce {
  transform: translate(-50%, -50%) rotate(60deg) translateX(var(--orbit-radius)) rotate(-60deg);
}

.excel {
  transform: translate(-50%, -50%) rotate(120deg) translateX(var(--orbit-radius)) rotate(-120deg);
}

.sheets {
  transform: translate(-50%, -50%) rotate(180deg) translateX(var(--orbit-radius)) rotate(-180deg);
}

.pipedrive {
  transform: translate(-50%, -50%) rotate(240deg) translateX(var(--orbit-radius)) rotate(-240deg);
}

.crm {
  transform: translate(-50%, -50%) rotate(300deg) translateX(var(--orbit-radius)) rotate(-300deg);
}

.orbit-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.orbit-core img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@keyframes orbit-spin {
  to {
    rotate: 360deg;
  }
}

@keyframes orbit-counter-spin {
  to {
    rotate: -360deg;
  }
}

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

.principles article,
.trust,
.board,
.cta,
.demo-form {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.principles article {
  min-height: 260px;
  padding: 26px;
}

.principles span {
  color: var(--blue);
  font-weight: 900;
}

.principles h2 {
  max-width: 9ch;
  font-size: 2rem;
}

.section {
  margin-top: 72px;
}

.trust,
.board,
.cta {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  padding: 34px;
}

.faq {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 24px;
}

.faq-list h3 {
  margin: 0;
  font-size: 1.16rem;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.trust-copy {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

ul {
  padding-left: 18px;
}

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

.board .kicker,
.board h2 {
  color: white;
}

.board p,
.timeline span {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  gap: 12px;
}

.workspace-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 18px;
}

.timeline div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 0 14px;
}

.timeline strong {
  color: white;
}

.demo-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.form-status {
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  margin-top: 72px;
  padding: 54px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(130px, 1fr));
  gap: 42px;
}

.footer-logo {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-brand p {
  max-width: 310px;
  color: var(--muted);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h2 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-column a,
.footer-bottom {
  color: var(--muted);
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero-content,
  .principles,
  .trust,
  .board,
  .faq,
  .cta {
    grid-template-columns: 1fr;
  }

  .platform-orbit {
    --orbit-radius: 124px;
    width: min(340px, calc(100vw - 56px));
    justify-self: center;
    margin-top: 22px;
  }

  .platform-node {
    width: 112px;
    height: 40px;
  }

  .orbit-core {
    width: 112px;
    height: 112px;
  }

  .trust-copy {
    border-left: 0;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .platform-node {
    animation: none;
  }
}

@media (max-width: 560px) {
  .nav,
  .timeline div {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
