/* ============================================================
   about.css — ToolsMingo About Page Styles
   ============================================================ */

/* ── RESET & BASE ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0d0f0e;
  color: #f1efe9;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(200, 64, 26, .85);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}


/* ── HERO ── */
.hero {
  text-align: center;
  padding: clamp(80px, 12vw, 130px) clamp(20px, 5vw, 40px) clamp(60px, 8vw, 90px);
  background: radial-gradient(circle at 50% -5%, rgba(200, 64, 26, .13), transparent 45%);
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c8401a;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: #f6f4ee;
  margin-bottom: 22px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #7e7c76;
  max-width: 50ch;
  margin: 0 auto;
}


/* ── MISSION ── */
.mission {
  padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 40px);
}

.mission-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mission h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: #f6f4ee;
  margin-bottom: 20px;
  line-height: 1.15;
}

.mission p {
  font-size: 15px;
  color: #7e7c76;
  line-height: 1.85;
  margin-bottom: 16px;
}

.mission p:last-child {
  margin-bottom: 0;
}

.mission strong {
  color: #a4a29b;
  font-weight: 500;
}


/* ── VALUES ── */
.values {
  padding: 0 clamp(20px, 5vw, 40px) clamp(60px, 8vw, 90px);
}

.values-head {
  text-align: center;
  margin-bottom: 40px;
}

.values-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: #f6f4ee;
  margin-bottom: 8px;
}

.values-head p {
  font-size: 14px;
  color: #6a6865;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.v-card {
  background: #111310;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 26px 22px;
  transition: border-color .2s;
}

.v-card:hover {
  border-color: rgba(200, 64, 26, .25);
}

.v-icon {
  width: 42px;
  height: 42px;
  background: rgba(200, 64, 26, .1);
  border: 1px solid rgba(200, 64, 26, .18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.v-title {
  font-size: 14px;
  font-weight: 600;
  color: #f1efe9;
  margin-bottom: 8px;
}

.v-desc {
  font-size: 13px;
  color: #6a6865;
  line-height: 1.65;
}


/* ── TOOLS ── */
.tools {
  padding: 0 clamp(20px, 5vw, 40px) clamp(60px, 8vw, 90px);
}

.tools-head {
  margin-bottom: 28px;
}

.tools-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: #f6f4ee;
  margin-bottom: 6px;
}

.tools-head p {
  font-size: 14px;
  color: #6a6865;
}

.tool-list {
  display: grid;
  gap: 10px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111310;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color .2s;
}

.tool-item:hover {
  border-color: rgba(255, 255, 255, .14);
}

a.tool-item {
  cursor: pointer;
}

.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.t-dot.live {
  background: #4ab464;
  box-shadow: 0 0 8px rgba(74, 180, 100, .4);
}

.t-dot.soon {
  background: #2a2a28;
}

.t-info {
  flex: 1;
}

.t-name {
  font-size: 14px;
  font-weight: 600;
  color: #f1efe9;
  margin-bottom: 3px;
}

.t-desc {
  font-size: 13px;
  color: #6a6865;
}

.t-badge {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  padding: 3px 9px;
  border-radius: 5px;
  flex-shrink: 0;
}

.t-badge.live {
  background: rgba(74, 180, 100, .12);
  color: #4ab464;
  border: 1px solid rgba(74, 180, 100, .2);
}

.t-badge.soon {
  background: rgba(255, 255, 255, .04);
  color: #4a4845;
  border: 1px solid rgba(255, 255, 255, .07);
}


/* ── CTA ── */
.cta {
  text-align: center;
  padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 40px);
  background: linear-gradient(180deg, transparent, rgba(200, 64, 26, .05) 50%, transparent);
}

.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #f6f4ee;
  margin-bottom: 14px;
  line-height: 1.1;
}

.cta p {
  font-size: 15px;
  color: #7e7c76;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  background: #c8401a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 9px;
  transition: background .18s, transform .15s;
  box-shadow: 0 8px 24px -8px rgba(200, 64, 26, .5);
}

.cta-btn:hover {
  background: #d94d20;
  transform: translateY(-2px);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}