:root {
  --bg: #f5f6fa;
  --surface: #ffffff;
  --surface-soft: #f9fafc;
  --text: #111318;
  --muted: #5e6675;
  --line: #e4e7ee;
  --blue: #2563eb;
  --blue-dark: #1746b8;
  --shadow: 0 18px 60px rgba(20, 28, 45, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto;
  background: var(--surface);
  border: 1px solid rgba(228, 231, 238, 0.9);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: #090a0d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav a {
  color: #252a33;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav a.active,
.nav a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

main { padding: 36px 32px 52px; }

.page-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; margin-bottom: 12px; }
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 8px; }
p { color: var(--muted); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 700;
  font-size: 14px;
}

.button.primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.button:hover { transform: translateY(-1px); }

.section { margin-top: 48px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
}

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

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

.one-app-grid {
  grid-template-columns: minmax(0, 760px);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(20, 28, 45, 0.04);
}

.app-icon {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 50% 48%, #f8fbff 0 20%, #9da2ff 21% 35%, transparent 36%),
    linear-gradient(145deg, #4438ca, #1d0b95 70%);
  box-shadow: 0 16px 35px rgba(50, 52, 180, 0.35);
}

.app-icon.small { width: 70px; height: 70px; border-radius: 18px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.tag { padding: 4px 9px; border-radius: 7px; background: #f0f2f7; color: #4a5261; font-size: 12px; font-weight: 650; }

.footer-links,
.social-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  align-items: flex-start;
}

.muted { color: var(--muted); }

.legal-copy {
  max-width: 780px;
}

.legal-copy h2 { margin-top: 36px; }

@media (max-width: 860px) {
  .site-shell { width: min(100% - 20px, 1180px); margin: 10px auto; border-radius: 16px; }
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; padding: 22px; }
  .nav { width: 100%; overflow-x: auto; gap: 18px; padding-bottom: 4px; }
  main { padding: 28px 22px 42px; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 60px;
  align-items: center;
  min-height: 560px;
}

.hero-copy { max-width: 560px; }

.hero-copy p { max-width: 430px; font-size: 18px; }

.home-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #f3efe6;
}

.home-shell main {
  padding: 0;
}

.home-shell .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  padding: 28px clamp(22px, 5vw, 72px);
  color: #101214;
}

.home-shell .site-footer {
  padding: 34px clamp(22px, 5vw, 72px);
  background: #101214;
  color: rgba(255, 255, 255, 0.82);
  border-top: 0;
}

.home-shell .site-footer .muted,
.home-shell .footer-links,
.home-shell .social-links {
  color: rgba(255, 255, 255, 0.58);
}

.home-shell .nav a.active,
.home-shell .nav a:hover {
  color: #101214;
  border-color: #101214;
}

.home-shell .button {
  background: transparent;
  border-color: rgba(16, 18, 20, 0.22);
}

.home-shell .button.primary {
  background: #101214;
  color: #fff;
  border-color: #101214;
}

.home-shell .button:hover {
  background: rgba(255, 255, 255, 0.42);
}

.home-shell .button.primary:hover {
  background: #26292d;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(108px, 14vw, 170px) clamp(22px, 5vw, 72px) clamp(42px, 7vw, 84px);
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 38%),
    #f3efe6;
}

.home-hero h1 {
  font-size: clamp(66px, 14vw, 190px);
  line-height: 0.86;
  max-width: 1050px;
  margin: 0 0 28px;
}

.home-hero .hero-copy {
  max-width: 1100px;
  animation: homeRise 520ms ease both;
}

.home-hero .hero-copy p {
  max-width: 620px;
  color: #33302b;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.32;
}

.home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
  color: #575149;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-meta span {
  padding-top: 10px;
  border-top: 1px solid rgba(16, 18, 20, 0.22);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(44px, 7vw, 92px);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
}

.home-actions a {
  border-bottom: 1px solid rgba(16, 18, 20, 0.34);
  padding-bottom: 4px;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.home-actions a:hover {
  color: #5e564c;
  border-color: #5e564c;
  transform: translateY(-2px);
}

@keyframes homeRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-shot {
  margin: 0;
  justify-self: center;
  width: min(315px, 100%);
}

.hero-shot img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(13, 21, 32, 0.24);
}

.featured-app {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; gap: 34px; }
  .home-shell .site-header { position: static; background: #f3efe6; }
  .home-shell .site-header, .home-shell .site-footer { padding: 22px; }
  .home-hero { min-height: calc(100svh - 148px); padding: 58px 22px 44px; }
  .home-hero h1 { font-size: clamp(58px, 20vw, 98px); }
  .featured-app { grid-template-columns: 1fr; }
}

.segmented {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}

.segmented span,
.segmented a {
  min-width: 140px;
  text-align: center;
  padding: 10px 18px;
  color: var(--muted);
  background: #f7f8fb;
  font-weight: 700;
  font-size: 13px;
}

.segmented .active { color: var(--blue); background: white; }

.app-card {
  display: grid;
  gap: 18px;
  min-height: 320px;
}

.icon-placeholder {
  width: 92px;
  height: 92px;
  border: 2px dashed #cfd5df;
  border-radius: 24px;
  background: #fafbfe;
}

.app-hero {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  margin-right: 8px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 860px) {
  .app-hero, .support-grid { grid-template-columns: 1fr; }
  .segmented { width: 100%; }
  .segmented span, .segmented a { min-width: 0; }
}

.profile {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.avatar {
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f3c7a6 0 18%, transparent 19%),
    radial-gradient(circle at 50% 58%, #15171d 0 34%, transparent 35%),
    linear-gradient(145deg, #d7dbe5, #f3f4f8);
  box-shadow: inset 0 -40px 0 rgba(17, 19, 24, 0.08);
}

.profile-photo {
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(13, 21, 32, 0.18);
}

.skill-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.tool-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.tool-list > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.tool-list span {
  color: var(--text);
  font-weight: 800;
}

.tool-list p {
  margin: 0;
}

.skill {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.skill-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #ff7a1a, #2563eb);
}

.timeline {
  border-left: 1px solid var(--line);
  margin-left: 10px;
  padding-left: 28px;
  display: grid;
  gap: 28px;
}

.timeline-item { position: relative; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #edf3ff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 860px) {
  .profile, .skill-strip { grid-template-columns: 1fr; }
  .avatar { width: min(260px, 100%); }
  .skill-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-list > div { grid-template-columns: 1fr; gap: 6px; }
}

.wgj-theme {
  --bg: #f4f7fa;
  --surface-soft: #f8fbfd;
  --text: #0d1520;
  --muted: #566476;
  --line: #dce6ef;
  --blue: #1e86ff;
  --blue-dark: #1264c4;
}

.wgj-app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(13, 21, 32, 0.16);
}

.wgj-app-icon.small {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.wgj-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 54px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(30, 134, 255, 0.10), rgba(44, 184, 217, 0.08)),
    #e6edf4;
}

.wgj-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(248, 251, 253, 0.92);
  box-shadow: 0 18px 48px rgba(13, 21, 32, 0.10);
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.screenshot-gallery figure {
  margin: 0;
}

.screenshot-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(13, 21, 32, 0.18);
}

.screenshot-gallery figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.wgj-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.wgj-legal-nav a {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #f8fbfd;
  color: #0d1520;
  font-weight: 700;
  font-size: 13px;
}

.notice {
  border-left: 4px solid #b48a2d;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(180, 138, 45, 0.10);
}

@media (max-width: 860px) {
  .wgj-hero { grid-template-columns: 1fr; }
  .wgj-app-icon { width: 84px; height: 84px; }
  .screenshot-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .screenshot-gallery { grid-template-columns: 1fr; }
}

/* Cohesive portfolio refresh */
:root {
  --bg: #efefea;
  --surface: #f8f7f2;
  --surface-soft: #eceff1;
  --text: #101214;
  --muted: #5d5d58;
  --line: rgba(16, 18, 20, 0.14);
  --blue: #1f5eff;
  --blue-dark: #123d9b;
  --shadow: none;
  --radius: 8px;
}

body {
  background:
    linear-gradient(180deg, #f3efe6 0, #efefea 44%, #eceff1 100%);
  color: var(--text);
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  padding: 28px 0;
}

.site-footer {
  margin-top: 72px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

main {
  padding: clamp(44px, 7vw, 82px) 0 clamp(54px, 8vw, 96px);
}

.home-shell main,
.home-shell .site-header,
.home-shell .site-footer {
  width: 100%;
}

.brand {
  letter-spacing: 0;
}

.brand-mark {
  border-radius: 7px;
  background: #101214;
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  font-weight: 700;
}

.nav a {
  color: rgba(16, 18, 20, 0.72);
}

.nav a.active,
.nav a:hover {
  color: #101214;
  border-color: #101214;
}

.eyebrow,
.badge {
  padding: 0 0 8px;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: rgba(16, 18, 20, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-title {
  max-width: 920px;
  margin-bottom: clamp(42px, 7vw, 80px);
}

.page-title h1,
.profile h1 {
  max-width: 980px;
  font-size: clamp(54px, 9vw, 116px);
  line-height: 0.9;
  margin: 16px 0 24px;
}

.page-title p,
.profile p {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 25px);
  color: #343631;
}

.section {
  margin-top: clamp(58px, 9vw, 116px);
}

.section-head {
  margin-bottom: clamp(24px, 4vw, 44px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.section-head h2 {
  max-width: 820px;
}

.button {
  min-height: 44px;
  border-radius: 7px;
  border-color: rgba(16, 18, 20, 0.24);
  background: transparent;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button.primary {
  border-color: #101214;
  background: #101214;
}

.button:hover {
  background: rgba(16, 18, 20, 0.06);
}

.button.primary:hover {
  background: #2a2d31;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: #101214;
  font-weight: 800;
}

.grid,
.support-grid {
  gap: clamp(18px, 4vw, 44px);
}

.card {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 28px 0;
  box-shadow: none;
}

.card h2,
.card h3 {
  max-width: 620px;
}

.card p {
  max-width: 700px;
}

.app-card {
  min-height: 0;
}

.product-row {
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: end;
  column-gap: clamp(24px, 5vw, 72px);
}

.featured-app {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.tag {
  border-radius: 7px;
  background: rgba(16, 18, 20, 0.07);
  color: #3d403b;
}

.profile {
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: end;
}

.profile-photo {
  width: min(360px, 100%);
  border-radius: 8px;
  box-shadow: none;
}

.profile h1 {
  max-width: 900px;
  font-size: clamp(48px, 7.6vw, 98px);
  line-height: 1;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.profile .button-row {
  gap: 14px;
}

.tool-list {
  border-top-color: var(--line);
}

.tool-list > div {
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  border-bottom-color: var(--line);
}

.timeline {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
  gap: 0;
}

.timeline-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.timeline-item::before {
  display: none;
}

.faq-item {
  border-bottom-color: var(--line);
}

.home-shell {
  background:
    linear-gradient(180deg, #f3efe6 0, #f3efe6 46%, #efefea 46%, #eceff1 100%);
}

.home-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(16, 18, 20, 0.10), transparent 24%),
    #f3efe6;
}

.home-hero .hero-copy {
  max-width: 780px;
}

.home-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 120px) 0;
}

.home-section h2 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
  margin-top: 16px;
}

.home-work {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.work-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 420px);
  gap: clamp(34px, 8vw, 110px);
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 5vw, 56px);
}

.work-feature-copy {
  max-width: 620px;
}

.work-feature-copy h3 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  margin: 20px 0 18px;
}

.work-feature-copy p {
  font-size: clamp(17px, 2vw, 24px);
  color: #343631;
}

.work-kicker {
  margin: 22px 0 0;
  color: #101214;
  font-weight: 800;
}

.work-phone {
  margin: 0;
  justify-self: end;
}

.work-phone img {
  width: min(360px, 100%);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(16, 18, 20, 0.18);
}

.home-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(32px, 7vw, 86px);
  border-top: 1px solid var(--line);
}

.home-profile p {
  color: #343631;
  font-size: clamp(18px, 2vw, 24px);
}

.home-contact {
  border-top: 1px solid var(--line);
}

.home-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(22px, 4vw, 40px);
  margin-top: 28px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
}

.home-contact-links a {
  border-bottom: 1px solid currentColor;
}

.wgj-theme {
  --bg: #efefea;
  --surface-soft: #eceff1;
  --text: #101214;
  --muted: #5d5d58;
  --line: rgba(16, 18, 20, 0.14);
  --blue: #1f5eff;
  --blue-dark: #123d9b;
}

.wgj-hero {
  border-radius: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: clamp(28px, 5vw, 56px) 0 0;
}

.wgj-panel {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wgj-legal-nav a {
  border-radius: 7px;
  background: transparent;
}

@media (max-width: 860px) {
  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header,
  .site-footer,
  main,
  .home-section {
    width: min(100% - 36px, 1180px);
  }

  .site-header,
  .site-footer {
    padding: 22px 0;
  }

  .home-shell .site-header,
  .home-shell .site-footer {
    width: 100%;
  }

  .home-shell .site-header {
    padding-inline: 18px;
  }

  .home-shell .site-footer {
    padding-inline: 18px;
  }

  .page-title h1,
  .profile h1 {
    font-size: clamp(48px, 16vw, 82px);
  }

  .product-row,
  .featured-app,
  .work-feature,
  .home-profile {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .work-phone {
    justify-self: start;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* Final cleanup pass */
body {
  background: #efefea;
}

.site-header,
.site-footer {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}

.site-footer {
  margin-top: clamp(42px, 7vw, 86px);
  color: rgba(16, 18, 20, 0.68);
}

.site-footer .brand-mark {
  width: 36px;
  height: 24px;
  font-size: 10px;
}

.site-footer .muted {
  margin: 8px 0 0;
  font-size: 13px;
}

.footer-links {
  justify-self: end;
}

main {
  padding-top: clamp(34px, 5vw, 66px);
}

.page-title {
  margin-bottom: clamp(34px, 6vw, 64px);
}

.page-title h1,
.profile h1 {
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0;
}

.section {
  margin-top: clamp(48px, 7vw, 92px);
}

.section-head {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.card {
  padding: 22px 0;
}

.product-row {
  grid-template-columns: 96px minmax(0, 1fr) auto;
}

.tag-row {
  margin-bottom: 0;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 42px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.profile-links a {
  color: #101214;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.home-shell {
  background: #efefea;
}

.home-hero {
  min-height: min(760px, 100svh);
  background: #f3efe6;
}

.home-section {
  padding-block: clamp(54px, 8vw, 96px);
}

.work-feature {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 360px);
  gap: clamp(30px, 6vw, 86px);
}

.work-phone img,
.hero-shot img,
.screenshot-gallery img {
  box-shadow: 0 18px 48px rgba(16, 18, 20, 0.14);
}

.wgj-hero {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 340px);
  align-items: end;
}

.wgj-hero h1 {
  margin-bottom: 0;
}

.hero-shot {
  width: min(300px, 100%);
}

.hero-shot img {
  max-height: none;
  height: auto;
  object-fit: contain;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.feature-strip span {
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line);
  color: #101214;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.15;
}

.feature-strip span + span {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.screenshot-gallery {
  gap: clamp(12px, 2vw, 22px);
}

.screenshot-gallery img {
  border-radius: 14px;
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-self: start;
  }

  .home-hero {
    min-height: auto;
  }

  .product-row,
  .profile,
  .wgj-hero {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip span,
  .feature-strip span + span {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .site-header,
  .site-footer,
  main,
  .home-section {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    gap: 18px;
    padding: 18px 0;
  }

  .brand {
    min-height: 44px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 8px 0 0;
    border-top: 1px solid var(--line);
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid transparent;
    border-radius: 7px;
  }

  .nav a.active,
  .nav a:hover {
    border-color: currentColor;
  }

  main {
    padding: 28px 0 58px;
  }

  h1,
  .page-title h1,
  .profile h1 {
    font-size: clamp(38px, 13vw, 58px);
    line-height: 0.98;
  }

  h2,
  .home-section h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1;
  }

  h3 {
    font-size: 19px;
  }

  p {
    font-size: 16px;
  }

  .eyebrow,
  .badge {
    font-size: 11px;
    line-height: 1.1;
  }

  .button-row {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .page-title {
    margin-bottom: 42px;
  }

  .section {
    margin-top: 54px;
  }

  .section-head {
    padding-top: 18px;
  }

  .site-footer {
    gap: 24px;
    padding: 30px 0;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .home-shell .site-header,
  .home-shell .site-footer {
    width: min(100% - 32px, 1180px);
    padding-inline: 0;
  }

  .home-shell .site-header {
    position: relative;
    background: #f3efe6;
  }

  .home-shell .nav {
    border-top-color: rgba(16, 18, 20, 0.14);
  }

  .home-hero {
    min-height: auto;
    padding: 58px 16px 64px;
    align-content: start;
  }

  .home-hero h1 {
    font-size: clamp(48px, 18vw, 76px);
    line-height: 0.9;
    margin-bottom: 20px;
  }

  .home-hero .hero-copy p {
    font-size: clamp(18px, 6vw, 22px);
    line-height: 1.28;
  }

  .home-section {
    padding-block: 58px;
  }

  .work-feature {
    gap: 28px;
  }

  .work-feature-copy h3 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1;
  }

  .work-phone {
    justify-self: center;
    width: 100%;
  }

  .work-phone img {
    width: min(292px, 82vw);
    margin-inline: auto;
    border-radius: 20px;
  }

  .product-row {
    gap: 18px;
  }

  .product-row .button-row {
    margin-top: 8px;
  }

  .tag-row {
    gap: 7px;
  }

  .tag {
    font-size: 11px;
  }

  .profile {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .profile h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.02;
  }

  .profile > div {
    order: -1;
    min-width: 0;
  }

  .profile-photo {
    width: min(240px, 70vw);
  }

  .tool-list > div,
  .timeline-item {
    padding-block: 20px;
  }

  .profile-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .profile-links a {
    min-height: 44px;
    font-size: 22px;
  }

  .wgj-hero {
    gap: 30px;
  }

  .wgj-hero h1 {
    font-size: clamp(52px, 18vw, 78px);
    line-height: 0.92;
  }

  .wgj-hero p {
    font-size: 17px;
  }

  .wgj-app-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .hero-shot {
    justify-self: center;
    width: min(252px, 74vw);
  }

  .hero-shot img {
    border-radius: 20px;
  }

  .feature-strip span {
    padding: 18px 0;
    font-size: 20px;
  }

  .screenshot-gallery {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    padding: 0 16px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-gallery figure {
    flex: 0 0 min(68vw, 238px);
    scroll-snap-align: center;
  }

  .screenshot-gallery img {
    border-radius: 18px;
  }

  .screenshot-gallery figcaption {
    font-size: 13px;
  }

  .legal-copy {
    max-width: none;
  }

  .legal-copy h2 {
    margin-top: 30px;
    font-size: 28px;
    line-height: 1.08;
  }

  .legal-copy ul {
    padding-left: 22px;
  }
}

@media (max-width: 380px) {
  .site-header,
  .site-footer,
  main,
  .home-section,
  .home-shell .site-header,
  .home-shell .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    gap: 10px;
    font-size: 15px;
  }

  .brand-mark {
    width: 40px;
    height: 28px;
    font-size: 10px;
  }

  .nav a {
    font-size: 13px;
    padding-inline: 4px;
  }

  .home-hero h1 {
    font-size: clamp(44px, 18vw, 66px);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .work-feature,
  .wgj-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .work-feature {
    gap: clamp(28px, 6vw, 48px);
  }

  .work-feature-copy {
    max-width: min(100%, 680px);
  }

  .work-feature-copy h3 {
    max-width: 620px;
    font-size: clamp(32px, 8vw, 58px);
    line-height: 1;
  }

  .work-phone,
  .wgj-hero .hero-shot {
    justify-self: center;
    width: 100%;
  }

  .work-phone img {
    width: min(330px, 78vw);
    margin-inline: auto;
  }

  .wgj-hero .hero-shot {
    width: min(300px, 78vw);
  }
}

@media (max-width: 640px) {
  .work-phone img {
    width: min(292px, 76vw);
  }

  .wgj-hero .hero-shot {
    width: min(252px, 74vw);
  }
}

/* Global footer layout */
.site-footer {
  width: 100%;
  margin-top: clamp(48px, 7vw, 88px);
  padding: clamp(30px, 5vw, 48px) max(22px, calc((100% - 1180px) / 2));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px clamp(32px, 6vw, 72px);
  border-top: 0;
  background: #101214;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer > div:first-child {
  min-width: 0;
}

.site-footer .brand {
  min-height: 0;
}

.site-footer .brand img.wgj-app-icon.small {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: none;
}

.site-footer .muted {
  max-width: 380px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.footer-links {
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 34px);
  font-weight: 750;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: currentColor;
}

.home-shell .site-footer {
  width: 100%;
  padding: clamp(32px, 5vw, 54px) max(22px, calc((100% - 1180px) / 2));
}

@media (max-width: 640px) {
  .site-footer,
  .home-shell .site-footer {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 16px calc(30px + env(safe-area-inset-bottom));
  }

  .site-footer .brand {
    min-height: 44px;
  }

  .site-footer .muted {
    max-width: none;
    margin-top: 6px;
  }

  .footer-links {
    width: 100%;
    justify-self: stretch;
    justify-content: flex-start;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .footer-links a {
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .site-footer,
  .home-shell .site-footer {
    padding-inline: 12px;
  }
}

/* Global layout normalization */
:root {
  --site-gutter: clamp(22px, 5vw, 72px);
}

.site-header,
main,
.home-section {
  width: auto;
  max-width: none;
  margin-inline: var(--site-gutter);
}

.home-shell .site-header,
.home-shell main {
  width: auto;
}

.home-shell .site-header {
  padding-inline: 0;
}

.home-hero {
  margin-inline: calc(var(--site-gutter) * -1);
  padding-inline: var(--site-gutter);
}

.home-section {
  padding-inline: 0;
}

body .home-shell main {
  margin-inline: 0;
}

.home-shell .home-hero {
  margin-inline: 0;
  padding-inline: var(--site-gutter);
}

.home-shell .home-section {
  margin-inline: var(--site-gutter);
}

.profile {
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}

.profile-photo {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  object-position: 50% 42%;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.30),
    0 0 90px rgba(109, 181, 255, 0.10);
}

.work-actions .text-link {
  color: var(--text);
  border-color: rgba(124, 227, 239, 0.64);
}

.work-actions .text-link:hover {
  color: var(--cyan);
  border-color: currentColor;
}

@media (max-width: 860px) {
  .profile {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    max-width: min(520px, 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --site-gutter: 16px;
  }

  .site-header,
  main,
  .home-section,
  .home-shell .site-header,
  .home-shell main {
    width: auto;
    margin-inline: var(--site-gutter);
  }

  .home-shell .site-header {
    padding-inline: 0;
  }

  .home-hero {
    margin-inline: calc(var(--site-gutter) * -1);
    padding-inline: var(--site-gutter);
  }

  body .home-shell main {
    margin-inline: 0;
  }

  .home-shell .home-hero {
    margin-inline: 0;
  }

  .home-shell .home-section {
    margin-inline: var(--site-gutter);
  }

  .profile-photo {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 380px) {
  :root {
    --site-gutter: 12px;
  }
}

@media (max-width: 640px) {
  body .home-shell {
    background:
      radial-gradient(circle at 72% 16%, rgba(124, 227, 239, 0.13), transparent 17rem),
      radial-gradient(circle at 20% 29%, rgba(109, 181, 255, 0.20), transparent 20rem),
      linear-gradient(180deg, #071017 0%, #0b1b27 18%, #245f70 32%, #102b36 56%, #061017 100%);
  }

  .home-shell .site-header,
  .home-shell .home-hero {
    background: transparent;
  }

  body .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 58% 24%, rgba(124, 227, 239, 0.10), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.05) 46%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
  }
}

@media (max-width: 640px) {
  body .home-shell {
    background:
      radial-gradient(circle at 72% 16%, rgba(124, 227, 239, 0.13), transparent 17rem),
      radial-gradient(circle at 20% 29%, rgba(109, 181, 255, 0.20), transparent 20rem),
      linear-gradient(180deg, #071017 0%, #0b1b27 18%, #245f70 32%, #102b36 56%, #061017 100%);
  }

  body .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 58% 24%, rgba(124, 227, 239, 0.10), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.05) 46%, transparent 100%);
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  body .home-shell {
    background:
      radial-gradient(circle at 78% 18%, rgba(124, 227, 239, 0.14), transparent 24rem),
      radial-gradient(circle at 18% 20%, rgba(109, 181, 255, 0.22), transparent 28rem),
      linear-gradient(180deg, #071017 0%, #0d1d29 18%, #245f70 42%, #102b36 70%, #071017 100%);
  }

  body .home-shell .site-header {
    width: min(1180px, calc(100% - 44px));
    margin-inline: auto;
    padding: 28px 0;
    background: transparent;
    color: var(--text);
    border-bottom: 0;
  }

  body .home-shell .brand,
  body .home-shell .nav a {
    color: var(--text);
  }

  body .home-shell .nav {
    border-top: 0;
  }

  body .home-shell .home-hero {
    min-height: min(760px, calc(100svh - 112px));
    margin-inline: 0;
    padding: clamp(82px, 12vw, 128px) max(22px, calc((100% - 1180px) / 2)) clamp(58px, 9vw, 92px);
    background: transparent;
  }

  body .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 76% 20%, rgba(124, 227, 239, 0.16), transparent 24rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.07) 46%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 78%, transparent 100%);
  }
}

@media (max-width: 640px) {
  body .site-header,
  body .home-shell .site-header {
    border-bottom: 0;
  }

  body .nav,
  body .home-shell .nav {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  body .home-shell {
    background:
      radial-gradient(circle at 72% 16%, rgba(124, 227, 239, 0.13), transparent 17rem),
      radial-gradient(circle at 20% 29%, rgba(109, 181, 255, 0.20), transparent 20rem),
      linear-gradient(180deg, #071017 0%, #0b1b27 18%, #245f70 32%, #102b36 56%, #061017 100%);
  }

  body .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 58% 24%, rgba(124, 227, 239, 0.10), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.05) 46%, transparent 100%);
  }
}

.home-hero h1 {
  margin-top: 16px;
}

@media (max-width: 640px) {
  .home-shell {
    background:
      radial-gradient(circle at 72% 16%, rgba(124, 227, 239, 0.13), transparent 17rem),
      radial-gradient(circle at 20% 29%, rgba(109, 181, 255, 0.20), transparent 20rem),
      linear-gradient(180deg, #071017 0%, #0b1b27 18%, #245f70 32%, #102b36 56%, #061017 100%);
  }

  .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 58% 24%, rgba(124, 227, 239, 0.10), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.05) 46%, transparent 100%);
  }
}

@media (max-width: 640px) {
  .nav,
  .home-shell .nav {
    border-top: 0;
  }

  .site-header,
  .home-shell .site-header {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .home-shell .site-header {
    background:
      linear-gradient(180deg, rgba(10, 18, 26, 0.98) 0%, rgba(12, 24, 35, 0.96) 100%),
      #0a1016;
  }

  .home-shell .home-hero {
    background:
      radial-gradient(circle at 82% 34%, rgba(124, 227, 239, 0.18), transparent 18rem),
      linear-gradient(180deg, rgba(12, 24, 35, 0.96) 0%, rgba(42, 111, 130, 0.86) 34%, rgba(23, 66, 80, 0.78) 68%, rgba(8, 18, 26, 0.96) 100%);
  }

  .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 60% 24%, rgba(124, 227, 239, 0.16), transparent 16rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.10) 42%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 82%, transparent 100%);
  }
}

@media (max-width: 640px) {
  .home-shell {
    background:
      radial-gradient(circle at 72% 16%, rgba(124, 227, 239, 0.18), transparent 17rem),
      radial-gradient(circle at 20% 29%, rgba(109, 181, 255, 0.28), transparent 20rem),
      linear-gradient(180deg, #0a1016 0%, #102433 18%, #347f91 31%, #12313d 54%, #071017 100%);
  }

  .home-shell .site-header,
  .home-shell .home-hero {
    background: transparent;
  }

  .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 58% 24%, rgba(124, 227, 239, 0.14), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.08) 46%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
  }
}

@media (min-width: 861px) {
  :root {
    --site-content-width: 1180px;
  }

  body .site-header,
  body .site-shell:not(.home-shell) main,
  body .home-shell .site-header,
  body .home-shell .home-section {
    width: min(var(--site-content-width), calc(100% - 144px));
    max-width: var(--site-content-width);
    margin-inline: auto;
  }

  body .home-shell main {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  body .home-shell .home-hero {
    margin-inline: 0;
    padding-inline: max(72px, calc((100% - var(--site-content-width)) / 2));
  }
}

/* WGJ-inspired site theme */
:root {
  --bg: #0a1016;
  --surface: #101923;
  --surface-soft: #162432;
  --surface-strong: #1b2b3a;
  --text: #f5f7fa;
  --muted: #a4afbc;
  --line: rgba(124, 227, 239, 0.18);
  --blue: #6db5ff;
  --blue-dark: #1e86ff;
  --cyan: #7ce3ef;
  --mint: #62d8a6;
  --gold: #e0c56b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(30, 134, 255, 0.24), transparent 31rem),
    radial-gradient(circle at 88% 18%, rgba(124, 227, 239, 0.16), transparent 27rem),
    radial-gradient(circle at 56% 92%, rgba(98, 216, 166, 0.11), transparent 30rem),
    linear-gradient(135deg, #071017 0%, #0a1016 38%, #101b25 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 72%);
}

.site-shell,
.home-shell,
.wgj-theme {
  --bg: #0a1016;
  --surface: #101923;
  --surface-soft: #162432;
  --surface-strong: #1b2b3a;
  --text: #f5f7fa;
  --muted: #a4afbc;
  --line: rgba(124, 227, 239, 0.18);
  --blue: #6db5ff;
  --blue-dark: #1e86ff;
  --cyan: #7ce3ef;
  --mint: #62d8a6;
  --gold: #e0c56b;
  background: transparent;
  color: var(--text);
}

.site-header {
  color: var(--text);
}

.brand {
  color: var(--text);
}

.brand-mark {
  color: #071017;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 54%, var(--mint));
  box-shadow: 0 0 28px rgba(109, 181, 255, 0.22);
}

.nav {
  color: rgba(245, 247, 250, 0.7);
}

.nav a,
.home-shell .nav a {
  color: rgba(245, 247, 250, 0.68);
}

.nav a.active,
.nav a:hover,
.home-shell .nav a.active,
.home-shell .nav a:hover {
  color: var(--text);
  border-color: var(--cyan);
}

main {
  color: var(--text);
}

h1,
h2,
h3,
.work-kicker,
.tool-list span,
.timeline-item h3,
.profile-links a,
.text-link {
  color: var(--text);
}

p,
.muted,
.tool-list p,
.timeline-item p,
.screenshot-gallery figcaption {
  color: var(--muted);
}

.eyebrow,
.badge {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(124, 227, 239, 0.28);
}

.page-title p,
.profile p,
.home-hero .hero-copy p,
.work-feature-copy p,
.home-profile p,
.wgj-hero p {
  color: #bfccd8;
}

.home-shell {
  background:
    radial-gradient(circle at 8% 3%, rgba(109, 181, 255, 0.26), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(124, 227, 239, 0.17), transparent 28rem),
    linear-gradient(135deg, #08121a 0%, #0a1016 48%, #111d28 100%);
}

.home-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(124, 227, 239, 0.20), transparent 25rem),
    radial-gradient(circle at 12% 80%, rgba(98, 216, 166, 0.10), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(30, 134, 255, 0.10) 42%, rgba(10, 16, 22, 0) 74%);
}

.home-work,
.section,
.page-title,
.profile {
  position: relative;
}

.section-head,
.work-feature,
.featured-app,
.timeline-item,
.tool-list,
.tool-list > div,
.profile-links,
.feature-strip,
.feature-strip span,
.card,
.wgj-hero,
.wgj-panel {
  border-color: var(--line);
}

.card,
.wgj-panel {
  background:
    linear-gradient(145deg, rgba(27, 39, 51, 0.78), rgba(17, 25, 34, 0.48)),
    rgba(10, 16, 22, 0.36);
  border-top-color: rgba(124, 227, 239, 0.22);
}

.wgj-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(124, 227, 239, 0.15), transparent 20rem),
    linear-gradient(135deg, rgba(109, 181, 255, 0.10), rgba(159, 176, 255, 0.08) 45%, rgba(98, 216, 166, 0.06));
}

.button {
  color: var(--text);
  border-color: rgba(124, 227, 239, 0.28);
  background: rgba(27, 39, 51, 0.58);
}

.button.primary {
  color: #061018;
  border-color: rgba(124, 227, 239, 0.72);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 44px rgba(30, 134, 255, 0.22);
}

.button:hover,
.home-shell .button:hover {
  color: var(--text);
  background: rgba(34, 48, 61, 0.82);
  border-color: rgba(124, 227, 239, 0.52);
}

.button.primary:hover,
.home-shell .button.primary:hover {
  color: #061018;
  background: linear-gradient(135deg, #8bc7ff, #86f1f2);
}

.tag {
  color: #d7eef5;
  background: rgba(124, 227, 239, 0.10);
  border: 1px solid rgba(124, 227, 239, 0.16);
}

.notice {
  color: #f3e4a6;
  background: rgba(224, 197, 107, 0.10);
  border-left-color: var(--gold);
}

.work-phone img,
.hero-shot img,
.screenshot-gallery img,
.wgj-app-icon,
.profile-photo {
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.40),
    0 0 70px rgba(30, 134, 255, 0.16);
}

.work-phone,
.hero-shot,
.screenshot-gallery figure {
  filter: saturate(1.08);
}

.feature-strip span {
  color: var(--text);
}

.profile-photo {
  border: 1px solid rgba(124, 227, 239, 0.18);
}

.profile-links a,
.text-link,
.home-contact-links a,
.home-actions a {
  color: var(--text);
  border-color: rgba(124, 227, 239, 0.64);
}

.profile-links a:hover,
.text-link:hover,
.home-contact-links a:hover,
.home-actions a:hover {
  color: var(--cyan);
  border-color: currentColor;
}

.wgj-legal-nav a {
  color: var(--text);
  background: rgba(27, 39, 51, 0.58);
  border-color: rgba(124, 227, 239, 0.22);
}

.legal-copy a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(124, 227, 239, 0.5);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(109, 181, 255, 0.16), transparent 26rem),
    linear-gradient(135deg, #071017, #101214 58%, #101923);
  border-top: 1px solid rgba(124, 227, 239, 0.16);
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    animation: wgjGridDrift 18s linear infinite;
  }

  .home-hero .hero-copy,
  .page-title,
  .profile,
  .work-feature,
  .wgj-hero {
    animation: homeRise 560ms ease both;
  }
}

@keyframes wgjGridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-72px, -72px, 0); }
}

@media (max-width: 640px) {
  .nav {
    border-top-color: rgba(124, 227, 239, 0.18);
  }

  .nav a.active,
  .nav a:hover {
    background: rgba(124, 227, 239, 0.08);
  }

  .home-hero {
    background:
      radial-gradient(circle at 88% 8%, rgba(124, 227, 239, 0.18), transparent 18rem),
      linear-gradient(145deg, rgba(109, 181, 255, 0.08), rgba(10, 16, 22, 0));
  }

  .screenshot-gallery {
    scrollbar-color: rgba(124, 227, 239, 0.45) rgba(255, 255, 255, 0.06);
  }
}

.page-title h1,
.profile h1,
.home-section h2,
.work-feature-copy h3,
.wgj-hero h1,
.wgj-hero h2,
.card h2,
.card h3,
.feature-strip span,
.legal-copy h2 {
  color: var(--text);
}

.page-title p,
.profile p,
.legal-copy p,
.legal-copy li,
.card p,
.work-feature-copy p,
.wgj-hero p {
  color: #bfccd8;
}

.app-card .badge,
.product-row .badge {
  color: var(--cyan);
}

.timeline-item p,
.tool-list p {
  color: var(--muted);
}

@media (max-width: 640px) {
  .home-shell .site-header {
    width: 100%;
    padding: 18px 16px;
    background:
      linear-gradient(135deg, rgba(109, 181, 255, 0.16), rgba(10, 16, 22, 0.92)),
      #0a1016;
    border-bottom: 1px solid rgba(124, 227, 239, 0.16);
  }

  .home-shell .brand,
  .home-shell .nav a {
    color: var(--text);
  }

  .home-shell .nav {
    border-top-color: rgba(124, 227, 239, 0.18);
  }

  .home-shell .nav a.active,
  .home-shell .nav a:hover {
    color: var(--text);
    background: rgba(124, 227, 239, 0.08);
    border-color: rgba(124, 227, 239, 0.84);
  }
}

/* Final WGJ polish pass */
.site-shell {
  display: flex;
  flex-direction: column;
}

.site-shell main {
  flex: 1 0 auto;
}

.home-shell {
  background:
    radial-gradient(circle at 8% 0%, rgba(109, 181, 255, 0.30), transparent 34rem),
    radial-gradient(circle at 86% 18%, rgba(124, 227, 239, 0.18), transparent 34rem),
    radial-gradient(circle at 54% 52%, rgba(98, 216, 166, 0.08), transparent 36rem),
    linear-gradient(155deg, #08121a 0%, #0a1016 48%, #081118 100%);
}

.home-hero {
  isolation: isolate;
  background: transparent;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 18%, rgba(124, 227, 239, 0.22), transparent 26rem),
    radial-gradient(circle at 10% 72%, rgba(109, 181, 255, 0.18), transparent 30rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(30, 134, 255, 0.12) 44%, rgba(10, 16, 22, 0) 82%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
}

.home-section {
  background: transparent;
}

.one-app-grid {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 980px);
}

.product-row {
  position: relative;
  overflow: hidden;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 210px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(124, 227, 239, 0.20);
  border-radius: 14px;
  background:
    radial-gradient(circle at 16% 24%, rgba(109, 181, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 92% 40%, rgba(124, 227, 239, 0.15), transparent 20rem),
    linear-gradient(135deg, rgba(27, 39, 51, 0.86), rgba(12, 24, 34, 0.72));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.22),
    0 0 80px rgba(30, 134, 255, 0.08);
}

.product-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 34%);
}

.product-row > * {
  position: relative;
}

.product-row .wgj-app-icon {
  width: 112px;
  height: 112px;
  border-radius: 26px;
}

.product-row h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  margin: 14px 0 0;
}

.product-row .button-row {
  min-width: 260px;
  justify-content: flex-end;
}

.product-row .button {
  min-width: 132px;
}

.app-card {
  min-height: 0;
}

@media (max-width: 860px) {
  .one-app-grid {
    width: 100%;
  }

  .product-row {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  .product-row .wgj-app-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .product-row .button-row {
    min-width: 0;
    justify-content: stretch;
  }
}

@media (max-width: 640px) {
  .home-hero::before {
    mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 100%);
  }

  .product-row {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .product-row h2 {
    font-size: clamp(40px, 14vw, 58px);
  }
}

.wgj-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  min-height: clamp(520px, 62svh, 680px);
  padding: clamp(42px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(124, 227, 239, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 48%, rgba(124, 227, 239, 0.18), transparent 23rem),
    radial-gradient(circle at 18% 58%, rgba(109, 181, 255, 0.15), transparent 24rem),
    linear-gradient(145deg, rgba(32, 47, 62, 0.78), rgba(13, 25, 35, 0.76) 48%, rgba(8, 18, 26, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 34px 110px rgba(0, 0, 0, 0.30),
    0 0 100px rgba(30, 134, 255, 0.08);
}

.wgj-hero::before,
.wgj-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.wgj-hero::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(260deg, rgba(124, 227, 239, 0.08), transparent 34%);
  mask-image: linear-gradient(135deg, #000, transparent 76%);
}

.wgj-hero::after {
  width: min(38vw, 440px);
  aspect-ratio: 1;
  right: clamp(24px, 7vw, 100px);
  top: 50%;
  border-radius: 999px;
  background: rgba(124, 227, 239, 0.11);
  filter: blur(52px);
  transform: translateY(-50%);
}

.wgj-hero > * {
  position: relative;
  z-index: 1;
}

.wgj-hero > div:first-child {
  align-self: center;
  max-width: 660px;
}

.wgj-hero .wgj-app-icon {
  margin-bottom: 24px;
}

.wgj-hero h1 {
  margin: 18px 0 16px;
}

.wgj-hero .button-row {
  margin-top: 28px;
}

.wgj-hero .hero-shot {
  align-self: center;
  justify-self: end;
  width: min(320px, 100%);
  margin: 0;
}

.wgj-hero .hero-shot img {
  max-height: min(560px, 56svh);
  object-fit: contain;
  border-radius: 22px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(98, 216, 166, 0.12);
}

.work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(18px, 3vw, 28px);
  align-items: center;
  margin-top: 2px;
}

.work-actions .quiet-link {
  color: rgba(245, 247, 250, 0.78);
  border-color: rgba(124, 227, 239, 0.30);
}

@media (max-width: 1050px) {
  .wgj-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wgj-hero .hero-shot {
    justify-self: center;
    width: min(300px, 78vw);
  }

  .wgj-hero .hero-shot img {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .wgj-hero {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .wgj-hero::after {
    right: -20%;
    top: 66%;
    width: 320px;
  }

  .work-actions {
    gap: 12px 18px;
  }
}

/* Match the landing-page footer globally. */
.site-footer,
.home-shell .site-footer {
  padding: clamp(32px, 5vw, 54px) max(22px, calc((100% - 1180px) / 2));
  border-top: 0;
  background: #101214;
}

@media (max-width: 640px) {
  .site-footer,
  .home-shell .site-footer {
    padding: 30px 16px calc(30px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .site-footer,
  .home-shell .site-footer {
    padding-inline: 12px;
  }
}

/* Final global width and profile image pass */
:root {
  --site-gutter: clamp(22px, 5vw, 72px);
}

.site-header,
main,
.home-section,
.home-shell .site-header,
.home-shell main {
  width: auto;
  max-width: none;
  margin-inline: var(--site-gutter);
}

.home-shell .site-header {
  padding-inline: 0;
}

.home-hero {
  margin-inline: calc(var(--site-gutter) * -1);
  padding-inline: var(--site-gutter);
}

.home-section {
  padding-inline: 0;
}

.profile {
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}

.profile-photo {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  object-position: 50% 42%;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.30),
    0 0 90px rgba(109, 181, 255, 0.10);
}

.work-actions .text-link {
  color: var(--text);
  border-color: rgba(124, 227, 239, 0.64);
}

.work-actions .text-link:hover {
  color: var(--cyan);
  border-color: currentColor;
}

@media (max-width: 860px) {
  .profile {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    max-width: min(520px, 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --site-gutter: 16px;
  }

  .site-header,
  main,
  .home-section,
  .home-shell .site-header,
  .home-shell main {
    width: auto;
    margin-inline: var(--site-gutter);
  }

  .home-shell .site-header {
    padding-inline: 0;
  }

  .home-hero {
    margin-inline: calc(var(--site-gutter) * -1);
    padding-inline: var(--site-gutter);
  }

  .profile-photo {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 380px) {
  :root {
    --site-gutter: 12px;
  }
}

@media (max-width: 640px) {
  .home-shell {
    background:
      radial-gradient(circle at 72% 16%, rgba(124, 227, 239, 0.18), transparent 17rem),
      radial-gradient(circle at 20% 29%, rgba(109, 181, 255, 0.28), transparent 20rem),
      linear-gradient(180deg, #0a1016 0%, #102433 18%, #347f91 31%, #12313d 54%, #071017 100%);
  }

  .home-shell .site-header,
  .home-shell .home-hero {
    background: transparent;
  }

  .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 58% 24%, rgba(124, 227, 239, 0.14), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.08) 46%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
  }
}

@media (max-width: 640px) {
  body .site-header,
  body .home-shell .site-header {
    border-bottom: 0;
  }

  body .nav,
  body .home-shell .nav {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  body .home-shell {
    background:
      radial-gradient(circle at 72% 16%, rgba(124, 227, 239, 0.13), transparent 17rem),
      radial-gradient(circle at 20% 29%, rgba(109, 181, 255, 0.20), transparent 20rem),
      linear-gradient(180deg, #071017 0%, #0b1b27 18%, #245f70 32%, #102b36 56%, #061017 100%);
  }

  body .home-shell .home-hero::before {
    background:
      radial-gradient(circle at 58% 24%, rgba(124, 227, 239, 0.10), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(109, 181, 255, 0.05) 46%, transparent 100%);
  }
}
