:root {
  --bg: #08090a;
  --panel: #101113;
  --panel-2: #15171a;
  --panel-3: #1b1d20;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.13);

  --text: #f5f6f7;
  --muted: #92979f;
  --muted-2: #666c74;

  --accent: #d8ff3e;
  --accent-soft: rgba(216, 255, 62, 0.10);
  --accent-border: rgba(216, 255, 62, 0.32);

  --radius: 18px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 82% 0%,
      rgba(216, 255, 62, 0.08),
      transparent 30rem
    ),
    radial-gradient(
      circle at 10% 48%,
      rgba(255, 255, 255, 0.025),
      transparent 26rem
    ),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
}


.app-shell {
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0 38px;
}


/* HERO */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 26px;
}


.hero-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}


.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}


.hero-tags .eyebrow {
  margin: 0;
}


.privacy-chip {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #b5bac1;
  font-size: 11px;
  font-weight: 700;
}


h1,
h2,
p {
  margin-top: 0;
}


h1 {
  margin-bottom: 16px;

  font-size:
    clamp(
      48px,
      7vw,
      86px
    );

  line-height: 0.9;
  letter-spacing: -0.065em;
}


h2 {
  margin-bottom: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}


.subtitle {
  max-width: 760px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}


.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted-2);
  font-size: 11px;
}


.builder-card {
  min-width: 245px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(216, 255, 62, 0.05),
      transparent 60%
    ),
    var(--panel);
}


.builder-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}


.builder-card a {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 850;
}


.builder-card small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}


/* INTRO */

.intro-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 17px;
  border: 1px solid rgba(216, 255, 62, 0.15);
  border-radius: 14px;
  background: rgba(216, 255, 62, 0.035);
}


.intro-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
}


.intro-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}


.intro-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}


/* TOOLS */

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 24px;
}


.tool-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--panel);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}


.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 255, 62, 0.28);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}


.tool-card.featured {
  border-color: rgba(216, 255, 62, 0.22);

  background:
    radial-gradient(
      circle at 96% 0%,
      rgba(216, 255, 62, 0.1),
      transparent 19rem
    ),
    var(--panel);
}


.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}


.tool-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
}


.tool-status {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}


.tool-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}


.tool-content h2 {
  margin-bottom: 10px;
  font-size: 30px;
}


.tool-description {
  max-width: 570px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}


.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}


.feature-list span {
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel-2);
  color: #c7cad0;
  font-size: 10px;
}


.tool-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 26px;
}


.tool-footer > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}


.tool-footer strong {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}


.tool-footer span {
  color: var(--muted);
  font-size: 10px;
}


.tool-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: var(--panel-3);
  color: var(--text);
  font-size: 11px;
  font-weight: 850;
}


.tool-button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #08090a;
}


/* WORKFLOW */

.workflow-section {
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(16, 17, 19, 0.82);
}


.section-heading {
  margin-bottom: 18px;
}


.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}


.workflow-grid article {
  display: flex;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel-2);
}


.workflow-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent);
  color: #08090a;
  font-size: 11px;
  font-weight: 950;
}


.workflow-grid strong {
  display: block;
  margin: 2px 0 5px;
  font-size: 11px;
}


.workflow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}


/* PRIVACY */

.privacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  margin-bottom: 36px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(16, 17, 19, 0.72);
}


.privacy-section > div:first-child p:last-child {
  max-width: 520px;
  margin-top: 11px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}


.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}


.privacy-grid article {
  display: flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--panel-2);
}


.privacy-grid article > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
}


.privacy-grid strong {
  display: block;
  margin: 1px 0 4px;
  font-size: 10px;
}


.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}


/* FOOTER */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}


footer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


footer strong {
  font-size: 11px;
}


footer span {
  color: var(--muted-2);
  font-size: 9px;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}


.footer-links a:hover {
  color: var(--accent);
}


/* RESPONSIVE */

@media (max-width: 980px) {

  .tools-grid {
    grid-template-columns: 1fr;
  }


  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }


  .privacy-section {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 720px) {

  .app-shell {
    width: min(100% - 20px, 1360px);
    padding-top: 28px;
  }


  .hero {
    flex-direction: column;
  }


  .builder-card {
    width: 100%;
  }


  .feature-list,
  .privacy-grid {
    grid-template-columns: 1fr;
  }


  .tool-footer {
    align-items: stretch;
    flex-direction: column;
  }


  .tool-button {
    width: 100%;
  }

}


@media (max-width: 560px) {

  .workflow-grid {
    grid-template-columns: 1fr;
  }


  footer {
    align-items: flex-start;
    flex-direction: column;
  }


  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

}