:root {
  --blue: #168fd1;
  --blue-dark: #075f95;
  --blue-deep: #06466f;
  --blue-pale: #edf8fd;
  --blue-line: #cdeaf7;
  --orange: #ff8a00;
  --orange-dark: #de7200;
  --ink: #122735;
  --ink-soft: #4a6170;
  --ink-muted: #71838e;
  --white: #ffffff;
  --surface: #f5fafc;
  --line: #dce9ef;
  --shadow: 0 24px 70px rgba(7, 95, 149, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 233, 239, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: min(300px, 54vw);
}

.brand img {
  width: 100%;
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link,
.text-link {
  color: var(--blue-dark);
  font-weight: 750;
  text-decoration: none;
}

.nav-link:hover,
.text-link:hover {
  color: var(--orange-dark);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 138, 0, 0.22);
  color: var(--white);
  font-weight: 800;
  padding: 14px 22px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 16px 28px rgba(222, 114, 0, 0.24);
}

.button:focus-visible,
.nav-link:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(22, 143, 209, 0.4);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  border-radius: 10px;
  padding: 10px 17px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(22, 143, 209, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfeff 0%, var(--blue-pale) 100%);
}

.hero::before {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(22, 143, 209, 0.17);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(50px, 8vw, 110px);
  padding-block: 72px 84px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-card h2 {
  margin: 0;
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.25rem);
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 11% 2% 6%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(22, 143, 209, 0.13) 0%,
    rgba(22, 143, 209, 0.045) 48%,
    transparent 72%
  );
  content: "";
  filter: blur(12px);
}

.hero-visual > img {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: min(375px, 82%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 22px 25px rgba(6, 70, 111, 0.17));
}

.problem-strip {
  border-block: 1px solid var(--blue-line);
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid p {
  position: relative;
  margin: 0;
  padding: 25px 28px 25px 46px;
  color: var(--blue-deep);
  font-weight: 780;
  text-align: center;
}

.problem-grid p::before {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-left: -20px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.problem-grid p + p {
  border-left: 1px solid var(--line);
}

.section {
  padding: 108px 0;
}

.section h2,
.cta-card h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.section-heading-row {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  gap: 80px;
}

.section-heading-row > p,
.calm-panel > p,
.integration-grid > div > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.feature-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 290px;
  border: 1px solid var(--blue-line);
  border-radius: 20px;
  background: var(--white);
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 22px 45px rgba(7, 95, 149, 0.1);
}

.feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 12px;
  background: #dff3fb;
  color: var(--blue-dark);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 1.14rem;
  line-height: 1.28;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.68;
}

.calm-section {
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.calm-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(60px, 10vw, 130px);
}

.calm-panel .eyebrow {
  color: #ffb14f;
}

.calm-panel > p {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.ready-list {
  display: grid;
  gap: 12px;
}

.ready-list > div {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 17px 19px;
}

.ready-list > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.ready-list p,
.ready-list strong,
.ready-list small {
  display: block;
  margin: 0;
}

.ready-list small {
  color: rgba(255, 255, 255, 0.68);
}

.integration-section {
  background: var(--surface);
}

.integration-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(50px, 9vw, 130px);
}

.integration-grid > div > p {
  max-width: 750px;
  margin-top: 28px;
  font-size: 1.08rem;
}

.testimonials {
  background: var(--white);
}

.testimonials > .shell > h2 {
  max-width: 760px;
}

.quote-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.quote-grid figure {
  position: relative;
  margin: 0;
  border: 1px solid #f4d8b7;
  border-radius: 22px;
  background: #fff9f2;
  padding: 38px;
}

.quote-grid figure::before {
  position: absolute;
  top: 16px;
  right: 26px;
  color: rgba(255, 138, 0, 0.23);
  content: "“";
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}

.quote-grid blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.5;
}

.quote-grid figcaption {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-grid figcaption span {
  display: block;
  color: var(--ink-muted);
  font-weight: 550;
}

.cta-section {
  padding: 0 0 108px;
}

.cta-card {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 72px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.13), transparent 26%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: var(--shadow);
  color: var(--white);
  padding: clamp(44px, 7vw, 76px);
}

.cta-card .eyebrow {
  color: #ffc77f;
}

.cta-card > div > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.button-light {
  background: var(--white);
  box-shadow: 0 14px 28px rgba(6, 70, 111, 0.24);
  color: var(--blue-dark);
}

.button-light:hover {
  background: #fff8ef;
  color: var(--orange-dark);
}

.cta-actions > p {
  display: grid;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.cta-actions > p a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.cta-actions > p a:hover {
  text-decoration: underline;
}

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

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

.footer-grid > div > img {
  width: 190px;
}

.footer-grid > div > p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.site-footer nav a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--blue-dark);
}

@media (max-width: 1020px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    min-height: 250px;
  }

  .feature-icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .hero-grid,
  .section-heading-row,
  .calm-grid,
  .integration-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 16px;
    padding-top: 68px;
  }

  .hero-copy {
    position: relative;
    z-index: 6;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 10px;
  }

  .section-heading-row,
  .calm-grid,
  .integration-grid,
  .cta-card {
    gap: 38px;
  }

  .section-heading-row > p {
    max-width: 650px;
  }

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

  .problem-grid p {
    text-align: left;
  }

  .problem-grid p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .cta-actions {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    width: min(225px, 58vw);
  }

  .nav-actions {
    gap: 13px;
  }

  .nav-link {
    font-size: 0.86rem;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-grid {
    padding-block: 52px 58px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual > img {
    width: min(320px, 77%);
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

  .quote-grid figure {
    padding: 30px 26px;
  }

  .cta-card {
    border-radius: 22px;
    padding: 38px 26px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

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