:root {
  --ink: #151515;
  --muted: #5f6863;
  --paper: #fbfcf9;
  --paper-bright: #ffffff;
  --panel: #ffffff;
  --line: #dce4df;
  --forest: #06c;
  --forest-dark: #004a99;
  --coral: #06c;
  --cyan: #25a7b8;
  --blue: #2f6fed;
  --yellow: #f5f5f7;
  --shadow: 0 18px 48px rgba(21, 21, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 252, 249, 0.96);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-wordmark {
  display: inline-block;
  color: #111111;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  font-kerning: normal;
  font-variant-ligatures: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(18px, 5vw, 64px) 92px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 22%, rgba(37, 167, 184, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #eef8f9 100%);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.52)),
    linear-gradient(0deg, rgba(244, 250, 251, 0.86), rgba(255, 255, 255, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: 4.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
}

.button-primary:hover {
  background: #1f58c7;
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  background: #eef8f9;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.showcase-panel {
  position: absolute;
  border: 1px solid rgba(47, 111, 237, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(47, 111, 237, 0.14);
  backdrop-filter: blur(18px);
}

.showcase-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-main {
  top: 78px;
  right: 0;
  width: min(100%, 420px);
  padding: 34px;
}

.panel-main strong {
  display: block;
  margin-top: 22px;
  color: var(--blue);
  font-size: 4.8rem;
  line-height: 0.95;
}

.panel-main p,
.panel-mini {
  color: var(--muted);
  font-weight: 800;
}

.panel-side {
  left: 0;
  bottom: 86px;
  width: 290px;
  padding: 24px;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  height: 140px;
  margin-top: 20px;
}

.signal-bars i {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.signal-bars i:nth-child(1) {
  height: 42%;
}

.signal-bars i:nth-child(2) {
  height: 76%;
}

.signal-bars i:nth-child(3) {
  height: 58%;
}

.signal-bars i:nth-child(4) {
  height: 92%;
}

.panel-mini {
  right: 68px;
  bottom: 34px;
  padding: 18px 22px;
}

.section {
  padding: 92px clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.intro {
  background: var(--paper-bright);
}

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

.intro-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
}

.step {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 900;
}

.intro-grid p,
.case-card p,
.platform-copy p,
.contact-copy p {
  color: var(--muted);
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #f4fafb;
}

.platform-copy {
  max-width: 640px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #26322e;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--forest);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.platform-media img {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.products {
  background: #ffffff;
}

.project-grid,
.project-flow {
  display: grid;
  gap: 22px;
}

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

.project-flow {
  max-width: 1040px;
  margin: 0 auto;
  gap: 42px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.09);
}

.project-flow .project-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
}

.project-flow .project-card:nth-child(even) img {
  order: 2;
}

.reveal-card {
  opacity: 0;
  transform: translateY(56px) scale(0.98);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
}

.project-content h3 {
  max-width: 620px;
  color: var(--ink);
  font-family: "SF Mono", "Roboto Mono", "Cascadia Code", "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.project-content h3::before {
  color: var(--blue);
  content: "// ";
}

.project-content h3::after {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.project-content p {
  margin: 0;
  color: var(--muted);
}

.project-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #26322e;
}

.cases {
  background: #f8fbfd;
}

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

.case-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card div {
  padding: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: #151515;
  color: #ffffff;
}

.page-hero {
  padding: 136px clamp(18px, 5vw, 64px) 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 54%, #eef8f9 100%);
}

.page-hero-content {
  max-width: 840px;
}

.page-hero p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.14rem;
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: 136px clamp(18px, 5vw, 64px) 80px;
  background: #ffffff;
}

.company-hero-copy {
  max-width: 740px;
}

.company-hero-copy p:last-child,
.company-statement p,
.capability-grid p,
.timeline p,
.company-cards p {
  color: var(--muted);
}

.company-statement .eyebrow,
.company-cards .eyebrow {
  color: var(--coral);
}

.company-hero-media img {
  width: 100%;
  min-height: 430px;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-statement {
  background: #f6fbfd;
}

.company-statement h2 {
  max-width: 940px;
}

.company-statement p:last-child {
  max-width: 820px;
  font-size: 1.12rem;
}

.capability-section {
  background: #ffffff;
}

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

.capability-grid article {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
}

.capability-grid span,
.timeline span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.history-section {
  background: #f8fbfd;
}

.timeline {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.timeline article {
  display: grid;
  grid-template-columns: 160px minmax(0, 0.82fr) minmax(240px, 1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.company-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: #ffffff;
}

.company-cards article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.company-cards img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.company-cards div {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.company-cards .button {
  width: fit-content;
}

.company-cards .button-secondary {
  border-color: var(--line);
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #ffffff;
}

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

.detail-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.detail-list strong {
  display: block;
  margin-bottom: 6px;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
}

.open-role {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
}

.open-role p {
  color: var(--muted);
}

.careers-hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: end;
  overflow: hidden;
  padding: 136px clamp(18px, 5vw, 64px) 76px;
  color: #ffffff;
}

.careers-hero-image,
.careers-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.careers-hero-image {
  object-fit: cover;
}

.careers-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06));
}

.careers-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.careers-hero .eyebrow {
  color: var(--yellow);
}

.careers-culture {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #ffffff;
}

.careers-culture p,
.benefits-section .section-heading p,
.benefit-grid p,
.locations-copy p,
.faq-section .section-heading p,
.faq-grid p,
.role-list p {
  color: var(--muted);
}

.career-jump {
  position: sticky;
  top: 70px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.career-jump a {
  padding: 16px 22px;
  color: #26322e;
  font-weight: 900;
}

.career-jump a:hover {
  background: #f4fafb;
}

.benefits-section {
  background: #f8fbfd;
}

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

.benefit-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.benefit-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.benefit-grid h3,
.benefit-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.benefit-grid h3 {
  margin-top: 24px;
}

.benefit-grid p {
  margin-bottom: 26px;
}

.locations-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #ffffff;
}

.locations-copy {
  max-width: 620px;
}

.locations-section img {
  width: 100%;
  height: min(560px, 68vh);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-section {
  background: #f6fbfd;
}

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

.faq-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.roles-section {
  background: #ffffff;
}

.role-list {
  display: grid;
  gap: 18px;
}

.role-list .open-role {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.role-list .button-secondary {
  border-color: var(--line);
  color: var(--ink);
}

.careers-cta {
  padding: 92px clamp(18px, 5vw, 64px);
  background: #151515;
  color: #ffffff;
}

.careers-cta h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

.careers-cta .eyebrow {
  color: var(--yellow);
}

.career-notices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.career-notices a {
  padding: 26px clamp(18px, 5vw, 64px);
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
}

.career-notices a:hover {
  background: #f4fafb;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(37, 167, 184, 0.45);
  border-color: var(--cyan);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--yellow);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #0f1210;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

/* Apple-inspired presentation layer */
:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --paper-bright: #f5f5f7;
  --panel: #ffffff;
  --line: #d2d2d7;
  --coral: #06c;
  --cyan: #5ac8fa;
  --blue: #06c;
  --yellow: #f5f5f7;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

body {
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

.site-header {
  justify-content: center;
  min-height: 44px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: rgba(251, 251, 253, 0.82);
  color: rgba(29, 29, 31, 0.82);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 251, 253, 0.86);
  color: rgba(29, 29, 31, 0.86);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.brand {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  font-size: 0.88rem;
  font-weight: 600;
}

.brand-wordmark {
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
  white-space: nowrap;
  font-kerning: normal;
  font-variant-ligatures: none;
}

.site-nav {
  gap: clamp(20px, 4vw, 42px);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav a {
  border: 0;
  padding: 14px 0;
}

.site-nav a:hover {
  color: #000000;
}

.nav-toggle {
  position: absolute;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

.eyebrow {
  color: var(--blue);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-transform: none;
}

.section-heading .eyebrow,
.contact-copy .eyebrow,
.page-hero .eyebrow,
.company-hero .eyebrow,
.careers-hero .eyebrow,
.careers-cta .eyebrow {
  margin-bottom: 16px;
}

.hero {
  min-height: 86vh;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  padding: 96px clamp(18px, 5vw, 64px) 42px;
  margin-bottom: 12px;
  background: #fbfbfd;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(251, 251, 253, 0.94), rgba(251, 251, 253, 0.76) 40%, rgba(251, 251, 253, 0.38)),
    linear-gradient(90deg, rgba(251, 251, 253, 0.85), rgba(251, 251, 253, 0.46));
}

.hero-content {
  display: grid;
  justify-items: center;
  max-width: 940px;
}

.hero-copy {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.22;
}

.hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.button {
  min-height: 42px;
  border-width: 1px;
  border-radius: 999px;
  padding: 10px 21px;
  font-size: 1rem;
  font-weight: 500;
}

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

.button-primary:hover {
  background: #0056b3;
}

.button-secondary {
  border-color: var(--blue);
  color: var(--blue);
}

.button-secondary:hover {
  background: rgba(0, 102, 204, 0.08);
}

.hero-showcase {
  display: none;
}

.section {
  margin-bottom: 12px;
  padding: 86px clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.intro,
.products,
.capability-section,
.split-section,
.locations-section,
.roles-section {
  background: #fbfbfd;
}

.platform,
.cases,
.company-statement,
.history-section,
.benefits-section,
.faq-section {
  background: #ffffff;
}

.intro-grid article,
.capability-grid article,
.detail-list li,
.open-role,
.benefit-grid article,
.company-cards article,
.case-card,
.project-card {
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

.intro-grid article,
.capability-grid article,
.detail-list li,
.open-role,
.benefit-grid article,
.company-cards article,
.case-card {
  background: #f5f5f7;
}

.step,
.capability-grid span,
.timeline span {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
}

.platform {
  text-align: center;
}

.platform-copy {
  justify-self: center;
  max-width: 760px;
}

.check-list {
  max-width: 680px;
  margin: 28px auto 0;
  text-align: left;
}

.check-list li::before {
  background: var(--blue);
  border-radius: 50%;
}

.platform-media img,
.company-hero-media img,
.locations-section img {
  border-radius: 28px;
  box-shadow: none;
}

.project-flow {
  max-width: 1180px;
  gap: 12px;
}

.project-card {
  grid-template-columns: 1fr;
  min-height: 680px;
  background: #fbfbfd;
  text-align: center;
}

.project-flow .project-card:nth-child(even) {
  grid-template-columns: 1fr;
}

.project-flow .project-card:nth-child(even) img {
  order: 0;
}

.project-card img {
  height: min(440px, 56vw);
  object-fit: cover;
}

.project-content {
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 42px clamp(22px, 5vw, 74px);
}

.project-content h3 {
  font-family: inherit;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.project-content h3::before,
.project-content h3::after {
  content: none;
}

.project-content p {
  max-width: 680px;
  font-size: 1.18rem;
}

.project-content ul {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
  text-align: left;
}

.product-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-spotlight,
.product-board-card {
  display: grid;
  gap: 24px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.06);
}

.product-spotlight {
  min-height: 420px;
  padding: 30px;
}

.product-spotlight-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  min-height: 500px;
}

.product-visual,
.product-board-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.product-spotlight-copy,
.product-board-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.product-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.product-spotlight-copy h3,
.product-board-copy h3 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.02;
}

.product-spotlight-copy p,
.product-board-copy p {
  margin: 0;
  color: var(--muted);
}

.product-feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.grocery-visual {
  min-height: 100%;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 22%, rgba(90, 200, 250, 0.35), transparent 28%),
    linear-gradient(145deg, #f6fbff 0%, #eef5ff 52%, #f9fafc 100%);
}

.scanner-phone {
  width: min(100%, 260px);
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, #1f2330, #0e1017);
  box-shadow: 0 24px 34px rgba(10, 21, 44, 0.18);
}

.scanner-screen {
  display: grid;
  gap: 12px;
  min-height: 300px;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.scanner-screen span,
.listing-window span,
.metric-pill,
.vision-visual p {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
}

.scanner-screen strong,
.listing-window strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.scanner-screen ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.scanner-screen li {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: #eef4ff;
  color: #24427c;
  font-weight: 600;
}

.grocery-items {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.grocery-items span {
  width: fit-content;
  margin-left: auto;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #29404d;
  box-shadow: 0 10px 20px rgba(29, 29, 31, 0.08);
}

.token-visual,
.vision-visual,
.sublease-visual {
  min-height: 220px;
  padding: 26px;
}

.token-visual {
  display: grid;
  align-content: space-between;
  background: linear-gradient(160deg, #f4f7ff 0%, #ebf4ff 100%);
}

.metric-pill {
  background: rgba(10, 132, 255, 0.12);
}

.bar-cluster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 150px;
}

.bar-cluster i {
  display: block;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, #5ac8fa 0%, #06c 100%);
}

.bar-cluster i:nth-child(1) {
  height: 38%;
}

.bar-cluster i:nth-child(2) {
  height: 72%;
}

.bar-cluster i:nth-child(3) {
  height: 54%;
}

.bar-cluster i:nth-child(4) {
  height: 88%;
}

.vision-visual {
  display: grid;
  align-content: space-between;
  background: linear-gradient(135deg, #f5f5f7 0%, #e9edf5 100%);
}

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

.vision-grid span {
  display: block;
  min-height: 82px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #29313d 0%, #4d6175 100%);
}

.sublease-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #fef9f2 0%, #f6efe3 100%);
}

.listing-window {
  width: min(100%, 320px);
  display: grid;
  gap: 10px;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 28px rgba(91, 75, 39, 0.1);
}

.listing-window p {
  margin: 0;
  color: #755f39;
}

.product-board {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-board-card {
  padding: 26px;
}

.product-board-feature {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
  min-height: 420px;
}

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

.product-board-grid .product-board-card {
  align-content: start;
}

.case-grid,
.benefit-grid,
.company-cards,
.faq-grid {
  gap: 12px;
}

.case-card,
.benefit-grid article,
.company-cards article {
  text-align: center;
}

.case-card img,
.benefit-grid img,
.company-cards img {
  border-radius: 22px 22px 0 0;
}

.page-hero,
.company-hero {
  margin-bottom: 12px;
  background: #fbfbfd;
  text-align: center;
}

.page-hero-content,
.company-hero-copy {
  display: grid;
  justify-items: center;
  margin: 0 auto;
}

.company-hero {
  grid-template-columns: 1fr;
  padding-top: 118px;
}

.company-hero-media {
  width: min(100%, 980px);
  justify-self: center;
}

.company-statement {
  text-align: center;
}

.company-statement h2,
.company-statement p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.timeline {
  max-width: 1080px;
  margin: 0 auto;
}

.timeline article {
  border-color: var(--line);
}

.careers-hero {
  min-height: 76vh;
  place-items: start center;
  align-items: start;
  padding-top: 118px;
  text-align: center;
}

.careers-hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
}

.careers-hero-copy {
  display: grid;
  justify-items: center;
}

.careers-hero .eyebrow,
.careers-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.career-jump {
  top: 44px;
  justify-content: center;
  background: rgba(251, 251, 253, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
}

.career-jump a {
  color: rgba(29, 29, 31, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
}

.career-notices a {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.careers-culture,
.locations-section {
  text-align: center;
}

.careers-culture > *,
.locations-copy {
  justify-self: center;
}

.role-list .open-role {
  background: #f5f5f7;
}

.careers-cta {
  margin-bottom: 12px;
  background: #1d1d1f;
  text-align: center;
}

.careers-cta h2 {
  margin-right: auto;
  margin-left: auto;
}

.career-info-section {
  background: #fbfbfd;
}

.contact {
  background: #fbfbfd;
  color: var(--ink);
}

.contact-copy {
  justify-self: center;
  max-width: 700px;
  text-align: center;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form {
  max-width: 720px;
  width: 100%;
  justify-self: center;
}

.contact-form label {
  color: var(--ink);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border-color: var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
}

.form-status {
  color: var(--blue);
}

.site-footer {
  background: #f5f5f7;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer p {
  color: var(--ink);
  font-weight: 500;
}

.site-footer a {
  color: var(--blue);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 12px 24px rgba(21, 21, 21, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px clamp(18px, 5vw, 64px);
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .intro-grid,
  .project-grid,
  .project-flow .project-card,
  .project-flow .project-card:nth-child(even),
  .case-grid,
  .platform,
  .contact,
  .hero,
  .product-spotlight-grid,
  .product-spotlight-wide,
  .product-board-feature,
  .product-board-grid,
  .split-section,
  .company-hero,
  .capability-grid,
  .timeline article,
  .company-cards,
  .careers-culture,
  .benefit-grid,
  .locations-section,
  .faq-grid,
  .role-list .open-role,
  .career-notices {
    grid-template-columns: 1fr;
  }

  .project-flow .project-card:nth-child(even) img {
    order: 0;
  }

  .product-spotlight,
  .product-board-card {
    min-height: 0;
  }

  .grocery-items {
    position: static;
    margin-top: 18px;
  }

  .hero-showcase {
    min-height: 420px;
  }

  .intro-grid article {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 72px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .section {
    padding: 68px 18px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .case-card {
    grid-template-rows: 190px 1fr;
  }

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

  .project-card img {
    height: 210px;
  }

  .product-spotlight,
  .product-board-card {
    padding: 22px;
    border-radius: 24px;
  }

  .product-visual,
  .product-board-media,
  .listing-window,
  .scanner-phone,
  .scanner-screen {
    border-radius: 20px;
  }

  .token-visual,
  .vision-visual,
  .sublease-visual {
    min-height: 190px;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .panel-main {
    top: 20px;
  }

  .panel-main strong {
    font-size: 3.2rem;
  }

  .panel-side {
    bottom: 42px;
    width: 230px;
  }

  .panel-mini {
    right: 0;
    bottom: 0;
  }

  .company-hero {
    padding: 104px 18px 64px;
  }

  .company-hero-media img,
  .company-cards img {
    min-height: 0;
    height: 240px;
  }

  .company-cards .button {
    width: 100%;
  }

  .careers-hero {
    min-height: 70vh;
    padding: 112px 18px 64px;
  }

  .career-jump {
    position: static;
    padding: 0;
  }

  .career-jump a {
    width: 50%;
    padding: 14px 18px;
  }

  .benefit-grid img,
  .locations-section img {
    height: 230px;
  }

  .role-list .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
