/* =========================
   FONTS
   ========================= */
@font-face {
  font-family: 'Satoshi-Light';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2'),
       url('../fonts/Satoshi-Light.woff') format('woff'),
       url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-Regular';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
       url('../fonts/Satoshi-Regular.woff') format('woff'),
       url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-Medium';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
       url('../fonts/Satoshi-Medium.woff') format('woff'),
       url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-Bold';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
       url('../fonts/Satoshi-Bold.woff') format('woff'),
       url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-Black';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
       url('../fonts/Satoshi-Black.woff') format('woff'),
       url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

/* =========================
   VARIABLES
   ========================= */

:root {
  --content-width: 1180px;
  --bg-base: #1a1a1a;

  --surface-1: #252525; 
  --surface-2: #303030;
  --surface-3: #393939;
  --surface-4: #373737;
  --surface-5: #464646;
  --surface-6: #1A1A1A;

  --card-1: #454545;
  --card-2: #393939;
  --card-hover-1: #3d3d3d;
  --card-hover-2: #353535;

  --text: #e6e6e6;
  --muted-1: #a3a3a3;
  --muted-2: #b2b2b2;
  --muted-3: #6C6C6C;

  --link: #e6e6e6;

  --accent-1: #f87171;
  --accent-2: #60a5fa;
  --accent-3: #34d399;
  --accent-4: #fbbf24;
  --accent-5: #a78bfa;

  --radius: 10px;
  --space: 80px;
}

/* =========================
   BASE
   ========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: 'Satoshi-Regular', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text);
  background: var(--bg-base);
  overflow-x: hidden;
}

/* =========================
   LAYOUT
   ========================= */

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   TYPO
   ========================= */

h1 {
  font-family: 'Satoshi-Black';
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

h2 {
  font-family: 'Satoshi-Bold';
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
}

p {
  line-height: 1.6;
  color: var(--muted-1);
}

i {
  color: var(--muted-1);
}

.fa-arrow-up-right-from-square {
  font-size: 12px;
}


/* =========================
   SECTIONS
   ========================= */

section {
  padding: var(--space) 0;
}

.hero     { background: var(--surface-6); }
.quote    { background: var(--surface-1); }
.mindset  { background: var(--surface-5); }
.tools    { background: var(--surface-2); }
.how      { background: var(--surface-3); }
.start    { background: var(--surface-2); }
.contacts { background: var(--surface-5); }
.support  { background: var(--surface-1); }

/* =========================
   ACCENT COLORS
   ========================= */

.mindset h2, 
.passwords
{ color: var(--accent-1); }

.tools h2, 
.docs,
.fa-square-phone      
{ color: var(--accent-2); }

.how h2, 
.chat,
.fa-at          
{ color: var(--accent-3); }

.start h2, 
.tasks     
{ color: var(--accent-4); }

.contacts h2, 
.design,
.fa-square-envelope  
{ color: var(--accent-5); }


/* =========================
   LINKS
   ========================= */

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: all .2s ease;
}

a:hover {
  border-color: rgba(255,255,255,0.6);
}

/* =========================
   LISTS
   ========================= */

ul {
  padding: 0;
  list-style: none;
}

li {
  margin-bottom: 14px;
}

/* =========================
   SUBTLE LOAD
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HERO
   ========================= */

.hero {
  background: var(--bg-1);
  padding: var(--space) 0;
}

.ascii-title {
  margin: 0;
  color: var(--surface-1);
  font-family: monospace;
  font-size: 1.7vw;
  line-height: 1.05;
  white-space: pre;
  overflow: hidden;
}

.hero-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -30px;
}

.hero-logo {
  width: 160px;
  height: auto;
  opacity: .4;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted-3);
  font-family: 'Satoshi-Medium', sans-serif;
  font-size: clamp(12px, 1.8vw, 22px);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-subtitle::before {
  content: "| ";
}


/* =========================
   QUOTES
   ========================= */

.quote {
  background: var(--surface-1);
}

.quote .section-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#quote-text {
  max-width: 980px;
  margin: 0;
  color: var(--muted-2);
  font-family: 'Satoshi-Bold', sans-serif;
  font-size: clamp(30px, 4.4vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

#quote-author {
  margin: 0;
  color: var(--muted-1);
  font-family: 'Satoshi-Medium', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-loader {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-top-color: var(--text);
  border-radius: 50%;
  animation: quote-spin .8s linear infinite;
}

.quote.is-loaded .quote-loader {
  display: none;
}

#quote-content {
  display: none;
}

.quote.is-loaded #quote-content {
  display: inline;
}

@keyframes quote-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   HELLO
   ========================= */

.mindset {
  font-size: clamp(14px, 2vw, 22px);;
}

.mindset .icebreaker {
  color: var(--text);
}

.mindset .speech {
  text-align: justify;
}

/* =========================
   TOOLS
   ========================= */

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tool-card {
  padding: 20px;
  text-align: left;
  background: var(--card-1);
  border-radius: var(--radius);
  transition: transform .2s ease, background .2s ease;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .04), 0 18px 40px rgba(0, 0, 0, .18);
}

.tool-card:hover {
  transform: translateY(-4px);
  background: var(--card-hover-1);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .06), 0 22px 46px rgba(0, 0, 0, .24);
}

.tool-header {
  margin-bottom: 22px;
}

.tool-title {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 20px;
}

.tool-title .subject {
  font-size: 16px;
}

.tool-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-1);
  font-size: 13px;
}

.tool-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.figma-logo {
  width: 12px;
}

.zulip-logo {
  width: 14px;
}

.tool-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.45;
  list-style-type: circle;
}

.tool-list li {
  margin-bottom: 8px;
}
.tool-list li::marker {
  color: var(--muted-1);
}
.tool-list li:last-child {
  margin-bottom: 0;
}

/* =========================
   BEST PRACTICES
   ========================= */

.how span {
  color: var(--muted-1);
}

/* =========================
   ONBOARDING
   ========================= */

.start-intro {
  margin-bottom: 18px;
  color: var(--muted-1);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
}

/* =========================
   POINT OF CONTACT
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 18px;
}

.contact-card {
  background: var(--card-2);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .04), 0 18px 40px rgba(0, 0, 0, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-card:hover {
  background: var(--card-hover-2);
  transform: translateY(-4px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .06), 0 22px 46px rgba(0, 0, 0, .24);
}

.contact-card--inactive {
  opacity: 0.5;
}

.contact-name {
  font-size: 20px;
  margin-bottom: 4px;
}

.contact-department,
.contact-title {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--muted-1);
}

.contact-meta {
  font-size: 14px;
  margin-bottom: 12px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  width: 100%;
  background: var(--surface-6);
  margin-top: 60px;
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 32px 20px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  width: 130px;
  margin-left: -5px;
  opacity: 0.5;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted-1);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted-1);
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-1);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
  .tool-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

  .ascii-title {
    font-size: 2vw;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-subtitle::before {
    content: "";
  }

  .hero-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 0;
  }

  .quote .section-inner {
    align-items: center;
    text-align: center;
  }

  #quote-text {
    text-align: center;
  }

  #quote-author {
    text-align: center;
  }

  .mindset {
    font-size: clamp(18px, 4.2vw, 20px);
  }

  .mindset .speech {
    text-align: left;
  }

  .tool-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}