/* ==========================================================================
   Podnibox — site styles
   Ported from the Claude Design prototype (SiteVivid / SiteVividMobile).
   Desktop values come from SiteVivid; the <=760px block carries the mobile
   variant's own type scale and spacing.
   ========================================================================== */

:root {
  --pb-blue: #1B33E0;
  --pb-red: #F5321E;
  --pb-amber: #FF9E1B;

  --pb-ink: #14161A;
  --pb-ink-2: #3c3f44;
  --pb-ink-3: #4a4d52;
  --pb-body: #5c5f64;
  --pb-muted: #8a8d92;
  --pb-nav-off: #6b6e73;

  --pb-bg: #FBFBF9;
  --pb-surface: #fff;
  --pb-hairline: rgba(20, 22, 26, .08);
  --pb-hairline-soft: rgba(20, 22, 26, .06);
  --pb-card-border: rgba(20, 22, 26, .07);

  --pb-shell: 1280px;
  --pb-gutter: 56px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--pb-ink);
  background: var(--pb-bg);
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .75; }

img { max-width: 100%; }

.pb-link { color: var(--pb-blue); }
.pb-link:hover { opacity: .7; }

.pb-shell { max-width: var(--pb-shell); margin: 0 auto; }

/* Accessibility ----------------------------------------------------------- */

.pb-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--pb-ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 0 10px 0;
}
.pb-skip:focus { left: 0; }

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

:focus-visible {
  outline: 2px solid var(--pb-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Animation --------------------------------------------------------------- */

@keyframes pbDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(40px, -30px, 0) scale(1.12); }
  66%      { transform: translate3d(-26px, 26px, 0) scale(.94); }
}
@keyframes pbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(6deg); }
}
@keyframes pbSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pbRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pbPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: .75; transform: scale(1.06); }
}

.pb-rise { animation: pbRise .9s cubic-bezier(.2, .7, .2, 1) both; }

/* Nav --------------------------------------------------------------------- */

.pb-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 249, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--pb-hairline-soft);
}

.pb-nav__inner {
  max-width: var(--pb-shell);
  margin: 0 auto;
  padding: 26px var(--pb-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pb-nav__logo { display: flex; align-items: center; }
.pb-nav__logo img { height: 30px; width: auto; display: block; }

.pb-nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
}

.pb-nav__link { color: var(--pb-nav-off); transition: color .18s ease; }
.pb-nav__link:hover { color: var(--pb-ink); opacity: 1; }
.pb-nav__link.is-active { color: var(--pb-ink); }

.pb-nav__cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--pb-blue);
  color: #fff;
  font-weight: 600;
}
.pb-nav__cta.is-active { color: #fff; }

/* Hamburger — mobile only */
.pb-nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.pb-nav__toggle span {
  width: 22px; height: 2px;
  background: var(--pb-ink);
  border-radius: 2px;
  display: block;
  transition: transform .22s ease, opacity .22s ease;
}
.pb-nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.pb-nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.pb-mobile-menu { display: none; }

/* Sections ---------------------------------------------------------------- */

.pb-page { display: none; }
.pb-page.is-active { display: block; }

.pb-section { padding: 110px var(--pb-gutter); max-width: var(--pb-shell); margin: 0 auto; }

.pb-eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--pb-blue);
  margin-bottom: 18px;
}

.pb-eyebrow--muted { color: var(--pb-muted); margin-bottom: 44px; }

/* Hero -------------------------------------------------------------------- */

.pb-hero {
  padding: 110px var(--pb-gutter);
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  max-width: var(--pb-shell);
  margin: 0 auto;
}

.pb-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.pb-blob { position: absolute; border-radius: 50%; }
.pb-blob--blue {
  top: -120px; left: -80px; width: 460px; height: 460px;
  background: radial-gradient(circle at 35% 35%, rgba(27, 51, 224, .30), rgba(27, 51, 224, 0) 68%);
  filter: blur(18px);
  animation: pbDrift 17s ease-in-out infinite;
}
.pb-blob--red {
  top: 120px; right: 120px; width: 420px; height: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(245, 50, 30, .24), rgba(245, 50, 30, 0) 68%);
  filter: blur(20px);
  animation: pbDrift 21s ease-in-out infinite reverse;
}
.pb-blob--amber {
  bottom: -140px; left: 44%; width: 480px; height: 480px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 158, 27, .26), rgba(255, 158, 27, 0) 68%);
  filter: blur(20px);
  animation: pbDrift 25s ease-in-out infinite;
}
.pb-hero__fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251, 251, 249, 0) 55%, var(--pb-bg) 100%);
}

.pb-hero__copy { position: relative; z-index: 1; }

.pb-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--pb-hairline);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
}
.pb-badge__dots { display: flex; gap: 5px; }
.pb-badge__dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: block;
  animation: pbPulse 3s ease-in-out infinite;
}
.pb-badge__dots span:nth-child(1) { background: var(--pb-blue); }
.pb-badge__dots span:nth-child(2) { background: var(--pb-red); animation-delay: .4s; }
.pb-badge__dots span:nth-child(3) { background: var(--pb-amber); animation-delay: .8s; }
.pb-badge__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--pb-ink-3);
}
.pb-badge__tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--pb-blue);
  background: rgba(27, 51, 224, .09);
  padding: 4px 12px;
  border-radius: 999px;
}

.pb-hero__title {
  font-size: 84px;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 700;
  text-wrap: balance;
  animation-delay: .08s;
}

.pb-hero__lede {
  font-size: 23px;
  line-height: 1.55;
  color: var(--pb-ink-3);
  max-width: 520px;
  margin-top: 28px;
  text-wrap: pretty;
  animation-delay: .16s;
}

.pb-hero__actions { display: flex; gap: 16px; margin-top: 44px; animation-delay: .24s; }

.pb-hero__tags {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  font-size: 14px;
  color: #77797e;
  animation-delay: .32s;
}
.pb-hero__tags .pb-dot { color: #c9cace; }

/* Buttons ----------------------------------------------------------------- */

.pb-btn {
  display: inline-block;
  padding: 17px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}
.pb-btn--dark {
  background: var(--pb-ink);
  color: #fff;
  box-shadow: 0 10px 30px rgba(20, 22, 26, .22);
}
.pb-btn--ghost {
  border-color: rgba(20, 22, 26, .18);
  background: rgba(255, 255, 255, .6);
  color: var(--pb-ink);
}

/* Hero orbit -------------------------------------------------------------- */

.pb-orbit {
  position: relative;
  z-index: 1;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(20, 22, 26, .10);
  width: 340px; height: 340px;
  animation: pbSpin 44s linear infinite;
}
.pb-orbit__ring span {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: var(--pb-blue);
  border-radius: 50%;
  display: block;
}
.pb-orbit__ring--outer {
  width: 452px; height: 452px;
  border-color: rgba(20, 22, 26, .07);
  animation: pbSpin 66s linear infinite reverse;
}
.pb-orbit__ring--outer span {
  top: auto; bottom: -5px;
  background: var(--pb-amber);
}

.pb-cubes {
  position: relative;
  width: 230px; height: 230px;
  animation: pbFloat 8s ease-in-out infinite;
}
.pb-cubes span {
  position: absolute;
  width: 112px; height: 112px;
  border-radius: 16px;
  display: block;
}
.pb-cubes__blue {
  top: 0; left: 50%;
  transform: translateX(-50%) rotate(45deg) skew(-12deg, -12deg);
  background: linear-gradient(150deg, #3550f0, var(--pb-blue));
  box-shadow: 0 22px 46px rgba(27, 51, 224, .32);
}
.pb-cubes__red {
  bottom: 6px; left: -6px;
  transform: rotate(45deg) skew(-12deg, -12deg);
  background: linear-gradient(150deg, #ff5238, var(--pb-red));
  box-shadow: 0 22px 46px rgba(245, 50, 30, .30);
  animation: pbFloat 8s ease-in-out .9s infinite;
}
.pb-cubes__amber {
  bottom: 6px; right: -6px;
  transform: rotate(45deg) skew(-12deg, -12deg);
  background: linear-gradient(150deg, #ffb44a, var(--pb-amber));
  box-shadow: 0 22px 46px rgba(255, 158, 27, .30);
  animation: pbFloat 8s ease-in-out 1.7s infinite;
}

/* Services grid ----------------------------------------------------------- */

.pb-services { padding: 70px var(--pb-gutter) 96px; max-width: var(--pb-shell); margin: 0 auto; }

.pb-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pb-card {
  background: var(--pb-surface);
  border: 1px solid var(--pb-card-border);
  border-radius: 22px;
  padding: 34px 30px;
}
.pb-card__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: block;
  margin-bottom: 26px;
}
.pb-card__icon--blue  { background: var(--pb-blue); }
.pb-card__icon--red   { background: var(--pb-red); }
.pb-card__icon--amber { background: var(--pb-amber); }
.pb-card h3 {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.pb-card p { font-size: 16px; line-height: 1.55; color: var(--pb-body); }

.pb-card--gradient {
  background: linear-gradient(135deg, var(--pb-blue), var(--pb-red) 55%, var(--pb-amber));
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pb-card--gradient p { color: #fff; opacity: .9; }

/* Work / projects --------------------------------------------------------- */

.pb-work { padding: 26px var(--pb-gutter) 110px; max-width: var(--pb-shell); margin: 0 auto; }

.pb-work__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.pb-work__head h2 { font-size: 44px; font-weight: 700; letter-spacing: -.02em; }

.pb-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pb-project {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--pb-hairline);
  background: var(--pb-surface);
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pb-project:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(20, 22, 26, .10);
}
.pb-project__shot { height: 250px; overflow: hidden; position: relative; }
.pb-project__shot img { width: 100%; display: block; }

/* Screenshots sit on their own brand-dark plate. If the image is missing the
   plate still reads as deliberate artwork rather than a broken frame. */
.pb-project__shot--veradeo   { background: #1b1030; }
.pb-project__shot--plantrixy { background: #0b1030; }

.pb-project__shot--veradeo::before,
.pb-project__shot--plantrixy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
}
.pb-project__shot--veradeo::before {
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 158, 27, .55), transparent 55%),
    radial-gradient(circle at 76% 70%, rgba(27, 51, 224, .60), transparent 58%);
}
.pb-project__shot--plantrixy::before {
  background:
    radial-gradient(circle at 78% 28%, rgba(27, 51, 224, .65), transparent 56%),
    radial-gradient(circle at 26% 74%, rgba(245, 50, 30, .45), transparent 58%);
}

/* Once a real screenshot loads it covers the plate entirely. */
.pb-project__shot img { position: relative; z-index: 1; }

/* Hide the alt-text frame browsers draw for a missing/!broken image. */
.pb-project__shot img:not([src]),
.pb-project__shot img[src=""] { display: none; }
.pb-project__body { padding: 26px 28px; }
.pb-project__body h3 { font-size: 24px; font-weight: 650; margin-bottom: 6px; }
.pb-project__body p { color: var(--pb-body); font-size: 16px; line-height: 1.5; }
.pb-project__desc { margin-bottom: 12px; }

/* Projects page variants */
.pb-project--lg .pb-project__shot { height: 300px; }
.pb-project--lg .pb-project__body { padding: 28px 30px; }
.pb-project--lg .pb-project__body h3 { font-size: 26px; margin-bottom: 8px; }
.pb-project--lg .pb-project__desc { line-height: 1.55; margin-bottom: 14px; }

.pb-soon {
  grid-column: 1 / -1;
  border-radius: 24px;
  border: 1px dashed rgba(20, 22, 26, .2);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pb-soon h3 { font-size: 26px; font-weight: 650; margin-bottom: 8px; }
.pb-soon p { color: var(--pb-body); font-size: 16px; max-width: 460px; line-height: 1.5; }
.pb-soon__chips { display: flex; gap: 10px; flex-shrink: 0; }
.pb-soon__chips span { width: 16px; height: 16px; border-radius: 4px; }
.pb-soon__chips span:nth-child(1) { background: var(--pb-blue); }
.pb-soon__chips span:nth-child(2) { background: var(--pb-red); }
.pb-soon__chips span:nth-child(3) { background: var(--pb-amber); }

/* Page headers ------------------------------------------------------------ */

.pb-page-title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -.03em;
  max-width: 820px;
}
.pb-page-title--wide { max-width: 900px; text-wrap: balance; }

.pb-page-lede {
  font-size: 21px;
  color: var(--pb-ink-3);
  max-width: 600px;
  margin-top: 22px;
  line-height: 1.5;
}

/* About ------------------------------------------------------------------- */

.pb-about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.pb-about__prose { font-size: 21px; line-height: 1.6; color: var(--pb-ink-2); }
.pb-about__prose p + p { margin-top: 24px; }

.pb-info {
  background: var(--pb-surface);
  border: 1px solid var(--pb-hairline);
  border-radius: 22px;
  padding: 34px;
}
.pb-info h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--pb-muted);
  margin-bottom: 22px;
}
.pb-info dl { display: grid; gap: 16px; font-size: 16px; }
.pb-info dt { color: var(--pb-muted); margin-bottom: 2px; }
.pb-info dd { font-weight: 600; }

/* Contact ----------------------------------------------------------------- */

.pb-contact__title { font-size: 66px; }
.pb-contact__lede { font-size: 22px; max-width: 560px; }

.pb-contact__email {
  display: inline-block;
  margin-top: 36px;
  font-size: 30px;
  font-weight: 650;
  color: var(--pb-blue);
  border-bottom: 2px solid var(--pb-blue);
  padding-bottom: 6px;
}

.pb-contact__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 20px;
  margin-top: 64px;
}
.pb-contact__cards .pb-info { padding: 32px; }
.pb-contact__cards .pb-info h3 { margin-bottom: 20px; }
.pb-contact__cards .pb-info dl { gap: 15px; }

.pb-contact__btn { display: none; }

/* Footer ------------------------------------------------------------------ */

.pb-footer {
  border-top: 1px solid var(--pb-hairline);
  background: var(--pb-surface);
}
.pb-footer__inner {
  max-width: var(--pb-shell);
  margin: 0 auto;
  padding: 56px var(--pb-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pb-footer__logo { height: 24px; width: auto; display: block; }
.pb-footer__meta {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: var(--pb-muted);
  align-items: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Mobile — mirrors SiteVividMobile.dc.html
   ========================================================================== */

@media (max-width: 760px) {
  :root { --pb-gutter: 20px; }

  /* Nav */
  .pb-nav__inner { padding: 16px 20px; }
  .pb-nav__logo img { height: 24px; }
  .pb-nav__links { display: none; }
  .pb-nav__toggle { display: flex; }

  .pb-mobile-menu {
    display: none;
    background: var(--pb-surface);
    border-bottom: 1px solid var(--pb-hairline);
    padding: 8px 20px 16px;
  }
  .pb-mobile-menu.is-open { display: grid; gap: 2px; }
  .pb-mobile-menu a {
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid var(--pb-hairline-soft);
  }
  .pb-mobile-menu a:last-child { border-bottom: none; color: var(--pb-blue); }

  /* Hero — the mobile design orders it copy → orbit → buttons, so the hero
     becomes a flex column and the orbit is pulled between the two. */
  .pb-hero {
    display: flex;
    flex-direction: column;
    padding: 44px 20px 56px;
    min-height: 0;
    gap: 0;
  }
  .pb-hero__copy { display: contents; }
  .pb-badge      { order: 1; }
  .pb-hero__title { order: 2; align-self: stretch; }
  .pb-hero__lede  { order: 3; align-self: stretch; }
  .pb-orbit         { order: 4; align-self: stretch; }
  .pb-hero__actions { order: 5; }
  .pb-blob--blue  { top: -90px; left: -70px; width: 280px; height: 280px; filter: blur(14px); }
  .pb-blob--red   { top: 40px; right: -70px; width: 260px; height: 260px; filter: blur(16px); }
  .pb-blob--amber { bottom: -60px; left: 30%; width: 300px; height: 300px; filter: blur(16px); }
  .pb-hero__fade { background: linear-gradient(180deg, rgba(251, 251, 249, 0) 60%, var(--pb-bg) 100%); }

  .pb-badge { padding: 7px 14px; gap: 10px; margin-bottom: 22px; align-self: flex-start; }
  .pb-badge__dots span { width: 8px; height: 8px; }
  .pb-badge__name { font-size: 13px; }
  .pb-badge__tag { display: none; }

  .pb-hero__title { font-size: 42px; line-height: 1.05; letter-spacing: -.03em; }
  .pb-hero__lede { font-size: 17px; margin-top: 18px; max-width: none; }

  /* align-self:stretch — the hero is a flex column, so the button stack must
     be told to span the full width rather than shrink to its content. */
  .pb-hero__actions { display: grid; gap: 10px; margin-top: 16px; align-self: stretch; }
  .pb-btn { text-align: center; padding: 17px 24px; }
  .pb-btn--dark { box-shadow: 0 10px 26px rgba(20, 22, 26, .2); }

  .pb-hero__tags { display: none; }

  /* Orbit — sits between lede and buttons on mobile */
  .pb-orbit { height: 230px; margin: 26px 0 6px; }
  .pb-orbit__ring { width: 196px; height: 196px; }
  .pb-orbit__ring span { width: 8px; height: 8px; top: -4px; }
  .pb-orbit__ring--outer { width: 250px; height: 250px; }
  .pb-orbit__ring--outer span { bottom: -4px; top: auto; }
  .pb-cubes { width: 140px; height: 140px; }
  .pb-cubes span { width: 68px; height: 68px; border-radius: 11px; }
  .pb-cubes__blue  { box-shadow: 0 14px 30px rgba(27, 51, 224, .32); }
  .pb-cubes__red   { bottom: 4px; left: -2px; box-shadow: 0 14px 30px rgba(245, 50, 30, .30); }
  .pb-cubes__amber { bottom: 4px; right: -2px; box-shadow: 0 14px 30px rgba(255, 158, 27, .30); }

  /* Sections */
  .pb-section { padding: 44px 20px 64px; }
  .pb-services { padding: 8px 20px 56px; }
  .pb-work { padding: 0 20px 64px; }

  .pb-eyebrow { font-size: 13px; letter-spacing: .05em; margin-bottom: 14px; }
  .pb-eyebrow--muted { font-size: 13px; margin-bottom: 20px; }

  .pb-grid-3, .pb-grid-2 { grid-template-columns: 1fr; gap: 12px; }

  .pb-card { border-radius: 18px; padding: 22px; }
  .pb-card__icon { width: 26px; height: 26px; border-radius: 7px; margin-bottom: 16px; }
  .pb-card h3 { font-size: 19px; margin-bottom: 6px; }
  .pb-card p { font-size: 15px; line-height: 1.5; }
  .pb-card--gradient { display: block; }

  .pb-work__head { align-items: baseline; margin-bottom: 20px; }
  .pb-work__head h2 { font-size: 28px; }
  .pb-work__head a { font-size: 14px; }

  .pb-grid-2 { gap: 14px; }
  .pb-project { border-radius: 18px; }
  .pb-project:hover { transform: none; box-shadow: none; }
  .pb-project__shot { height: 170px; }
  .pb-project__body { padding: 18px 20px; }
  .pb-project__body h3 { font-size: 20px; margin-bottom: 5px; }
  .pb-project__body p { font-size: 15px; }
  .pb-project__desc { margin-bottom: 8px; }

  .pb-project--lg .pb-project__shot { height: 190px; }
  .pb-project--lg .pb-project__body { padding: 20px; }
  .pb-project--lg .pb-project__body h3 { font-size: 21px; margin-bottom: 6px; }
  .pb-project--lg .pb-project__desc { margin-bottom: 10px; }

  .pb-soon { display: block; border-radius: 18px; padding: 26px 22px; }
  .pb-soon h3 { font-size: 21px; }
  .pb-soon p { font-size: 15px; line-height: 1.55; margin-bottom: 16px; }
  .pb-soon__chips span { width: 14px; height: 14px; }

  /* Page headers */
  .pb-page-title { font-size: 38px; line-height: 1.06; }
  .pb-page-lede { font-size: 17px; margin-top: 16px; line-height: 1.55; }

  /* About */
  .pb-about { display: block; margin-top: 26px; }
  .pb-about__prose { font-size: 17px; line-height: 1.65; }
  .pb-about__prose p + p { margin-top: 18px; }
  .pb-info { border-radius: 18px; padding: 24px; margin-top: 30px; }
  .pb-info h3 { font-size: 13px; letter-spacing: .05em; margin-bottom: 18px; }
  .pb-info dl { gap: 14px; font-size: 15px; }

  /* Contact */
  .pb-contact__title { font-size: 44px; }
  .pb-contact__lede { font-size: 17px; }
  .pb-contact__email {
    display: block;
    margin-top: 24px;
    font-size: 19px;
    word-break: break-all;
  }
  .pb-contact__btn { display: block; margin-top: 24px; }
  .pb-contact__cards { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; }
  .pb-contact__cards .pb-info { padding: 22px; margin-top: 0; }
  .pb-contact__cards .pb-info h3 { margin-bottom: 16px; }
  .pb-contact__cards .pb-info dl { gap: 14px; }
  .pb-contact__cards .pb-info dd { word-break: break-word; }

  /* Footer */
  .pb-footer__inner {
    display: grid;
    gap: 10px;
    padding: 28px 20px 36px;
  }
  .pb-footer__logo { height: 22px; }
  .pb-footer__meta {
    display: grid;
    gap: 10px;
    font-size: 13px;
  }
  .pb-footer__meta a { word-break: break-all; }
}

/* Tablet ------------------------------------------------------------------ */

@media (min-width: 761px) and (max-width: 1080px) {
  :root { --pb-gutter: 36px; }
  .pb-hero { grid-template-columns: 1fr; min-height: 0; padding: 72px 36px 80px; }
  .pb-hero__title { font-size: 62px; }
  .pb-orbit { height: 360px; }
  .pb-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pb-page-title { font-size: 52px; }
  .pb-contact__title { font-size: 54px; }
  .pb-about { grid-template-columns: 1fr; gap: 36px; }
}

/* Reduced motion ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .pb-rise { opacity: 1; transform: none; }
}
