:root {
    --tk-pink: #e81899;
    --tk-dark: #111111;
    --tk-bg-light: #f8f9fb;
}

.tk-hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--tk-bg-light);
    font-family: 'Inter', sans-serif; /* Recommended font */
    padding: 80px 20px;
}

/* Background Grid Animation */
.tk-hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(232, 24, 153, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 24, 153, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: translate(-25%, -25%) rotate(-5deg);
    animation: tk-grid-move 60s linear infinite;
    z-index: 1;
}

@keyframes tk-grid-move {
    0% { transform: translate(-25%, -25%) rotate(-5deg); }
    100% { transform: translate(-10%, -10%) rotate(-5deg); }
}

.tk-hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 24, 153, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Typography & Content */
.tk-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.tk-hero-title {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 800;
    color: var(--tk-dark);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}

.tk-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.tk-btn-primary {
    background-color: var(--tk-pink);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.tk-btn-secondary {
    background-color: transparent;
    color: var(--tk-pink);
    border: 1.5px solid rgba(232, 24, 153, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.tk-btn-primary:hover, .tk-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 24, 153, 0.15);
}

/* Visual Section & Crosshair Frame */
.tk-hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
}

.tk-visual-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tk-frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(232, 24, 153, 0.4);
    border-style: solid;
}

.top-left { top: 0; left: 0; border-width: 1px 0 0 1px; }
.top-right { top: 0; right: 0; border-width: 1px 1px 0 0; }
.bottom-left { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.bottom-right { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.tk-frame-axis-h {
    position: absolute;
    left: -40px;
    right: -40px;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 24, 153, 0.2), transparent);
}

.tk-frame-axis-v {
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(232, 24, 153, 0.2), transparent);
}

.tk-axis-label {
    position: absolute;
    color: var(--tk-pink);
    opacity: 0.6;
    font-size: 12px;
    font-weight: bold;
}

.tk-frame-axis-h .tk-axis-label { left: 0; transform: translateY(-50%); }

/* Main Image */
.tk-hero-main-img-container {
    perspective: 1000px;
    z-index: 5;
}

.tk-hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 20px 40px rgba(232, 24, 153, 0.2));
}

/* Small animated particles */
.tk-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--tk-pink);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}



:root {
    --tk-v-pink: #e81899;
    --tk-v-dark: #111111;
    --tk-v-gray: #71717a;
    --tk-v-line: rgba(0, 0, 0, 0.08);
}

.tk-vision-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background Grid & Patterns */
.tk-vision-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tk-vision-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--tk-v-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--tk-v-line) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center center;
    /* Subtle movement animation */
    animation: tkGridShift 20s linear infinite;
}

@keyframes tkGridShift {
    from { background-position: center 0px; }
    to { background-position: center 80px; }
}

/* Diagonal Stripe Patterns on Sides */
.tk-vision-side-pattern {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    opacity: 0.4;
}

.tk-vision-side-pattern.left {
    left: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, var(--tk-v-line) 10px, var(--tk-v-line) 11px);
}

.tk-vision-side-pattern.right {
    right: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--tk-v-line) 10px, var(--tk-v-line) 11px);
}

/* Plus Markers (+) */
.tk-vision-plus-markers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Match width of content box */
    height: 400px;
}

.tk-marker {
    position: absolute;
    color: var(--tk-v-pink);
    font-size: 24px;
    font-weight: 300;
    opacity: 0.8;
}

.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; }
.bottom-left { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }

/* Content Styling */
.tk-vision-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.tk-vision-label {
    display: block;
    color: var(--tk-v-pink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
}

.tk-vision-heading {
    font-size: clamp(32px, 5vw, 64px);
    color: var(--tk-v-dark);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

/* Faded Text Effect */
.tk-fade-text {
    background: linear-gradient(180deg, var(--tk-v-dark) 30%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.tk-vision-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--tk-v-gray);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: tkFadeUp 1s ease forwards 0.5s;
}

@keyframes tkFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.tk-software-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    background: #f8f9fb;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.tk-software-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 24, 153, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 24, 153, 0.045) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.9;
    pointer-events: none;
}

.tk-software-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

.tk-software-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
}

.tk-software-label {
    display: inline-block;
    color: var(--tk-pink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.tk-software-title {
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #111111;
    font-weight: 800;
    margin: 0 0 20px;
}

.tk-software-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin: 0 auto;
    max-width: 760px;
}

.tk-software-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tk-software-card {
    position: relative;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 24, 153, 0.12);
    border-radius: 24px;
    padding: 30px 26px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(19, 19, 19, 0.04);
}

.tk-software-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(232, 24, 153, 0.10);
    border-color: rgba(232, 24, 153, 0.22);
}

.tk-software-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff2aa8 0%, #c91d8a 100%);
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 14px 28px rgba(232, 24, 153, 0.18);
}

.tk-software-card h3 {
    font-size: 22px;
    line-height: 1.25;
    color: #111;
    font-weight: 700;
    margin: 0 0 12px;
}

.tk-software-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

.tk-software-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 46px;
    flex-wrap: wrap;
}

/* small safe responsive updates */
@media (max-width: 991px) {
    .tk-software-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tk-hero-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .tk-software-section,
    .tk-vision-section,
    .tk-hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .tk-software-grid {
        grid-template-columns: 1fr;
    }

    .tk-hero-title {
        margin-bottom: 28px;
    }

    .tk-hero-buttons {
        margin-bottom: 40px;
    }

    .tk-vision-section,
    .tk-software-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}





:root{
  --eth-bg-1:#060914;
  --eth-bg-2:#0d1533;
  --eth-bg-3:#12225a;
  --eth-card-1:#4f6fff;
  --eth-card-2:#6f47ff;
  --eth-line:rgba(255,255,255,0.08);
  --eth-line-soft:rgba(255,255,255,0.05);
  --eth-text:#ffffff;
  --eth-text-soft:rgba(255,255,255,0.72);
  --eth-text-muted:rgba(255,255,255,0.48);
  --eth-pink:#ff2ca8;
  --eth-yellow:#ffd84a;
  --eth-orange:#ffa63d;
  --eth-blue:#53c8ff;
  --eth-white:#ffffff;
}

.eth-showcase-wrap{
  padding: 60px 20px;
  background:
    radial-gradient(circle at top left, rgba(64,122,255,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,44,168,0.10), transparent 25%),
    #050812;
}

.eth-showcase-shell{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 760px;
  display: grid;
  grid-template-columns: 240px 1fr;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(69,125,255,0.35), transparent 30%),
    radial-gradient(circle at 80% 75%, rgba(255,44,168,0.12), transparent 22%),
    linear-gradient(135deg, #070c19 0%, #0c1736 45%, #0c1d49 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.eth-showcase-shell::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events:none;
  opacity:.35;
}

/* SIDEBAR */
.eth-showcase-sidebar{
  position: relative;
  z-index: 2;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display:flex;
  flex-direction:column;
}

.eth-showcase-logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:24px;
  font-weight:800;
  letter-spacing:.3px;
  margin-bottom:38px;
}

.eth-logo-icon{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #ff2ca8, #7b61ff);
  box-shadow: 0 10px 30px rgba(255,44,168,0.25);
}

.eth-showcase-menu{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.eth-showcase-menu a{
  color: var(--eth-text-soft);
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid transparent;
  transition:all .3s ease;
  font-size:15px;
  position:relative;
}

.eth-showcase-menu a i{
  width:18px;
  text-align:center;
}

.eth-showcase-menu a:hover,
.eth-showcase-menu a.active{
  color:#fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.eth-showcase-menu a b{
  margin-left:auto;
  min-width:20px;
  height:20px;
  border-radius:999px;
  background: var(--eth-pink);
  color:#fff;
  font-size:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.eth-showcase-side-bottom{
  margin-top:auto;
}

.eth-side-chip{
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:999px;
  padding:10px 14px;
  font-size:14px;
  margin-bottom:18px;
}

.eth-side-socials{
  display:flex;
  gap:12px;
}

.eth-side-socials i{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

/* MAIN */
.eth-showcase-main{
  position:relative;
  z-index:2;
  padding:24px 28px 28px;
}

.eth-showcase-topbar{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin-bottom:28px;
}

.eth-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.eth-pill{
  color:#fff;
  background: rgba(7,12,24,0.55);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:999px;
  padding:11px 16px;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.eth-pill.wallet{
  background: linear-gradient(135deg, rgba(255,44,168,0.95), rgba(132,84,255,0.95));
}

.eth-top-icons{
  display:flex;
  gap:12px;
}

.eth-top-icons span{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background: rgba(7,12,24,0.6);
  border:1px solid rgba(255,255,255,0.08);
}

/* HEADER */
.eth-showcase-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:26px;
}

.eth-breadcrumb{
  color: var(--eth-text-soft);
  font-size:15px;
  margin-bottom:8px;
}

.eth-showcase-head h2{
  margin:0;
  color:#fff;
  font-size:54px;
  line-height:1;
  font-weight:800;
  letter-spacing:-1px;
}

.eth-price-box{
  color:#fff;
  font-size:32px;
  font-weight:800;
  white-space:nowrap;
  padding-top:8px;
}

/* BOARD */
.eth-board-wrap{
  position:relative;
  border-radius:28px;
  padding:26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 15px 50px rgba(0,0,0,0.25);
}

.eth-board-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 25% 20%, rgba(90,145,255,0.30), transparent 20%),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,0.10), transparent 16%),
    radial-gradient(circle at 90% 30%, rgba(95,85,255,0.24), transparent 22%);
  pointer-events:none;
}

.eth-board-glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 45% 45%, rgba(110,153,255,0.18), transparent 30%);
  filter: blur(30px);
  pointer-events:none;
}

.eth-pool-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap:16px;
  margin-bottom:22px;
}

.eth-pool-card{
  min-height:148px;
  border-radius:22px;
  padding:18px 16px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 14px 30px rgba(0,0,0,0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}

.eth-pool-card:hover{
  transform: translateY(-4px);
}

.eth-pool-card.active{
  background:
    linear-gradient(135deg, rgba(82,111,255,0.96), rgba(114,71,255,0.96));
}

.eth-pool-card.locked{
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
}

.eth-pool-card.locked::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

.eth-pool-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:26px;
  color:#fff;
  font-size:18px;
}

.eth-pool-top span{
  font-size:20px;
  font-weight:700;
}

.eth-pool-top strong{
  font-size:24px;
  font-weight:800;
}

.eth-pool-dots{
  display:flex;
  justify-content:center;
  gap:14px;
  margin:20px 0 28px;
}

.dot{
  width:22px;
  height:22px;
  border-radius:50%;
  background: rgba(255,255,255,0.18);
  display:inline-block;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15);
}

.dot.white{ background:#fff; }
.dot.yellow{ background: var(--eth-yellow); }
.dot.orange{ background: var(--eth-orange); }
.dot.blue{ background: var(--eth-blue); }

.eth-pool-bottom{
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:rgba(255,255,255,0.92);
  font-size:15px;
  font-weight:600;
}

.eth-pool-bottom span{
  display:flex;
  align-items:center;
  gap:8px;
}

.eth-pool-lock{
  height:85px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:54px;
  color: rgba(255,255,255,0.09);
}

/* LEGEND */
.eth-legend-bar{
  position:relative;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:22px;
  padding:16px 18px;
  border-radius:18px;
  background: rgba(0,0,0,0.18);
  border:1px solid rgba(255,255,255,0.08);
}

.leg{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--eth-text-soft);
  font-size:14px;
  font-weight:600;
}

.leg .dot{
  width:12px;
  height:12px;
}

.eth-legend-btn{
  margin-left:auto;
  border:none;
  color:#fff;
  background: linear-gradient(135deg, #5f76ff, #8a56ff);
  border-radius:999px;
  padding:11px 16px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 10px 20px rgba(98,106,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .eth-pool-grid{
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}

@media (max-width: 991px){
  .eth-showcase-shell{
    grid-template-columns: 1fr;
  }

  .eth-showcase-sidebar{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }

  .eth-showcase-head{
    flex-direction:column;
  }

  .eth-showcase-head h2{
    font-size:42px;
  }

  .eth-price-box{
    font-size:26px;
  }

  .eth-pool-grid{
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 767px){
  .eth-showcase-wrap{
    padding: 30px 12px;
  }

  .eth-showcase-main{
    padding:18px;
  }

  .eth-showcase-topbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .eth-pool-grid{
    grid-template-columns: 1fr;
  }

  .eth-legend-bar{
    gap:14px;
  }

  .eth-legend-btn{
    margin-left:0;
    width:100%;
    justify-content:center;
  }
}