:root {
  --ink: #091117;
  --paper: #f5f6fa;
  --white: #ffffff;
  --lilac: #ded8f4;
  --sky: #73c9ed;
  --cyan: #078fc8;
  --teal: #168e87;
  --deep-teal: #075f55;
  --green: #48f5a0;
  --line: rgba(9, 17, 23, 0.16);
  --muted: #4c5963;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

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

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

.concept-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 249, 252, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.brand strong {
  color: #0b9d65;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.header-cta {
  color: var(--white);
  background: var(--ink);
}

.concept-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: linear-gradient(100deg, #e6ddf3 0%, #b7dff2 25%, #39afe0 48%, #078fc8 66%, #168e87 84%, #075f55 100%);
}

.hero-stripes,
.cta-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 66px,
    rgba(255, 255, 255, 0.21) 67px,
    rgba(255, 255, 255, 0.21) 68px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  padding-top: 140px;
  padding-bottom: 126px;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: #056f62;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 960px;
  font-size: 78px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}

h1 span {
  display: block;
  font-weight: 900;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  justify-content: flex-start;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.metric-band {
  background: rgba(255, 255, 255, 0.76);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.metric-grid div {
  min-height: 132px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.metric-grid div:first-child {
  border-left: 1px solid var(--line);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: #087f72;
  font-size: 29px;
  line-height: 1;
}

.metric-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 100px 0;
}

.network-section {
  background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
}

.network-layout {
  display: block;
}

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

h2 {
  max-width: 820px;
  font-size: 50px;
  line-height: 1.02;
  font-weight: 900;
}

.network-copy > p {
  color: #39464f;
  font-size: 21px;
  line-height: 1.42;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.tag-row span {
  padding: 10px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.statement-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, #e6ddf3 0%, #b7dff2 27%, #39afe0 52%, #168e87 82%, #075f55 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 66px,
    rgba(255, 255, 255, 0.21) 67px,
    rgba(255, 255, 255, 0.21) 68px
  );
  pointer-events: none;
}

.statement-inner {
  position: relative;
  z-index: 1;
  padding-top: 82px;
  padding-bottom: 82px;
}

.statement-inner h2 {
  max-width: 980px;
}

.statement-inner strong {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 18px;
  color: var(--green);
  background: var(--ink);
  font-size: 33px;
  line-height: 1;
}

.services-section {
  background: #edf0f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 42px;
}

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

.service-card {
  display: flex;
  min-height: 510px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(9, 17, 23, 0.2);
  border-radius: 8px;
}

.service-card-lilac {
  background: linear-gradient(155deg, #f8f6fc 0%, #dad6f0 100%);
}

.service-card-cyan {
  background: linear-gradient(155deg, #dff6fc 0%, #70cbea 100%);
}

.service-card-teal {
  color: var(--white);
  background: linear-gradient(155deg, #1e9b95 0%, #075e55 100%);
}

.card-label {
  margin-bottom: 26px;
  color: #08695e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-teal .card-label {
  color: #98f8d0;
}

h3 {
  font-size: 29px;
  line-height: 1.05;
}

.service-card > p:not(.card-label) {
  margin-top: 24px;
  color: #344149;
  font-size: 17px;
  line-height: 1.45;
}

.service-card-teal > p:not(.card-label) {
  color: rgba(255, 255, 255, 0.78);
}

.service-card ul {
  margin: 28px 0 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.35;
}

.service-card li + li {
  margin-top: 10px;
}

.price {
  margin-top: auto;
  padding-top: 30px;
  color: #075f55;
  font-size: 24px;
}

.service-card-teal .price {
  color: var(--green);
}

.process-section {
  color: var(--ink);
  background: linear-gradient(110deg, #f5f2fb 0%, #e8f5fb 52%, #e6f6f0 100%);
  border-bottom: 1px solid var(--line);
}

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

.process-grid article {
  min-height: 270px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(9, 17, 23, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.process-grid article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff 0%, #ded8f4 100%);
}

.process-grid article:nth-child(2) {
  background: linear-gradient(145deg, #f6fdff 0%, #9ddcf0 100%);
}

.process-grid article:nth-child(3) {
  background: linear-gradient(145deg, #f4fdf9 0%, #a8e8ce 100%);
}

.process-grid article:nth-child(4) {
  background: linear-gradient(145deg, #eaf9fd 0%, #89cfc9 100%);
}

.process-grid span {
  display: block;
  margin-bottom: 50px;
  color: #087f72;
  font-size: 16px;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 14px;
}

.process-grid p {
  max-width: 470px;
  color: #344149;
  font-size: 17px;
  line-height: 1.42;
}

.scope-section {
  background: #edf0f6;
  border-bottom: 1px solid var(--line);
}

.scope-heading h2 {
  max-width: 920px;
}

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

.scope-card {
  min-height: 245px;
  padding: 30px;
  border: 1px solid rgba(9, 17, 23, 0.18);
  border-radius: 8px;
}

.scope-card-mint {
  background: linear-gradient(150deg, #eefcf6 0%, #a8e8ce 100%);
}

.scope-card-lilac {
  background: linear-gradient(150deg, #faf8fd 0%, #d9d3ef 100%);
}

.scope-card-cyan {
  background: linear-gradient(150deg, #eaf9fd 0%, #83d1ea 100%);
}

.scope-card h3 {
  max-width: 250px;
}

.scope-card p {
  margin-top: 54px;
  color: #344149;
  font-size: 17px;
  line-height: 1.45;
}

.cases-section {
  background: #f9f9fc;
}

.cases-heading {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.text-link {
  color: #087f72;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

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

.case-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 0.7fr 1.2fr;
  gap: 36px;
  align-items: center;
  min-height: 260px;
  background: linear-gradient(100deg, #7489aa 0%, #a8d9ee 48%, #9edfc8 100%);
}

.case-card-featured img {
  width: 250px;
}

.case-card-featured > p {
  font-size: 18px;
  line-height: 1.42;
}

.case-card-dark {
  color: var(--white);
  background: var(--ink);
}

.case-card-light {
  background: linear-gradient(150deg, #ffffff 10%, #ddecf6 100%);
}

.case-brand {
  display: flex;
  gap: 24px;
  align-items: center;
}

.case-brand img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.case-brand > strong {
  font-size: 36px;
}

.gecrypto {
  width: 300px;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.case-result {
  margin-top: 58px;
}

.case-card-featured .case-result {
  margin-top: 0;
}

.case-result strong,
.case-result span {
  display: block;
}

.case-result strong {
  color: #087f72;
  font-size: 38px;
  line-height: 1;
}

.case-card-dark .case-result strong {
  color: var(--green);
}

.case-result span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.case-card-dark .case-result span {
  color: rgba(255, 255, 255, 0.68);
}

.blog-section {
  background: #edf0f6;
  border-top: 1px solid var(--line);
}

.blog-heading {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.blog-heading h2 {
  max-width: 760px;
}

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

.blog-card {
  display: flex;
  min-height: 430px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(9, 17, 23, 0.18);
  border-radius: 8px;
}

.blog-card-lilac {
  background: linear-gradient(150deg, #faf8fd 0%, #d9d3ef 100%);
}

.blog-card-cyan {
  background: linear-gradient(150deg, #eaf9fd 0%, #83d1ea 100%);
}

.blog-card-mint {
  background: linear-gradient(150deg, #eefcf6 0%, #a8e8ce 100%);
}

.blog-meta {
  margin-bottom: 24px;
  color: #087f72;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 25px;
}

.blog-card > p:not(.blog-meta) {
  margin-top: 24px;
  color: #344149;
  font-size: 16px;
  line-height: 1.45;
}

.blog-card .text-link {
  margin-top: auto;
  padding-top: 30px;
}

.gradient-cta {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(105deg, #e3dcf3 0%, #63c4ea 40%, #098fc2 64%, #16917f 100%);
  border-top: 1px solid var(--ink);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: start;
}

.cta-copy h2 {
  max-width: 620px;
  font-size: 58px;
}

.cta-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.4;
}

.cta-card {
  display: flex;
  min-height: 400px;
  padding: 34px;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(9, 17, 23, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.cta-card .card-label {
  margin-bottom: 24px;
}

.cta-card h3 {
  max-width: 500px;
}

.cta-card ul {
  margin: 28px 0 0;
  padding-left: 20px;
  color: #344149;
  font-size: 17px;
  line-height: 1.4;
}

.cta-card li + li {
  margin-top: 10px;
}

.cta-card .button {
  margin-top: auto;
}

.concept-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand span {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

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

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav {
    display: none;
  }

  .concept-hero {
    min-height: 720px;
    background: linear-gradient(150deg, #e6ddf3 0%, #a9daf0 32%, #159ed2 62%, #168e87 100%);
  }

  .hero-inner {
    min-height: 720px;
    padding-top: 132px;
    padding-bottom: 132px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: 45px;
    line-height: 0.98;
  }

  .metric-grid,
  .service-grid,
  .process-grid,
  .scope-grid,
  .blog-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid div,
  .metric-grid div:first-child {
    min-height: 102px;
    padding: 24px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  h2,
  .cta-copy h2 {
    font-size: 38px;
  }

  .network-copy > p {
    font-size: 18px;
  }

  .statement-inner {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .statement-inner strong {
    font-size: 27px;
  }

  .service-card {
    min-height: 470px;
  }

  .process-grid article {
    min-height: 245px;
    padding: 26px;
  }

  .scope-card {
    min-height: 220px;
    padding: 26px;
  }

  .scope-card p {
    margin-top: 34px;
  }

  .cases-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card {
    min-height: 360px;
  }

  .case-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 460px;
  }

  .case-card-featured .case-result {
    margin-top: 10px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .cta-card {
    min-height: 380px;
    padding: 26px;
  }

  .footer-inner {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 23px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 15px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .case-card {
    padding: 26px;
  }

  .case-brand {
    gap: 18px;
  }

  .case-brand > strong {
    font-size: 30px;
  }
}
