:root {
  --brand: #3b4f72;
  --brand-dark: #2f405e;
  --accent: #fabf19;
  --ink: #3b4f72;
  --muted: #5f6877;
  --surface: #ffffff;
  --soft: #f5f5f7;
  --soft-blue: #edf2f8;
  --line: rgba(9, 11, 16, 0.1);
  --shadow: 0 28px 80px rgba(33, 42, 61, 0.12);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  max-width: 930px;
  margin-left: max(20px, calc((100vw - var(--max-width)) / 2));
  margin-right: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 76vh, 760px);
  background: var(--brand);
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(26, 38, 62, 0), rgba(22, 32, 52, 0.08));
}

.hero-art {
  position: absolute;
  inset: auto 0 -18px;
  z-index: -1;
  height: clamp(390px, 40vw, 560px);
  overflow: hidden;
  pointer-events: none;
}

.hero-art::after {
/*
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(59, 79, 114, 0.28), rgba(59, 79, 114, 0) 38%),
    linear-gradient(180deg, var(--brand) 0, rgba(59, 79, 114, 0) 18%);
*/
}

.hero-art-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(980px, 92vw, 1320px);
  max-width: none;
  opacity: 1;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 12vw, 125px);
  padding: 34px 0 clamp(56px, 9vw, 96px);
}

.brand {
  width: 118px;
}

.hero-contact-link {
  position: absolute;
  top: 34px;
  right: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
}

.hero-contact-link img {
  width: 42px;
  height: 42px;
  transition: filter 180ms ease;
}

.hero-contact-link:hover img,
.hero-contact-link:focus-visible img {
  filter: brightness(0) invert(1);
}

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

.accent-bar {
  display: block;
  width: 84px;
  height: 8px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.15rem, 6.2vw, 5.7rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.section {
  padding: 112px 0 50px 0;
}

.intro-section {
  padding-top: 136px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.dark {
  color: var(--ink) !important;
}

.section-title,
.feature-card h3,
.price-card h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.25rem);
}

.lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 620px;
  grid-template-rows: auto 1fr;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: var(--soft);
  isolation: isolate;
  box-shadow: 0 5px 20px 0 rgba(100, 100, 100, 0.125), 0 5px 20px 0 rgba(100, 100, 100, 0.125);
}

.feature-card-large {
  grid-column: span 2;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: 1fr;
  align-items: center;
}

.feature-card-dark {
  background: var(--brand);
  color: #fff;
}

.feature-card-warm {
  background: #fcdf8c;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.feature-card h3 {
  font-size: clamp(2.1rem, 3.25vw, 3.55rem);
}

.feature-title-with-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.feature-title-icon {
  flex: 0 0 100px;
  width: 90px;
  height: 90px;
}

.feature-card p:not(.card-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

.feature-card-dark h3,
.feature-card-dark p:not(.card-kicker) {
  color: #fff;
}

.feature-card-dark p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.lead a {
      color: var(--accent);
}
.lead a:hover {
      color: rgba(150, 150, 150, 0.72);
}

.feature-visual {
  position: relative;
  min-height: 320px;
  transform: translate3d(0, calc(var(--scroll-shift, 0) * -14px), 0);
  transition: transform 0.15s linear;
}

.dash-shell {
  position: absolute;
  right: -4%;
  top: 50%;
  display: grid;
  width: min(720px, 100%);
  min-height: 420px;
  grid-template-columns: 104px 1fr;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-50%) rotate(-1deg);
}

.dash-sidebar {
  background:
    linear-gradient(var(--accent), var(--accent)) 28px 34px / 42px 42px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)) 28px 116px / 48px 12px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)) 28px 152px / 38px 12px no-repeat,
    var(--brand);
}

.dash-main {
  padding: 28px;
  background: #f8f9fb;
}

.dash-toolbar,
.dash-card,
.dash-columns span {
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(9, 11, 16, 0.06);
}

.dash-toolbar {
  width: 58%;
  height: 42px;
  margin-bottom: 24px;
}

.dash-card.wide {
  height: 152px;
  margin-bottom: 22px;
  background:
    linear-gradient(90deg, rgba(59, 79, 114, 0.12), transparent),
    #fff;
}

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

.dash-columns span {
  height: 138px;
}

.sync-canvas {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 380px;
  max-width: 100%;
  height: 260px;
  transform: translateX(-50%);
}

.sync-canvas svg {
  position: absolute;
  left: 50%;
  top: 32px;
  width: 320px;
  height: 190px;
  fill: none;
  stroke: rgba(59, 79, 114, 0.32);
  stroke-width: 3;
  stroke-linecap: round;
  transform: translateX(-50%);
}

.sync-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sync-node.main {
  left: 50%;
  top: 128px;
  width: 104px;
  height: 104px;
  color: #fff;
  background: var(--brand);
  font-weight: 600;
  transform: translate(-50%, -50%);
  font-size: 30px;
  padding: 25px
}

.node-a {
  left: 18px;
  top: 50px;
}

.node-b {
  right: 18px;
  top: 54px;
}

.node-c {
  left: 52px;
  top: 164px;
}

.node-a::after,
.node-b::after,
.node-c::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.browser-card {
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: min(520px, 108%);
  padding: 22px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(9, 11, 16, 0.22);
}

.browser-top {
  width: 92px;
  height: 12px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.browser-hero {
  height: 144px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.34));
}

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

.browser-grid span {
  height: 92px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.phone-shell {
  position: absolute;
  right: 2%;
  bottom: -38px;
  width: min(360px, 92%);
  min-height: 330px;
  padding: 42px 28px;
  border-radius: 44px 44px 0 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.message {
  display: block;
  height: 24px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(59, 79, 114, 0.16);
}

.message.left {
  width: 82%;
}

.message.right {
  width: 72%;
  margin-left: auto;
  background: rgba(250, 191, 25, 0.55);
}

.message.short {
  width: 54%;
}

.message.accent {
  background: var(--brand);
}

.command-stack {
  position: absolute;
  right: -22px;
  bottom: -26px;
  display: grid;
  width: min(400px, 96%);
  gap: 14px;
}

.command-card {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(147, 104, 0, 0.12);
}

.command-card.active {
  background: #fff;
}

.command-card span {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--brand);
}

.command-card.active span {
  background: var(--accent);
}

.support-card {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 5px 20px 0 rgba(100, 100, 100, 0.125), 0 5px 20px 0 rgba(100, 100, 100, 0.125);
}

.support-card .section-title,
.support-card p {
  color: #fff;
}

.support-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.65;
}

.support-card a {
      color: var(--accent);
}
.support-card a:hover {
      color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 880px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  color: #232832;
  overflow: hidden;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--soft-blue);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 600;
}

.client-logo:nth-child(4n) .logo-mark {
  border-radius: 999px;
  background: #fff3cf;
  color: #8b6400;
}

.client-logo:nth-child(5n) .logo-mark {
  border-radius: 8px 16px 8px 16px;
}

.client-logo span:last-child {
  min-width: 0;
  overflow: hidden;
  color: #3e4653;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-section {
  padding-top: 64px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card,
.contact-card {
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 58px);
}

.price-card {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 5px 20px 0 rgba(100, 100, 100, 0.125), 0 5px 20px 0 rgba(100, 100, 100, 0.125);
}

.price-card h2 {
  color: #fff;
  font-size: clamp(2.6rem, 3.45vw, 3.8rem);
}

.price {
  margin-top: 72px;
  color: var(--accent);
  font-size: clamp(3.1rem, 4.8vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.dollar{
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

.tax,
.no-fee {
  margin: 10px 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.no-fee {
  display: inline-flex;
  margin-top: 28px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
  font-size: 17px;
}

.contact-card {
  background: var(--soft);
  box-shadow: 0 5px 20px 0 rgba(100, 100, 100, 0.125), 0 5px 20px 0 rgba(100, 100, 100, 0.125);
}

.contact-card h2 {
  font-size: clamp(2.6rem, 3.45vw, 3.8rem);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.form-message {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.form-message-success {
  color: #255234;
  background: #e4f5e9;
}

.form-message-error {
  color: #7a2630;
  background: #fde8eb;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2b3140;
  font-size: 1.1rem;
  font-weight: 400;
}

.spam-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(9, 11, 16, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  color: var(--ink);
  outline: 0;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(59, 79, 114, 0.42);
  box-shadow: 0 0 0 5px rgba(59, 79, 114, 0.08);
}

.submit-button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.footer {
  padding: 46px 0;
  background: var(--brand);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 86px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a {
  color: inherit;
  font-weight: 700;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

a.sodio {
    width: 25px;
    height: 7px;
    background-image: url('../img/sodio.png');
    background-repeat: no-repeat;
    background-position: left top;
    display: block;
    float: right;
    margin-top: 25px;
    }

:hover.sodio , a:active.sodio   {
    background-position: left bottom  ;
}

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

  .reveal-item,
  .feature-visual,
  .submit-button {
    transition: none;
    transform: none;
  }

}

@media (max-width: 980px) {
  .hero-inner {
    gap: clamp(56px, 10vw, 96px);
  }

  .section {
    padding: 84px 0;
  }

  .narrow {
    width: min(calc(100% - 40px), var(--max-width));
    margin-inline: auto;
  }

  .feature-grid,
  .feature-card-large,
  .support-card,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large {
    grid-column: auto;
    min-height: 560px;
  }

  .feature-card-large {
    gap: 56px;
  }

  .dash-shell {
    right: auto;
    left: 0;
    width: 100%;
    transform: translateY(-34%) rotate(-1deg);
  }

  .clients-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1136px) {
  .hero-art {
    bottom: -22px;
    height: clamp(330px, 24vw, 390px);
  }

  .hero-art-image {
    width: clamp(860px, 58vw, 1200px);
  }

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

  .hero h1 {
    font-size: clamp(3.5rem, 4.45vw, 4.45rem);
    letter-spacing: -0.045em;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 50px), var(--max-width));
  }

  .hero {
    min-height: 620px;
  }

  .hero-art {
    bottom: -10px;
    height: 300px;
  }

  .hero-art::after {
    background: linear-gradient(180deg, var(--brand) 0, rgba(59, 79, 114, 0) 18%);
  }

  .hero-art-image {
    left: 56%;
    width: 700px;
  }

  .hero-inner {
    gap: 52px;
    padding: 24px 0 220px;
  }

  .brand {
    width: 94px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .section {
    padding: 66px 0;
  }

  .intro-section {
    padding-top: 75px;
  }

  .section-title {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }

  .feature-card,
  .price-card,
  .contact-card,
  .support-card {
    border-radius: 28px;
    padding: 26px;
  }

  .feature-card,
  .feature-card-large {
    min-height: 520px;
  }

  .feature-card-large {
    gap: 42px;
    min-height: 620px;
  }

  .feature-card h3 {
    font-size: 2.2rem;
  }

  .feature-title-icon {
    flex-basis: 70px;
    width: 70px;
    height: 70px;
  }

  .dash-shell {
    grid-template-columns: 72px 1fr;
    min-height: 300px;
    transform: translateY(-30%) rotate(-1deg);
  }

  .dash-main {
    padding: 18px;
  }

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

  .dash-columns span {
    height: 54px;
  }

  .clients-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
  }

  .client-logo {
    min-height: 54px;
    padding: 9px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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