:root {
  color-scheme: dark;
  --bg: #050708;
  --panel: #101518;
  --panel-strong: #151c20;
  --line: rgba(221, 238, 239, 0.14);
  --text: #edf7f4;
  --muted: #9aacad;
  --teal: #02a6b4;
  --teal-deep: #006b74;
  --gold: #a98a15;
  
--gold-soft: #f3d267;
--gold-border: rgba(179,139,45,0.30);
--gold-line: rgba(179,139,45,0.18);

  --rose: #e46f9b;
  --shadow: rgba(0, 0, 0, 0.42);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(2, 166, 180, 0.12), transparent 28rem),
    linear-gradient(315deg, rgba(169, 138, 21, 0.12), transparent 24rem),
    var(--bg);
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 22rem;
  height: 22rem;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(2, 166, 180, 0.18), transparent 64%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 8, 0.82);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero,
.tool-section,
.workflow,
.site-footer {
  position: relative;
  z-index: 1;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: clamp(0.85rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a:hover {
  color: var(--text);
}

.cart-control {
  min-width: 7.5rem;
  min-height: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.86fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem) 4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button,
.filter,
.tool-card button,
.drawer-close {
  min-height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  font-weight: 800;
}

.button:hover,
.filter:hover,
.tool-card button:hover,
.drawer-close:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 166, 180, 0.56);
}

.primary {
  color: #041314;
  background: var(--teal);
}

.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  display: flex;
  justify-content: center;
  min-height: 26rem;
  overflow: hidden;
}

.toolset-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(22rem, 100%);
  isolation: isolate;
}



.toolset-image-wrap img {
  display: block;
  width: min(100%, 36rem);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.toolset-image-wrap:hover img {
  transform: none;
}



.tool-section,
.workflow {
  padding: 4rem clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.section-heading > p {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.65;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.filter {
  padding: 0 0.95rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.filter.active {
  color: #041314;
  background: var(--gold-soft);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.75rem;
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 15.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tool-card:hover,
.tool-card.selected {
  border-color: rgba(2, 166, 180, 0.55);
  background: linear-gradient(145deg, rgba(2, 166, 180, 0.14), rgba(255, 255, 255, 0.03));
}

.tool-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0.35rem auto 0.75rem;
}

.tool-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
  margin-bottom: 0.35rem;
}

.badge,
.tool-type {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.tool-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.8rem;
  margin-bottom: 0.65rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.2;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0;
}

.tool-card button {
  color: var(--text);
  background: var(--panel-strong);
}

.quick-popover {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: calc(100% + 0.65rem);
  width: min(19rem, calc(100vw - 2rem));
  padding: 0.85rem;
  border: 1px solid rgba(2, 166, 180, 0.38);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(9, 13, 15, 0.97);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 150ms ease, transform 150ms ease;
}

.quick-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid rgba(2, 166, 180, 0.38);
  border-bottom: 1px solid rgba(2, 166, 180, 0.38);
  background: rgba(9, 13, 15, 0.97);
  transform: translateX(-50%) rotate(45deg);
}

.tool-card:hover .quick-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.paypal-holder {
  min-height: 3rem;
}

.free-note {
  display: grid;
  min-height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(2, 166, 180, 0.26);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 800;
  background: rgba(2, 166, 180, 0.08);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.workflow-grid article {
  min-height: 15rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.workflow-grid span {
  color: var(--rose);
  font-weight: 900;
}

.workflow-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-drawer {
  position: fixed;
  z-index: 11000;
  top: 0;
  right: 0;
  display: flex;
  width: min(29rem, 100vw);
  height: 100svh;
  flex-direction: column;
  padding: 1.25rem;
  border-left: 1px solid var(--line);
  background: rgba(12, 17, 19, 0.96);
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.45);
  transform: translateX(105%);
  transition: transform 220ms ease;
  overflow-y: auto;
}

.detail-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  width: 2.75rem;
  color: var(--text);
  background: var(--panel);
}

.detail-drawer img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 1rem 0;
}

.detail-drawer h2 {
  margin: 0.75rem 0 1rem;
  font-size: 2.4rem;
}

.detail-drawer p {
  color: var(--muted);
  line-height: 1.7;
}

.drawer-paypal {
  margin-top: auto;
  padding-top: 1.4rem;
  min-height: 4rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-soft);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

@media (max-width: 880px) {
  .main-nav {
    display: none;
  }

  .hero,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 36rem;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding-inline: 0.8rem;
  }

  .brand span:last-child {
    display: none;
  }

  .cart-control {
    min-width: 6rem;
  }

  .hero,
  .tool-section,
  .workflow {
    padding-inline: 0.8rem;
  }

  .hero-panel {
    min-height: auto;
  }

  .toolset-image-wrap {
    width: min(22rem, 100%);
  }

  

  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card {
    min-height: 14.25rem;
    padding: 0.65rem;
  }

  .tool-card img {
    width: min(140px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .quick-popover {
    display: none;
  }
}


.featured-tool {
  grid-column: span 2;
  border: 2px solid rgba(243, 210, 103, 0.5);
  background: linear-gradient(
    145deg,
    rgba(243, 210, 103, 0.12),
    rgba(255, 255, 255, 0.03)
  );
}

@media (max-width: 560px) {
  .featured-tool {
    grid-column: span 1;
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.hero-title span {
  display: block;
}

.ignite {
  color: #d63352;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900;
}

.your {
  color: #31c7ba;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900;
}

.creative {
  color: #f2f2f2;
  font-size: clamp(2.1rem, 5.6vw, 4.2rem);
  font-weight: 900;
  margin-top: 0.2rem;
}

.hero-text {
  max-width: 650px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-text strong {
  color: #31c7ba;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.windows-btn,
.linux-btn,
.trial-btn,
.tools-btn {
  min-width: 140px;
  min-height: 48px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.windows-btn,
.linux-btn {
  border: 1px solid #1cc8b7;
}

.trial-btn {
  border: 1px solid #d63352;
}

.tools-btn {
  background: #d9b33a;
  color: #000;
  border: none;
}

.gold-buy-button {
  color: #b38b2d !important;
  font-weight: 800;
  background: rgba(179, 139, 45, 0.06) !important;
  border-color: rgba(179, 139, 45, 0.4) !important;
}

.gold-buy-button:hover {
  color: #c49b3a !important;
  background: rgba(179, 139, 45, 0.12) !important;
}

.drawer-pricing-link{
    display:flex;
    width:100%;
    min-height:48px;
    justify-content:center;
    align-items:center;
    margin-top:12px;
}

.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    border-top: 1px solid var(--line);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--teal);
    font-size: 0.95rem;
    transition: opacity 0.15s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

@media (max-width: 560px) {
    .footer-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
}

#toolsTitle {
    font-size: clamp(1.2rem, 2.4vw, 2.52rem);
}

/* ==========================================
   EMBER PARTICLES
========================================== */

#particleCanvas{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:0;
}

.site-header,
main,
.site-footer{
    position:relative;
    z-index:1;
}


/* ==========================================
   FIRE WORD EFFECT
========================================== */

.fire-text{
    position:relative;
    display:inline-block !important;

    color:#ffcb75;

    text-shadow:
        0 0 8px rgba(255,180,60,.6),
        0 0 18px rgba(255,120,20,.5),
        0 0 32px rgba(255,80,0,.35);

    animation:fireFlicker 3s ease-in-out infinite;
}

@keyframes fireFlicker{

    0%,100%{
        text-shadow:
            0 0 8px rgba(255,180,60,.6),
            0 0 18px rgba(255,120,20,.5),
            0 0 32px rgba(255,80,0,.35);
    }

    50%{
        text-shadow:
            0 0 10px rgba(255,200,100,.85),
            0 0 24px rgba(255,140,40,.7),
            0 0 42px rgba(255,80,0,.5);
    }
}

.fire-ember{
    position:absolute;

    width:4px;
    height:4px;

    border-radius:50%;

    pointer-events:none;

    background:#ffb347;

    box-shadow:
        0 0 6px rgba(255,180,60,.8);

    animation:
        emberRise linear forwards;
}

@keyframes emberRise{

    from{
        opacity:1;
        transform:
            translateY(0)
            translateX(0)
            scale(1);
    }

    to{
        opacity:0;
        transform:
            translateY(-60px)
            translateX(var(--drift))
            scale(.2);
    }
}

/* Force sticky header */

.site-header{
    position: sticky !important;
    top: 0;
    z-index: 9999;
}

.hero-title,
.ignite,
.your,
.creative{
    font-family: "Segoe UI", sans-serif;
}



.drawer-close{
    position:absolute;
    top:16px;
    right:16px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:100;

    font-size:24px;
    font-weight:700;

    background:rgba(0,0,0,0.4);
    border:1px solid rgba(255,255,255,0.15);

    border-radius:8px;
}










.main-nav a{
    transition: color 0.15s ease;
}



.main-nav a.active{
    color: var(--gold-soft);
}



/* ==========================================
   INFO CARDS
========================================== */

.info-section{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;

    padding:0 clamp(1rem,5vw,5rem);
    margin:0 0 4rem;
}

.info-card{
    min-height:420px;

    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:1.5rem;
}

.info-card img{
    width:140px;
    height:140px;
    object-fit:contain;

    margin-bottom:1rem;
}

.info-card h3{
    font-size:1.8rem;
    line-height:1.2;

    margin-bottom:1rem;
}

.info-card p{
    flex:1;

    color:var(--muted);

    line-height:1.7;

    max-width:22rem;
}


.info-card .button{
    width:100%;
    margin-top:1rem;
}


@media (max-width:900px){

    .info-section{
        grid-template-columns:1fr;
    }

    .info-card{
        min-height:auto;
    }
}
