.tk-page{
  --tk-text:#282934;
  --tk-muted:#667394;
  --tk-line:rgba(108,84,255,.16);
  --tk-purple:#6650ff;
  --tk-soft:#f5f2ff;
  --tk-card:rgba(255,255,255,.78);
  color:var(--tk-text);
  overflow:hidden;
}

.tk-container{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}

.tk-hero{
  position:relative;
  padding:76px 0 72px;
  background:
    radial-gradient(circle at 82% 26%,rgba(115,83,255,.18),transparent 31%),
    radial-gradient(circle at 12% 90%,rgba(237,145,255,.14),transparent 30%),
    linear-gradient(180deg,#fff 0%,#f7f5ff 100%);
}

.tk-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(430px,.86fr);
  gap:64px;
  align-items:center;
}

.tk-eyebrow{
  margin:0 0 16px;
  color:var(--tk-purple);
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tk-hero h1{
  max-width:760px;
  margin:0;
  font-size:clamp(48px,5vw,76px);
  line-height:.98;
  letter-spacing:-.055em;
}

.tk-hero__lead{
  max-width:700px;
  margin:28px 0 0;
  color:var(--tk-muted);
  font-size:19px;
  line-height:1.55;
}

.tk-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:32px;
}

.tk-btn{
  display:inline-flex;
  min-height:52px;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid transparent;
  border-radius:16px;
  font:inherit;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}

.tk-btn--primary{
  color:#fff;
  border-color:var(--tk-purple);
  background:var(--tk-purple);
}

.tk-btn--secondary{
  color:var(--tk-text);
  border-color:var(--tk-line);
  background:rgba(255,255,255,.75);
}

.tk-hero__visual{
  position:relative;
  width:min(58vw,900px);
  margin-left:-70px;
  margin-right:-160px;

  left:-90px;
}

.tk-hero__visual img{
  display:block;
  width:100%;
  height:auto;
}

.tk-section{
  padding:92px 0;
}

.tk-section-head{
  max-width:800px;
  margin:0 auto 42px;
  text-align:center;
}

.tk-section-head--left{
  margin:0;
  text-align:left;
}

.tk-section-head h2{
  margin:0;
  font-size:clamp(36px,4vw,58px);
  line-height:1.02;
  letter-spacing:-.045em;
}

.tk-section-head > p:last-child{
  margin:20px auto 0;
  max-width:720px;
  color:var(--tk-muted);
  font-size:18px;
  line-height:1.55;
}

.tk-section-head--left > p:last-child{
  margin-left:0;
}

.tk-economy{
  background:#fff;
}

.tk-economy-grid,
.tk-control-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.tk-economy-card,
.tk-control-card{
  min-height:270px;
  padding:26px;
  border:1px solid var(--tk-line);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#faf9ff);
}

.tk-economy-card > span,
.tk-control-card__num{
  display:inline-flex;
  width:52px;
  height:52px;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:var(--tk-purple);
  background:#f0edff;
  font-size:18px;
  font-weight:900;
}

.tk-economy-card h3,
.tk-control-card h3{
  margin:64px 0 10px;
  font-size:23px;
  line-height:1.08;
}

.tk-economy-card p,
.tk-control-card p{
  margin:0;
  color:var(--tk-muted);
  line-height:1.5;
}

.tk-control{
  background:#f7f5ff;
}

.tk-control-card{
  background:rgba(255,255,255,.76);
}

.tk-decisions{
  background:#fff;
}

.tk-decisions__grid{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(460px,1fr);
  gap:70px;
  align-items:center;
}

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

.tk-decision-list article{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:92px;
  padding:18px 22px;
  border:1px solid var(--tk-line);
  border-radius:22px;
  background:linear-gradient(135deg,#fff,#faf8ff);
}

.tk-decision-icon{
  display:flex;
  flex:0 0 54px;
  width:54px;
  height:54px;
  align-items:center;
  justify-content:center;
  border-radius:17px;
  color:var(--tk-purple);
  background:#f0edff;
  font-size:25px;
  font-weight:900;
}

.tk-decision-list article div{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.tk-decision-list strong{
  font-size:18px;
}

.tk-decision-list article div span{
  color:var(--tk-purple);
  font-size:14px;
  font-weight:800;
}

.tk-tech{
  display:grid;
  gap:10px;
  margin-top:30px;
}

.tk-tech > div{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:14px;
  padding:15px 17px;
  border:1px solid var(--tk-line);
  border-radius:16px;
}

.tk-tech strong{
  color:var(--tk-purple);
}

.tk-tech span{
  color:var(--tk-muted);
  line-height:1.45;
}

.tk-links{
  padding:28px 0 84px;
  background:#fff;
}

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

.tk-links__grid a{
  position:relative;
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  padding:22px;
  border:1px solid var(--tk-line);
  border-radius:22px;
  color:var(--tk-text);
  background:#faf9ff;
  text-decoration:none;
}

.tk-links__grid a > span{
  color:var(--tk-purple);
  font-size:13px;
  font-weight:800;
}

.tk-links__grid strong{
  max-width:85%;
  font-size:19px;
  line-height:1.2;
}

.tk-links__grid b{
  position:absolute;
  right:22px;
  bottom:20px;
  color:var(--tk-purple);
  font-size:26px;
}

@media (max-width:980px){
  .tk-hero{
    padding:52px 0 60px;
  }

  .tk-hero__grid,
  .tk-decisions__grid{
    grid-template-columns:1fr;
  }

  .tk-hero__grid{
    gap:42px;
  }

  .tk-hero__visual{
    width:min(100%,820px);
    margin:0 auto;
    left:0;
}

  .tk-economy-grid,
  .tk-control-grid{
    grid-template-columns:1fr 1fr;
  }

  .tk-decisions__grid{
    gap:42px;
  }

  .tk-links__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:620px){
  .tk-container{
    width:min(100% - 24px,1180px);
  }

  .tk-hero{
    padding-top:34px;
  }

  .tk-hero__visual{
    width:calc(100% + 24px);
    margin-left:-12px;
    margin-right:-12px;
  
  left:0;
}

  .tk-hero h1{
    font-size:clamp(39px,12vw,54px);
  }

  .tk-hero__lead{
    font-size:17px;
  }

  .tk-hero__actions{
    display:grid;
  }

  .tk-btn{
    width:100%;
  }

  .tk-section{
    padding:68px 0;
  }

  .tk-section-head{
    margin-bottom:28px;
    text-align:left;
  }

  .tk-section-head h2{
    font-size:clamp(34px,10vw,46px);
  }

  .tk-section-head > p:last-child{
    margin-left:0;
    font-size:16px;
  }

  .tk-economy-grid,
  .tk-control-grid{
    grid-template-columns:1fr;
  }

  .tk-economy-card,
  .tk-control-card{
    min-height:0;
  }

  .tk-economy-card h3,
  .tk-control-card h3{
    margin-top:36px;
  }

  .tk-decisions__grid{
    grid-template-columns:1fr;
  }

  .tk-tech > div{
    grid-template-columns:1fr;
    gap:4px;
  }

  .tk-links{
    padding-bottom:58px;
  }
}
