/* Fat Arrow Development — fatarrowdevelopment.com */

/* base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fbfbfa;
  color: #19191b;
  -webkit-font-smoothing: antialiased;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a { text-decoration: none; color: inherit; }

/* layout */
.layout {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

/* sidebar */
.sidebar {
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  flex: 0 0 300px;
  border-right: 1px solid #e8e8e3;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  background: #f6f6f3;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.brand .arrow {
  font-family: ui-monospace, Menlo, monospace;
  font-weight: 700;
  font-size: 19px;
  color: #3a5180;
}
.tagline {
  font-size: 13px;
  color: #8a8a84;
  margin-top: 9px;
  line-height: 1.5;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 46px;
}
.nav-link {
  display: flex;
  gap: 13px;
  align-items: baseline;
  padding: 9px 0;
  font-size: 15px;
  color: #19191b;
  transition: color .15s;
}
.nav-link:hover { color: #3a5180; }
.nav-num {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: #3a5180;
  font-weight: 600;
}

.sidebar-foot { margin-top: auto; padding-top: 40px; }
.email-sm {
  font-size: 13px;
  color: #3a5180;
  word-break: break-all;
  transition: color .15s;
}
.email-sm:hover { color: #2c3f66; }
.loc-sm { font-size: 13px; color: #8a8a84; margin-top: 6px; }
.copyright { font-size: 12px; color: #b8b8b2; margin-top: 22px; }

/* main */
.main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 960px;
}
.section {
  padding: 52px 64px;
  border-bottom: 1px solid #ededea;
}
.section--about { padding: 72px 64px 56px; }
.section--soon { background: #f4f6fa; }
.section--contact { padding: 52px 64px 72px; border-bottom: none; }

/* section eyebrow */
.eyebrow { display: flex; align-items: baseline; gap: 14px; }
.eyebrow--mb { margin-bottom: 34px; }
.eyebrow--mb-sm { margin-bottom: 22px; }
.eyebrow-num {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: #3a5180;
  font-weight: 600;
}
.eyebrow-label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .12em;
  color: #9a9a95;
  text-transform: uppercase;
}
.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: #3a5180;
}
.eyebrow-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a5180;
  display: inline-block;
}

/* about */
.headline {
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: -.025em;
  font-weight: 700;
  margin: 22px 0 0;
  max-width: 660px;
  border-left: 3px solid #3a5180;
  padding-left: 22px;
}
.lede {
  font-size: 17px;
  line-height: 1.65;
  color: #4a4a44;
  margin: 24px 0 0;
  max-width: 620px;
  text-wrap: pretty;
}

/* apps */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.card { display: flex; flex-direction: column; }
.shot {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 16;
  background: repeating-linear-gradient(135deg, #eef1f6 0 11px, #e7ebf2 11px 22px);
  border: 1px solid #dde2ec;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: #97a0b4;
  object-fit: cover;
}
.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 17px;
  gap: 12px;
}
.card-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0;
}
.visit {
  font-size: 13px;
  color: #3a5180;
  white-space: nowrap;
  font-weight: 500;
  transition: color .15s;
}
.visit:hover { color: #2c3f66; }
.card-desc {
  font-size: 15px;
  line-height: 1.58;
  color: #5a5a53;
  margin: 8px 0 0;
}

/* real screenshots: show them whole, drop the striped mock frame */
img.shot {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: none;
  border-radius: 14px;
}

/* coming soon — same card treatment as the Apps section */
.soon-card { max-width: 399px; }
.badge {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: #fff;
  background: #3a5180;
  border-radius: 999px;
  padding: 4px 11px;
}

/* work */
.work-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid #e8e8e3;
  color: #a2a29c;
  gap: 16px;
}
.work-row--last { border-bottom: 1px solid #e8e8e3; }
.work-name { font-size: 16px; transition: color .15s; }
a.work-name:hover { color: #3a5180; }
.work-meta { font-family: ui-monospace, Menlo, monospace; font-size: 13px; }
.work-note {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: #b8b8b2;
  margin: 14px 0 0;
}

/* contact */
.contact-email {
  display: inline-block;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #3a5180;
  margin: 22px 0 0;
  transition: color .15s;
  word-break: break-word;
}
.contact-email:hover { color: #2c3f66; }
.contact-loc { font-size: 16px; color: #6b6b68; margin: 12px 0 0; }

/* responsive — original design had no mobile layout */
@media (max-width: 820px) {
  .layout { flex-direction: column; }
  .sidebar {
    position: static;
    height: auto;
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8e8e3;
    padding: 30px 28px;
  }
  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 22px;
    margin-top: 26px;
  }
  .sidebar-foot { margin-top: 30px; padding-top: 0; }
  .main { max-width: none; }
  .section,
  .section--about,
  .section--contact { padding: 44px 28px; }
}

@media (max-width: 560px) {
  .headline { font-size: 30px; padding-left: 18px; }
  .apps-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-email { font-size: 23px; }
  .work-row { flex-direction: column; gap: 4px; }
}
