:root {
  --bg: #ffffff;
  --text: #111812;
  --muted: #5f6b63;
  --accent: #0f766e;
  --accent-soft: #edf5f1;
  --panel: #f8f9f6;
  --max: 960px;
  --rail: 64px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

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

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

.site-top {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-block: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.brand-row img {
  width: 50px;
  height: 50px;
}

.brand-row span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.hero {
  padding-block: 44px 72px;
}

.hero .container {
  padding: 76px var(--rail) 72px;
  border-radius: 28px;
  background: var(--panel);
}

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

h1 {
  margin-bottom: 26px;
  color: var(--text);
  font-size: clamp(46px, 6.1vw, 70px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

.hero-text {
  width: 100%;
  color: var(--text);
  font-size: clamp(21px, 2.35vw, 28px);
  line-height: 1.34;
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.primary-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.platform-section {
  padding-block: 88px 46px;
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding-inline: var(--rail);
}

.platform-item {
  min-width: 0;
}

.platform-item p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.64;
  overflow-wrap: break-word;
}

@media (min-width: 761px) {
  .platform-item p {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: -0.04em;
    hyphens: auto;
  }
}

.statement-section {
  padding-block: 32px 58px;
}

.statement-copy {
  padding-inline: var(--rail);
}

.statement-copy p {
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.38;
}

.lower-section {
  padding-block: 52px 78px;
  scroll-margin-top: 108px;
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 90px;
  align-items: start;
  padding: 58px var(--rail) 62px;
  border-radius: 28px;
  background: var(--panel);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 46px;
  padding-top: 10px;
}

.partner-logos img {
  width: auto;
  max-width: 220px;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1) saturate(0.2);
  opacity: 0.78;
}

.partner-logos img:first-child {
  max-height: 84px;
}

.contact-block a {
  color: var(--accent);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--accent-soft);
  font-size: 18px;
}

#contact:target .contact-button {
  animation: contact-pulse 0.9s ease-in-out 1;
}

.contact-block a:hover {
  text-decoration: underline;
}

@keyframes contact-pulse {
  0%,
  100% {
    background: var(--accent-soft);
    color: var(--accent);
    transform: translateY(0);
  }

  45% {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
  }
}

.site-footer {
  padding-block: 34px 46px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 70px;
  padding-inline: var(--rail);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-identity {
  display: grid;
  gap: 4px;
}

.footer-identity strong {
  color: var(--text);
  font-weight: 600;
}

.footer-note {
  margin: 0;
}

@media (max-width: 760px) {
  :root {
    --rail: 18px;
  }

  body {
    font-size: 17px;
  }

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

  .site-top {
    padding-block: 16px;
  }

  .brand-row {
    justify-content: center;
    gap: 12px;
  }

  .brand-row img {
    width: 42px;
    height: 42px;
  }

  .brand-row span {
    font-size: 22px;
  }

  .hero {
    padding-block: 22px 52px;
    text-align: center;
  }

  .hero .container {
    padding: 54px 18px 46px;
    border-radius: 22px;
  }

  h1 {
    margin-inline: auto;
    margin-bottom: 22px;
    width: 100%;
    font-size: 38px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 22px;
  }

  .hero-text {
    margin-inline: auto;
    width: 100%;
    font-size: 20px;
    line-height: 1.36;
    overflow-wrap: break-word;
  }

  .hero-actions {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
  }

  .platform-section {
    padding-block: 58px 28px;
  }

  .platform-list,
  .lower-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .platform-list,
  .footer-inner {
    padding-inline: var(--rail);
  }

  .statement-section {
    padding-block: 24px 42px;
  }

  .statement-copy {
    padding-inline: var(--rail);
  }

  .statement-copy p {
    font-size: 21px;
    line-height: 1.4;
  }

  .platform-item {
    padding-right: 0;
  }

  .platform-item p {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .lower-section {
    padding-block: 30px 52px;
    scroll-margin-top: 86px;
  }

  .lower-grid {
    padding: 44px var(--rail) 46px;
    border-radius: 22px;
  }

  .partner-logos {
    gap: 34px;
  }

  .partner-logos img {
    max-width: 168px;
    max-height: 50px;
  }

  .partner-logos img:first-child {
    max-height: 68px;
  }

  .site-footer {
    padding-block: 34px 42px;
  }
}

@media (max-width: 420px) {
  :root {
    --rail: 16px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .platform-list,
  .footer-inner,
  .statement-copy {
    padding-inline: var(--rail);
  }

  .hero .container {
    padding-inline: var(--rail);
  }

  h1 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 19px;
  }

  .primary-cta,
  .contact-button {
    width: 100%;
  }
}
