@charset "UTF-8";
/* Global SCSS styles */
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Inter:wght@100..900&family=Kaisei+HarunoUmi:wght@400;500;700&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400;1,700&family=Moon+Dance&family=Roboto:wght@100..900&display=swap");

:root {
  --bg-color: #ffffff;
  --text-primary: #000000;
  --text-secondary: #000000;
  --off-white: #f4f4f4;
  --dim: #111111;
  --mid: #888888;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-color);
  min-height: 200vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 24px;
}

.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #888888;
}

#hero-sequence {
  background: #000;
}

.hero-overlay-content {
  position: absolute;
  z-index: 10;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) translateX(100px);
  width: 100%;
  max-width: 630px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.hero-overlay-content.hero-slide.active .hero-overlay-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.hero-overlay-content .hero-title,
.hero-overlay-content .hero-title-text {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
}

.hero-overlay-content .hero-title {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-overlay-content .hero-title-text {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.85;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-overlay-content .hero-subtitle {
  font-family: "Kaisei HarunoUmi";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #ffffff;
  opacity: 0.75;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-overlay-content .hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 46px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-overlay-content .hero-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.hero-slide.active .hero-overlay-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.hero-slide[data-theme=phms].active .hero-overlay-content .hero-title,
.hero-slide[data-theme=phms].active .hero-overlay-content .hero-title-text {
  color: #000000;
  text-shadow: 0 2px 40px rgba(255, 255, 255, 0.3);
}

.hero-slide[data-theme=phms].active .hero-overlay-content .hero-subtitle {
  color: #000000;
}

.hero-slide[data-theme=phms].active .hero-overlay-content .section-label {
  color: rgba(0, 0, 0, 0.5);
}

.hero-slide[data-theme=phms].active .hero-overlay-content .section-label::before {
  background: rgba(0, 0, 0, 0.4);
}

.hero-slide[data-theme=phms].active .hero-overlay-content .hero-btn {
  border-color: rgba(0, 0, 0, 0.7);
  color: #000000;
}

.hero-slide[data-theme=phms].active .hero-overlay-content .hero-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

#hero-sequence .sticky-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 8;
  pointer-events: none;
}

#hero-sequence .sticky-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 9;
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.hero-scroll-hint span {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-hint::after {
  content: "";
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-ctrl-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hero-indicators {
  display: flex;
  gap: 12px;
}

.hero-indicators .indicator {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicators .indicator.active {
  background: #ffffff;
  width: 50px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  pointer-events: auto;
  opacity: 1;
}

#partners-section {
  background: #ffffff;
  padding: 56px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

#partners-section .partners-header {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  text-align: center;
  margin-bottom: 32px;
}

#partners-section .partners-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

#partners-section .partners-row {
  display: flex;
  width: max-content;
}

#partners-section .partners-row--left {
  animation: partners-left 35s linear infinite;
}

#partners-section .partners-row--right {
  animation: partners-right 35s linear infinite;
}

#partners-section .partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  margin: 0 6px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 100px;
  white-space: nowrap;
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.55);
  background: #ffffff;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#partners-section .partner-pill:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.9);
}

#partners-section .partner-pill img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.5;
}

@keyframes partners-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes partners-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

#stats-strip {
  background: #000000;
  padding: 60px 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

#stats-strip .stat-item {
  text-align: center;
  padding: 0 40px;
}

#stats-strip .stat-item+.stat-item {
  border-left: 1px solid #222;
}

#stats-strip .stat-number {
  font-family: "Libre Caslon Text", serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}

#stats-strip .stat-label {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
}

#whats-new {
  padding-top: 100px !important;
  padding-bottom: 120px !important;
}

#whats-new .section-title {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 16px;
}

#whats-new .news-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #000 rgba(0, 0, 0, 0.04);
}

#whats-new .news-carousel::-webkit-scrollbar {
  height: 1px;
}

#whats-new .news-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
}

#whats-new .news-carousel::-webkit-scrollbar-thumb {
  background: #000;
}

#whats-new .news-carousel::-webkit-scrollbar-thumb:hover {
  background: #333;
}

#whats-new .news-carousel .news-card-wrapper {
  flex: 0 0 360px;
  max-width: 360px;
  scroll-snap-align: start;
  padding-right: 32px;
}

#whats-new .news-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-top: 1.5px solid #000000;
  padding-top: 28px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#whats-new .news-card:hover {
  transform: translateY(-6px);
}

#whats-new .news-card .news-img {
  width: 100%;
  height: 200px;
  background: #111 center/cover no-repeat;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#whats-new .news-card .news-img:hover {
  transform: scale(1.03);
}

#whats-new .news-card .news-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}

#whats-new .news-card .news-content-block {
  display: flex;
  flex-direction: column;
}

#whats-new .news-card .news-content-block .card-number {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #888888;
  margin-bottom: 12px;
}

#whats-new .news-card .news-content-block .news-title {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#whats-new .news-card .news-content-block .news-desc {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#whats-new .news-card .news-content-block .divider {
  width: 100%;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#whats-new .news-card .news-content-block .read-more-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#whats-new .news-card .news-content-block .read-more-wrapper .read-more {
  font-family: "Inconsolata", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #000000;
}

#whats-new .news-card .news-content-block .read-more-wrapper .arrow-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#whats-new .news-card .news-content-block .read-more-wrapper .arrow-icon svg {
  width: 100%;
  height: 100%;
}

#whats-new .news-card .news-content-block .read-more-wrapper .arrow-icon svg path {
  stroke: #000000;
}

#whats-new .news-card .news-content-block .read-more-wrapper:hover {
  opacity: 0.7;
}

#innovation-section {
  background: #111111;
  color: #ffffff;
  max-width: 100%;
  padding: 120px 60px;
  margin: 0;
}

#innovation-section .innovation-headline {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

#innovation-section .innovation-subheadline {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  width: 100%;
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
}

#innovation-section .process-flow-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0;
}

#innovation-section .process-flow-container::-webkit-scrollbar {
  height: 4px;
}

#innovation-section .process-flow-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

#innovation-section .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 100px;
  flex: 1;
  position: relative;
  padding-top: 40px;
}

#innovation-section .process-step::before {
  content: attr(data-num);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
}

#innovation-section .process-step:hover .icon-wrapper {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

#innovation-section .process-step .icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: border-color 0.3s ease, background 0.3s ease;
}

#innovation-section .process-step .icon-wrapper .material-icons {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
}

#innovation-section .process-step .step-label {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  width: 110px;
  letter-spacing: 0.05em;
}

#innovation-section .process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding-top: 40px;
}

#innovation-section .process-arrow .material-icons {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.2);
}

#voices-section {
  background: #f4f4f4;
  padding: 100px 0;
}

#voices-section .voices-headline {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #000000;
  margin-bottom: 50px;
}

#voices-section .voices-carousel {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 20px 60px 40px;
  scrollbar-width: thin;
  scrollbar-color: #000 rgba(0, 0, 0, 0.04);
}

#voices-section .voices-carousel::-webkit-scrollbar {
  height: 1px;
}

#voices-section .voices-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
}

#voices-section .voices-carousel::-webkit-scrollbar-thumb {
  background: #000;
}

#voices-section .voices-carousel::-webkit-scrollbar-thumb:hover {
  background: #333;
}

#voices-section .voice-card {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#voices-section .voice-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

#voices-section .voice-card .voice-img-placeholder {
  display: none;
}

#voices-section .voice-card .quote-mark {
  font-family: "Libre Caslon Text", serif;
  font-size: 96px;
  line-height: 0.6;
  color: #000000;
  opacity: 0.06;
  position: absolute;
  top: 28px;
  left: 24px;
  pointer-events: none;
  user-select: none;
}

#voices-section .voice-card .voice-text {
  flex: 1;
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: #222;
  height: auto;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#voices-section .voice-card .voice-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
}

#voices-section .voice-card .voice-footer .mic-icon {
  font-size: 14px;
  color: #ffffff;
  background: #000000;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

#voices-section .voice-card .voice-footer .voice-info .voice-name {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}

#voices-section .voice-card .voice-footer .voice-info .voice-role {
  font-family: "Inconsolata", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
}

#hiring-bar {
  width: 100%;
  height: 56px;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

#hiring-bar .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

#hiring-bar .marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

#hiring-bar .marquee-content span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#contact-section {
  background: #ffffff;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

#contact-section .contact-headline {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #000000;
  margin-top: 20px;
}

#contact-section .contact-brand-text {
  font-family: "Libre Caslon Text";
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #000000;
  max-width: 280px;
}

#contact-section .rectangle-14-form {
  background: #0a0a0a;
  width: 100%;
  padding: 40px;
  border-radius: 2px;
  border: 1px solid #222;
}

#contact-section .rectangle-14-form form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#contact-section .rectangle-14-form .m3-text-field.full-width,
#contact-section .rectangle-14-form .m3-text-field.textarea-field,
#contact-section .rectangle-14-form .submit-container {
  grid-column: 1/-1;
}

#contact-section .m3-text-field {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  width: 100%;
  padding: 12px 16px;
  isolation: isolate;
  transition: border-color 0.2s ease;
}

#contact-section .m3-text-field:focus-within {
  border-color: rgba(255, 255, 255, 0.55);
}

#contact-section .m3-text-field .m3-label {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}

#contact-section .m3-text-field .m3-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #ffffff;
  padding: 0;
  outline: none;
}

#contact-section .m3-text-field .m3-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

#contact-section .m3-text-field .m3-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  transition: color 0.2s ease;
}

#contact-section .m3-text-field .m3-select option {
  background: #111;
  color: #ffffff;
}

#contact-section .m3-text-field .m3-select:invalid,
#contact-section .m3-text-field .m3-select:required:not(:valid) {
  color: rgba(255, 255, 255, 0.25);
}

#contact-section .m3-text-field .m3-select:focus {
  color: #ffffff;
}

#contact-section .m3-text-field.textarea-field textarea.m3-input {
  min-height: 80px;
  resize: vertical;
}

#contact-section .m3-text-field .m3-indicator {
  display: none;
}

#contact-section .m3-text-field .m3-support {
  margin-top: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.25);
}

#contact-section .file-drop-zone {
  width: 100%;
  min-height: 100px;
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-top: 4px;
}

#contact-section .file-drop-zone:hover,
#contact-section .file-drop-zone.dragover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.03);
}

#contact-section .file-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  text-align: center;
  pointer-events: none;
}

#contact-section .file-drop-icon {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.25);
}

#contact-section .file-drop-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

#contact-section .file-drop-hint {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.22);
  margin: 0;
}

#contact-section .file-drop-browse {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  cursor: pointer;
  pointer-events: all;
}

#contact-section .submit-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#contact-section .submit-btn.large-submit {
  width: 180px;
  height: 52px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

#contact-section .submit-btn.large-submit span {
  font-family: "Inter";
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #000000;
  transition: color 0.3s ease;
}

#contact-section .submit-btn.large-submit:hover {
  background: transparent;
}

#contact-section .submit-btn.large-submit:hover span {
  color: #ffffff;
}

#main-footer {
  background: #000000;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

#main-footer .italic-motto {
  font-family: "Inconsolata", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 21px;
  color: #ffffff;
}

#main-footer .footer-heading {
  font-family: "Libre Caslon Text";
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-decoration: underline;
  margin-bottom: 20px;
  color: #ffffff;
}

#main-footer .footer-links {
  list-style: none;
  padding: 0;
}

#main-footer .footer-links li {
  margin-bottom: 10px;
}

#main-footer .footer-links li a {
  font-family: "Inconsolata", monospace;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

#main-footer .footer-links li a:hover {
  opacity: 1;
}

#main-footer .contact-entry {
  font-family: "Inconsolata", monospace;
  font-size: 20px;
  line-height: 1.2;
}

#main-footer .contact-entry p {
  margin: 0;
  opacity: 0.9;
}

#main-footer .contact-entry .material-icons {
  font-size: 24px;
  color: #ffffff;
}

#main-footer .footer-branding-section {
  margin-top: 80px;
}

#main-footer .footer-branding-section .horiz-line {
  width: 322px;
  height: 0;
  border: 1px solid #ffffff;
  opacity: 1;
}

#main-footer .footer-branding-section .footer-branding {
  font-family: "Moon Dance", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 128px;
  line-height: normal;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

#main-footer .footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#main-footer .footer-bottom-bar .copyright {
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  margin: 0;
  opacity: 0.7;
}

#main-footer .footer-bottom-bar .privacy-link {
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
}

#main-footer .footer-bottom-bar .privacy-link:hover {
  text-decoration: underline;
}

.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-section.animate-in {
  opacity: 1;
  transform: none;
}

#dual-marquee {
  background: #000000;
  overflow: hidden;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

#dual-marquee .marquee-row {
  display: flex;
  overflow: hidden;
  height: 46px;
  align-items: center;
}

#dual-marquee .marquee-row:first-child {
  border-bottom: 1px solid #111;
}

#dual-marquee .marquee-inner {
  display: flex;
  width: max-content;
  align-items: center;
}

#dual-marquee .marquee-inner--left {
  animation: dmarquee-left 28s linear infinite;
}

#dual-marquee .marquee-inner--right {
  animation: dmarquee-right 28s linear infinite;
}

#dual-marquee .marquee-word {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  padding: 0 36px;
}

#dual-marquee .marquee-sep {
  color: rgba(255, 255, 255, 0.15);
  padding: 0 4px;
  font-size: 8px;
}

@keyframes dmarquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes dmarquee-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

#products-preview {
  background: #ffffff;
  padding: 120px 60px;
}

#products-preview .preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

#products-preview .preview-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #000000;
  max-width: 440px;
}

#products-preview .preview-link {
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #888888;
  text-decoration: none;
  border-bottom: 1px solid rgba(136, 136, 136, 0.4);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, border-color 0.2s;
}

#products-preview .preview-link:hover {
  color: #000000;
  border-color: #000000;
}

#products-preview .preview-link .material-icons {
  font-size: 14px;
}

#products-preview .products-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 480px 200px;
  gap: 12px;
}

#products-preview .product-bento-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#products-preview .product-bento-card:hover {
  opacity: 0.92;
}

#products-preview .product-bento-card:hover .pbc-arrow {
  transform: translate(3px, -3px);
}

#products-preview .product-bento-card--thanu {
  grid-row: 1/3;
  background: #f4f4f4 url("https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=700&q=85&fit=crop") center/cover no-repeat;
}

#products-preview .product-bento-card--thanu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

#products-preview .product-bento-card--thanu .pbc-num {
  color: rgba(255, 255, 255, 0.5);
}

#products-preview .product-bento-card--thanu .pbc-name {
  color: #ffffff;
}

#products-preview .product-bento-card--thanu .pbc-sub {
  color: rgba(255, 255, 255, 0.55);
}

#products-preview .product-bento-card--thanu .pbc-arrow {
  border-color: rgba(255, 255, 255, 0.3);
}

#products-preview .product-bento-card--thanu .pbc-arrow .material-icons {
  color: rgba(255, 255, 255, 0.8);
}

#products-preview .product-bento-card--phms {
  background: #111111 url("https://images.unsplash.com/photo-1485827404703-89b55fcc595e?w=900&q=85&fit=crop") center/cover no-repeat;
}

#products-preview .product-bento-card--phms::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.2) 100%);
  z-index: 1;
}

#products-preview .product-bento-card--phms .pbc-num {
  color: rgba(0, 0, 0, 0.38);
}

#products-preview .product-bento-card--phms .pbc-name {
  color: #000000;
}

#products-preview .product-bento-card--phms .pbc-sub {
  color: rgba(0, 0, 0, 0.45);
}

#products-preview .product-bento-card--phms .pbc-arrow {
  border-color: rgba(0, 0, 0, 0.22);
}

#products-preview .product-bento-card--phms .pbc-arrow .material-icons {
  color: rgba(0, 0, 0, 0.6);
}

#products-preview .product-bento-card--vfd {
  background: #000000 url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=700&q=85&fit=crop") center/cover no-repeat;
}

#products-preview .product-bento-card--vfd::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

#products-preview .product-bento-card--vfd .pbc-num {
  color: rgba(255, 255, 255, 0.5);
}

#products-preview .product-bento-card--vfd .pbc-name {
  color: #ffffff;
}

#products-preview .product-bento-card--vfd .pbc-sub {
  color: rgba(255, 255, 255, 0.55);
}

#products-preview .product-bento-card--vfd .pbc-arrow {
  border-color: rgba(255, 255, 255, 0.3);
}

#products-preview .product-bento-card--vfd .pbc-arrow .material-icons {
  color: rgba(255, 255, 255, 0.8);
}

#products-preview .pbc-inner {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  color: #000000;
}

#products-preview .pbc-num {
  position: absolute;
  top: 32px;
  left: 40px;
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
}

#products-preview .pbc-name {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.9;
  color: #ffffff;
  margin-bottom: 8px;
}

.product-bento-card--thanu #products-preview .pbc-name {
  font-size: clamp(44px, 5vw, 72px);
}

.product-bento-card--phms #products-preview .pbc-name {
  font-size: clamp(32px, 3.5vw, 48px);
}

.product-bento-card--vfd #products-preview .pbc-name {
  font-size: clamp(32px, 3.5vw, 48px);
}

#products-preview .pbc-sub {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

#products-preview .pbc-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

#products-preview .pbc-arrow .material-icons {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

#products-preview .pbc-bg-text {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-family: "Libre Caslon Text", serif;
  font-size: 200px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 1;
}

#mission-section {
  background: #000000;
  padding: 160px 60px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

#mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

#mission-section .mission-inner {
  position: relative;
  z-index: 2;
}

#mission-section .mission-line {
  display: block;
  font-family: "Libre Caslon Text", serif;
  font-weight: 400;
  font-size: clamp(52px, 8vw, 116px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: #ffffff;
}

#mission-section .mission-line--muted {
  color: rgba(255, 255, 255, 0.22);
  font-style: italic;
}

#mission-section .mission-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 48px auto;
}

#mission-section .mission-detail {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.38);
  max-width: 580px;
  margin: 0 auto 48px;
}

#mission-section .mission-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

#mission-section .mission-cta:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

#mission-section .mission-cta .material-icons {
  font-size: 15px;
}

.process-step:hover .icon-wrapper {
  animation: icon-tap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes icon-tap {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

.news-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.news-modal-overlay.open .news-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.news-modal {
  background: #fff;
  max-width: 580px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 52px 48px 44px;
  position: relative;
  transform: scale(0.96) translateY(16px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.news-modal .news-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.news-modal .news-modal-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.news-modal .news-modal-close .material-icons {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}

.news-modal .news-modal-num {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
}

.news-modal .news-modal-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.news-modal .news-modal-desc {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 0;
}

.news-modal .news-modal-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 28px 0;
}

.news-modal .news-modal-full {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

#liquid-nav {
  transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-radius 0.4s ease, padding 0.4s ease;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  left: 0;
  width: 100%;
}

#liquid-nav.scrolled {
  top: 16px;
  width: 68%;
  left: 16%;
  padding: 0.65rem 1.75rem !important;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(255, 255, 255, 0.7);
}

#liquid-nav img.brand-logo {
  filter: none;
  transition: opacity 0.3s ease;
}

.nav-link-custom {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  color: #000 !important;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-link-custom:hover {
  opacity: 0.7;
}

.nav-link-custom:hover::after {
  width: 100%;
}

#liquid-nav[data-theme=dark] .nav-link-custom {
  color: #000000 !important;
}

#liquid-nav[data-theme=dark].scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.85);
}

#liquid-nav[data-theme=light] .nav-link-custom {
  color: #000000 !important;
}

#liquid-nav[data-theme=light].scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
  border-top-color: rgba(255, 255, 255, 0.85);
}

#liquid-nav.nav-dark .nav-link-custom {
  color: #000 !important;
}

#liquid-nav.nav-dark .nav-link-custom::after {
  background: #000;
}

#liquid-nav.nav-dark .nav-link-custom:hover {
  color: rgba(0, 0, 0, 0.65) !important;
}

.products-hero {
  background: #000000;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
}

.products-hero__bg-text {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(120px, 22vw, 300px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.05em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.products-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.products-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.products-hero .section-label {
  color: rgba(255, 255, 255, 0.3) !important;
}

.products-hero .section-label::before {
  background: rgba(255, 255, 255, 0.3) !important;
}

.products-hero .hero-page-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 16px 0 24px;
}

.products-hero .hero-page-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

.products-hero .hero-page-sub {
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  line-height: 1.8;
}

.product-full-section {
  padding: 120px 60px;
  position: relative;
  background: #ffffff;
}

.product-full-section--dark {
  background: #111111;
}

.product-full-section--dark .product-full-number,
.product-full-section--dark .product-full-category {
  color: rgba(255, 255, 255, 0.2);
}

.product-full-section--dark .product-full-name {
  color: #ffffff;
}

.product-full-section--dark .product-full-tagline {
  color: rgba(255, 255, 255, 0.35);
}

.product-full-section--dark .product-full-desc {
  color: rgba(255, 255, 255, 0.5);
}

.product-full-section--dark .feature-chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.product-full-section--dark .feature-chip .material-icons {
  color: rgba(255, 255, 255, 0.3);
}

.product-full-section--dark .product-full-cta {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.product-full-section--dark .product-full-cta:hover {
  background: transparent;
  color: #ffffff;
}

.product-full-section--dark .product-border-top {
  border-color: rgba(255, 255, 255, 0.08);
}

.product-full-section .product-border-top {
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.product-full-section .product-full-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-full-section.product-full-section--reverse .product-full-inner .product-full-visual {
  order: 2;
}

.product-full-section.product-full-section--reverse .product-full-inner .product-full-text {
  order: 1;
}

.product-full-section .product-full-number {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888888;
  margin-bottom: 16px;
}

.product-full-section .product-full-category {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 12px;
}

.product-full-section .product-full-name {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #000000;
  margin-bottom: 12px;
}

.product-full-section .product-full-tagline {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 20px;
  color: #888888;
  margin-bottom: 32px;
  line-height: 1.4;
}

.product-full-section .product-full-desc {
  font-family: "Libre Caslon Text", serif;
  font-size: 17px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 40px;
  max-width: 480px;
}

.product-full-section .product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 44px;
}

.product-full-section .feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-family: "Inconsolata", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #333;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.product-full-section .feature-chip:hover {
  background: #ebebeb;
}

.product-full-section .feature-chip .material-icons {
  font-size: 16px;
  color: #888888;
  flex-shrink: 0;
}

.product-full-section .product-full-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 34px;
  background: #000000;
  color: #ffffff;
  border: 1.5px solid #000000;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-full-section .product-full-cta:hover {
  background: transparent;
  color: #000000;
}

.product-full-section .product-full-cta .material-icons {
  font-size: 16px;
}

.product-full-section .product-full-visual {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.thanu-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #080808, #1c1c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thanu-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.04), transparent 55%), radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.03), transparent 45%);
}

.thanu-visual .robot-glyph {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: float-glyph 4s ease-in-out infinite;
}

.thanu-visual .robot-glyph .r-head {
  width: 70px;
  height: 55px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px 4px 0 0;
  position: relative;
}

.thanu-visual .robot-glyph .r-head::before,
.thanu-visual .robot-glyph .r-head::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 12px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: eye-blink 4s ease-in-out infinite;
}

.thanu-visual .robot-glyph .r-head::before {
  left: 14px;
}

.thanu-visual .robot-glyph .r-head::after {
  right: 14px;
  animation-delay: 0.1s;
}

.thanu-visual .robot-glyph .r-neck {
  width: 24px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.thanu-visual .robot-glyph .r-torso {
  width: 90px;
  height: 110px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanu-visual .robot-glyph .r-torso .r-core {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: core-pulse 2s ease-in-out infinite;
}

.thanu-visual .robot-glyph .r-hips {
  width: 80px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.thanu-visual .robot-glyph .r-legs {
  display: flex;
  gap: 8px;
}

.thanu-visual .robot-glyph .r-legs .r-leg {
  width: 28px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 4px 4px;
}

.thanu-visual .orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.thanu-visual .orbit-ring:nth-child(2) {
  width: 220px;
  height: 220px;
  animation: orbit-spin 12s linear infinite;
}

.thanu-visual .orbit-ring:nth-child(3) {
  width: 320px;
  height: 320px;
  animation: orbit-spin 20s linear infinite reverse;
}

.thanu-visual .orbit-ring:nth-child(4) {
  width: 420px;
  height: 420px;
  animation: orbit-spin 30s linear infinite;
}

.thanu-visual .orbit-ring::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes float-glyph {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes eye-blink {

  0%,
  90%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  95% {
    opacity: 0.1;
    transform: scaleY(0.1);
  }
}

@keyframes core-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.phms-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, #f8f8f8, #eeeeee);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phms-visual .phms-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phms-visual .phms-graphic .phms-circle-outer {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phms-pulse 3s ease-in-out infinite;
  position: relative;
}

.phms-visual .phms-graphic .phms-circle-outer .material-icons {
  font-size: 80px;
  color: rgba(0, 0, 0, 0.12);
}

.phms-visual .phms-graphic .phms-circle-outer::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: phms-ring 3s ease-in-out infinite;
}

.phms-visual .phms-graphic .phms-circle-outer::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.025);
  animation: phms-ring 3s ease-in-out infinite 0.5s;
}

.phms-visual .phms-graphic .phms-stats-row {
  display: flex;
  gap: 12px;
}

.phms-visual .phms-graphic .phms-stats-row .phms-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.phms-visual .phms-graphic .phms-stats-row .phms-stat .phms-stat-val {
  font-family: "Libre Caslon Text", serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.phms-visual .phms-graphic .phms-stats-row .phms-stat .phms-stat-lbl {
  font-family: "Inconsolata", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888888;
}

@keyframes phms-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@keyframes phms-ring {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.15);
  }
}

.vfd-visual {
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.vfd-visual .vfd-graphic {
  width: 100%;
  max-width: 320px;
}

.vfd-visual .vfd-graphic .vfd-board {
  background: #111;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vfd-visual .vfd-graphic .vfd-board .vfd-display {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-display .vfd-readout {
  font-family: "Inconsolata", monospace;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  animation: vfd-count 4s ease-in-out infinite;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-display .vfd-unit {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px 1px 0 0;
  animation: vfd-bar-anim 2s ease-in-out infinite;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(1) {
  height: 40px;
  animation-delay: 0s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(2) {
  height: 65px;
  animation-delay: 0.1s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(3) {
  height: 30px;
  animation-delay: 0.2s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(4) {
  height: 75px;
  animation-delay: 0.3s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(5) {
  height: 50px;
  animation-delay: 0.4s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(6) {
  height: 58px;
  animation-delay: 0.5s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(7) {
  height: 35px;
  animation-delay: 0.6s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(8) {
  height: 70px;
  animation-delay: 0.7s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(9) {
  height: 45px;
  animation-delay: 0.8s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(10) {
  height: 62px;
  animation-delay: 0.9s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(11) {
  height: 28px;
  animation-delay: 1s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-bars .vfd-bar:nth-child(12) {
  height: 55px;
  animation-delay: 1.1s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-controls .vfd-btn {
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  animation: vfd-btn-glow 3s ease-in-out infinite;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-controls .vfd-btn:nth-child(1) {
  animation-delay: 0s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-controls .vfd-btn:nth-child(2) {
  animation-delay: 0.4s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-controls .vfd-btn:nth-child(3) {
  animation-delay: 0.8s;
}

.vfd-visual .vfd-graphic .vfd-board .vfd-controls .vfd-btn:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes vfd-count {
  0% {
    opacity: 1;
  }

  48% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  52% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes vfd-bar-anim {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes vfd-btn-glow {

  0%,
  100% {
    background: rgba(255, 255, 255, 0.06);
  }

  50% {
    background: rgba(255, 255, 255, 0.15);
  }
}

.tech-stack-section {
  background: #f4f4f4;
  padding: 100px 60px;
  text-align: center;
}

.tech-stack-section .tech-section-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #000000;
  margin-bottom: 12px;
}

.tech-stack-section .tech-section-sub {
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #888888;
  margin-bottom: 60px;
}

.tech-stack-section .tech-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.tech-stack-section .tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #333;
  transition: all 0.25s ease;
  cursor: default;
}

.tech-stack-section .tech-pill:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.tech-stack-section .tech-pill:hover .material-icons {
  color: #ffffff;
}

.tech-stack-section .tech-pill .material-icons {
  font-size: 15px;
  color: #888888;
  transition: color 0.25s;
}

.product-page-cta {
  background: #000000;
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.product-page-cta .cta-eyebrow {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.product-page-cta .cta-eyebrow::before,
.product-page-cta .cta-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.product-page-cta .cta-headline {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 24px;
}

.product-page-cta .cta-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

.product-page-cta .cta-sub {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.product-page-cta .cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-page-cta .cta-btn-primary {
  padding: 16px 44px;
  background: #ffffff;
  color: #000000;
  border: 1.5px solid #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-page-cta .cta-btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

.product-page-cta .cta-btn-secondary {
  padding: 16px 44px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-page-cta .cta-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.services-hero {
  background: #000000;
  min-height: 58vh;
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.services-hero__grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.025) 59px, rgba(255, 255, 255, 0.025) 60px), repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, 0.025) 59px, rgba(255, 255, 255, 0.025) 60px);
  pointer-events: none;
}

.services-hero .section-label {
  color: rgba(255, 255, 255, 0.3) !important;
}

.services-hero .section-label::before {
  background: rgba(255, 255, 255, 0.3) !important;
}

.services-hero .services-hero-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 16px 0 24px;
  max-width: 700px;
}

.services-hero .services-hero-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.32);
}

.services-hero .services-hero-sub {
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  max-width: 500px;
  line-height: 1.8;
}

.services-grid-section {
  background: #ffffff;
  padding: 100px 60px;
}

.services-grid-section .services-section-header {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.services-grid-section .services-section-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #000000;
  line-height: 1.1;
}

.services-grid-section .services-section-sub {
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #888888;
  line-height: 1.8;
}

.services-grid-section .services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.services-grid-section .service-card-item {
  background: #ffffff;
  padding: 48px 40px 44px;
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}

.services-grid-section .service-card-item:hover {
  background: #f4f4f4;
}

.services-grid-section .service-card-item:hover .service-card-icon-wrap {
  background: #000000;
  border-color: #000000;
}

.services-grid-section .service-card-item:hover .service-card-icon-wrap .material-icons {
  color: #ffffff;
}

.services-grid-section .service-card-item:hover .service-card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.services-grid-section .service-card-item .service-card-num {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.18);
  margin-bottom: 32px;
}

.services-grid-section .service-card-item .service-card-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.services-grid-section .service-card-item .service-card-icon-wrap .material-icons {
  font-size: 22px;
  color: #000000;
  transition: color 0.3s;
}

.services-grid-section .service-card-item .service-card-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.25;
}

.services-grid-section .service-card-item .service-card-desc {
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.services-grid-section .service-card-item .service-card-arrow {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}

.services-grid-section .service-card-item .service-card-arrow .material-icons {
  font-size: 20px;
  color: #000000;
}

.services-process-section {
  background: #111111;
  padding: 120px 60px;
}

.services-process-section .process-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-process-section .process-header .section-label {
  color: rgba(255, 255, 255, 0.3) !important;
  justify-content: center;
}

.services-process-section .process-header .section-label::before {
  background: rgba(255, 255, 255, 0.3) !important;
}

.services-process-section .process-header h2 {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-top: 8px;
}

.services-process-section .process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.services-process-section .process-timeline-item {
  padding: 48px 32px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background 0.3s ease;
}

.services-process-section .process-timeline-item:last-child {
  border-right: none;
}

.services-process-section .process-timeline-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.services-process-section .process-timeline-item:hover .timeline-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.services-process-section .process-timeline-item .timeline-num {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.services-process-section .process-timeline-item .timeline-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.services-process-section .process-timeline-item .timeline-icon-wrap .material-icons {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.45);
}

.services-process-section .process-timeline-item .timeline-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.3;
}

.services-process-section .process-timeline-item .timeline-desc {
  font-family: "Libre Caslon Text", serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.3);
}

.why-section {
  background: #f4f4f4;
  padding: 100px 60px;
}

.why-section .why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.why-section .why-left {
  position: sticky;
  top: 120px;
}

.why-section .why-left .why-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 20px;
}

.why-section .why-left .why-sub {
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #888888;
  line-height: 1.85;
}

.why-section .why-right {
  display: flex;
  flex-direction: column;
}

.why-section .why-item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: start;
  transition: padding-left 0.3s ease;
}

.why-section .why-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-section .why-item:hover {
  padding-left: 8px;
}

.why-section .why-item .why-item-num {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #888888;
  padding-top: 5px;
}

.why-section .why-item .why-item-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-section .why-item .why-item-desc {
  font-family: "Libre Caslon Text", serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.services-stats-strip {
  background: #000000;
  padding: 80px 60px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.services-stats-strip .stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.services-stats-strip .stat-box {
  padding: 0 40px;
  text-align: center;
}

.services-stats-strip .stat-box+.stat-box {
  border-left: 1px solid #1e1e1e;
}

.services-stats-strip .stat-box .stat-val {
  font-family: "Libre Caslon Text", serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.services-stats-strip .stat-box .stat-lbl {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}

.services-cta-section {
  background: #ffffff;
  padding: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta-section::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.services-cta-section .services-cta-eyebrow {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.services-cta-section .services-cta-eyebrow::before,
.services-cta-section .services-cta-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.services-cta-section .services-cta-headline {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #000000;
  margin-bottom: 24px;
}

.services-cta-section .services-cta-headline em {
  font-style: italic;
  color: rgba(0, 0, 0, 0.28);
}

.services-cta-section .services-cta-sub {
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  letter-spacing: 0.07em;
  color: #888888;
  margin-bottom: 56px;
}

.services-cta-section .services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 52px;
  background: #000000;
  color: #ffffff;
  border: 1.5px solid #000000;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-cta-section .services-cta-btn:hover {
  background: transparent;
  color: #000000;
}

.services-cta-section .services-cta-btn .material-icons {
  font-size: 16px;
}

.service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.service-modal-overlay.open .service-modal {
  transform: scale(1) translateY(0);
}

.service-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 56px 56px 60px;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
}

.service-modal::-webkit-scrollbar {
  width: 4px;
}

.service-modal::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-modal-close:hover {
  border-color: #000000;
  color: #000000;
  background: rgba(0, 0, 0, 0.04);
}

.service-modal-close .material-icons {
  font-size: 18px;
}

.smd-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.smd-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smd-icon-wrap .material-icons {
  font-size: 20px;
  color: #ffffff;
}

.smd-num {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.smd-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 10px;
}

.smd-tagline {
  font-family: "Inconsolata", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
}

.smd-desc {
  font-family: "Libre Caslon Text", serif;
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 32px;
}

.smd-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}

.smd-section-label {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
  font-weight: 400;
}

.smd-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.smd-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
}

.smd-check {
  font-size: 16px !important;
  color: #000000;
  flex-shrink: 0;
  margin-top: 1px;
}

.smd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.smd-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.45);
}

.smd-timeline .material-icons {
  font-size: 16px;
}

.smd-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.2s ease;
}

.smd-cta:hover {
  background: #222;
  color: #ffffff;
}

.smd-cta .material-icons {
  font-size: 15px;
}

.contact-page .contact-hero-section {
  background: #f4f4f4;
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
}

.contact-page .contact-hero-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.contact-page .contact-hero-section .contact-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-page .contact-hero-section .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 32px;
}

.contact-page .contact-hero-section .contact-eyebrow::before,
.contact-page .contact-hero-section .contact-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #888888;
}

.contact-page .contact-hero-section .contact-hero-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #000000;
  margin-bottom: 28px;
}

.contact-page .contact-hero-section .contact-hero-sub {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  line-height: 1.75;
  color: #555;
  max-width: 480px;
  margin: 0 auto;
}

.contact-page .contact-form-section {
  background: #ffffff;
  padding: 100px 60px;
}

.contact-page .contact-form-section .contact-form-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-page .contact-form-section .contact-form-heading {
  font-family: "Libre Caslon Text", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 48px;
}

.contact-page .contact-form-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.contact-page .contact-form-section .form-row.full-row {
  grid-template-columns: 1fr;
}

.contact-page .contact-form-section .form-field {
  position: relative;
}

.contact-page .contact-form-section .form-field label {
  display: block;
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 10px;
}

.contact-page .contact-form-section .form-field input,
.contact-page .contact-form-section .form-field textarea,
.contact-page .contact-form-section .form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  padding: 10px 0 12px;
  font-family: "Libre Caslon Text", serif;
  font-size: 16px;
  color: #000000;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-page .contact-form-section .form-field input::placeholder,
.contact-page .contact-form-section .form-field textarea::placeholder,
.contact-page .contact-form-section .form-field select::placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-family: "Libre Caslon Text", serif;
}

.contact-page .contact-form-section .form-field input:focus,
.contact-page .contact-form-section .form-field textarea:focus,
.contact-page .contact-form-section .form-field select:focus {
  border-color: #000000;
}

.contact-page .contact-form-section .form-field textarea {
  resize: none;
  height: 130px;
}

.contact-page .contact-form-section .form-field select {
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.38)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  color: #000000;
  transition: border-color 0.25s ease;
}

.contact-page .contact-form-section .form-field select option {
  font-family: "Libre Caslon Text", serif;
  background: #ffffff;
  color: #000000;
}

.contact-page .contact-form-section .form-field select:invalid,
.contact-page .contact-form-section .form-field select option[value=""][disabled] {
  color: rgba(0, 0, 0, 0.25);
}

.contact-page .contact-form-section .form-field .phone-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  transition: border-color 0.25s ease;
}

.contact-page .contact-form-section .form-field .phone-row:focus-within {
  border-color: #000000;
}

.contact-page .contact-form-section .form-field .phone-row .phone-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  margin-right: 12px;
}

.contact-page .contact-form-section .form-field .phone-row input {
  border: none;
  flex: 1;
  padding: 10px 0 12px;
}

.contact-page .contact-form-section .form-field .phone-row input:focus {
  border: none;
}

.contact-page .contact-form-section .form-field .flag-select {
  position: relative;
  flex-shrink: 0;
}

.contact-page .contact-form-section .form-field .flag-select-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 10px 8px 12px 0;
  cursor: pointer;
  outline: none;
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
}

.contact-page .contact-form-section .form-field .flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 1px;
  display: block;
}

.contact-page .contact-form-section .form-field .flag-code {
  min-width: 30px;
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  color: #000000;
}

.contact-page .contact-form-section .form-field .flag-chevron {
  font-size: 16px !important;
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.contact-page .contact-form-section .form-field .flag-select-btn[aria-expanded=true] .flag-chevron {
  transform: rotate(180deg);
}

.contact-page .contact-form-section .form-field .flag-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 200;
  max-height: 260px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
}

.contact-page .contact-form-section .form-field .flag-dropdown.open {
  display: flex;
}

.contact-page .contact-form-section .form-field .flag-dropdown {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.contact-page .contact-form-section .form-field .flag-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #000000;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.contact-page .contact-form-section .form-field .flag-option:hover {
  background: rgba(0, 0, 0, 0.04);
}

.contact-page .contact-form-section .form-field .flag-option img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 1px;
  flex-shrink: 0;
}

.contact-page .contact-form-section .form-field .flag-option span {
  min-width: 36px;
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.contact-page .contact-form-section .form-submit-row {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-page .contact-form-section .form-submit-row .form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 42px;
  background: #000000;
  color: #ffffff;
  border: 1.5px solid #000000;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-page .contact-form-section .form-submit-row .form-submit-btn:hover {
  background: transparent;
  color: #000000;
}

.contact-page .contact-form-section .form-submit-row .form-submit-btn .material-icons {
  font-size: 16px;
}

.contact-page .contact-form-section .form-submit-row .form-submit-note {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #888888;
  max-width: 260px;
  line-height: 1.7;
}

.contact-page .contact-form-section .form-submit-row .form-submit-note a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
}

.contact-page .contact-info-section {
  background: #0c0c0c;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.contact-page .contact-info-section::before {
  content: "13°N 77°E";
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: "Libre Caslon Text", serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
}

.contact-page .contact-info-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.contact-page .contact-info-section .contact-info-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-page .contact-info-section .location-ping-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-page .contact-info-section .location-ping {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.contact-page .contact-info-section .location-ping::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #4ade80;
  opacity: 0;
  animation: pingPulse 2s ease-in-out infinite;
}

@keyframes pingPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

.contact-page .contact-info-section .location-ping-text {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.contact-page .contact-info-section .contact-info-heading {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 52px;
  line-height: 1.05;
}

.contact-page .contact-info-section .contact-info-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.contact-page .contact-info-section .location-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-page .contact-info-section .location-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 0.2s ease, padding 0.3s ease;
  cursor: pointer;
}

.contact-page .contact-info-section .location-card:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-page .contact-info-section .location-card:hover {
  padding-left: 12px;
}

.contact-page .contact-info-section .location-card:hover .location-card-icon {
  background: rgba(255, 255, 255, 0.12);
}

.contact-page .contact-info-section .location-card:hover .location-card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.contact-page .contact-info-section .location-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.contact-page .contact-info-section .location-card-icon .material-icons {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
}

.contact-page .contact-info-section .location-card-content {
  flex: 1;
}

.contact-page .contact-info-section .location-card-label {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.contact-page .contact-info-section .location-card-value {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin: 0;
}

.contact-page .contact-info-section .location-card-arrow {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.contact-page .contact-info-section .location-status {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.contact-page .contact-info-section .contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.contact-page .contact-info-section .contact-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.contact-page .contact-info-section .contact-socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-page .contact-info-section .contact-map-frame {
  position: relative;
  overflow: hidden;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page .contact-info-section .contact-map-frame .map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  color: #000000;
  padding: 8px 16px;
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.contact-page .contact-info-section .contact-map-frame .map-badge .material-icons {
  font-size: 14px;
  color: #e33;
}

.contact-page .contact-info-section .contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.contact-page .contact-trust-section {
  background: #f4f4f4;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.contact-page .contact-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.contact-page .contact-trust-section .trust-eyebrow {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-bottom: 16px;
}

.contact-page .contact-trust-section .trust-section-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #000000;
  text-align: center;
  margin-bottom: 72px;
  line-height: 1.05;
}

.contact-page .contact-trust-section .trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.contact-page .contact-trust-section .trust-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 48px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.contact-page .contact-trust-section .trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-trust-section .trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: #000000;
}

.contact-page .contact-trust-section .trust-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.contact-page .contact-trust-section .trust-platform img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-page .contact-trust-section .trust-platform span {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.contact-page .contact-trust-section .trust-score-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.contact-page .contact-trust-section .trust-score {
  font-family: "Libre Caslon Text", serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #000000;
  line-height: 1;
}

.contact-page .contact-trust-section .trust-max {
  font-family: "Inconsolata", monospace;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.contact-page .contact-trust-section .trust-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
}

.contact-page .contact-trust-section .trust-stars .star {
  font-size: 18px;
  color: #000000;
}

.contact-page .contact-trust-section .trust-stars .star.empty {
  color: rgba(0, 0, 0, 0.12);
}

.contact-page .contact-trust-section .trust-stars .star.half {
  position: relative;
  color: rgba(0, 0, 0, 0.12);
}

.contact-page .contact-trust-section .trust-stars .star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #000000;
}

.contact-page .contact-trust-section .trust-label {
  font-family: "Libre Caslon Text", serif;
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
}

.contact-page .contact-trust-section .trust-count {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.3);
}

.contact-page .contact-testimonials-section {
  background: #ffffff;
  padding: 100px 60px;
}

.contact-page .contact-testimonials-section .test-header {
  margin-bottom: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-page .contact-testimonials-section .test-title {
  font-family: "Libre Caslon Text", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #000000;
  line-height: 1.05;
}

.contact-page .contact-testimonials-section .test-sub {
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  letter-spacing: 0.07em;
  color: #888888;
  max-width: 240px;
  line-height: 1.7;
  text-align: right;
}

.contact-page .contact-testimonials-section .test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-page .contact-testimonials-section .test-card {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.contact-page .contact-testimonials-section .test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.07);
}

.contact-page .contact-testimonials-section .test-card .test-quote-mark {
  font-family: "Libre Caslon Text", serif;
  font-size: 72px;
  line-height: 0.5;
  color: #000000;
  opacity: 0.05;
  position: absolute;
  top: 28px;
  left: 32px;
  pointer-events: none;
  user-select: none;
}

.contact-page .contact-testimonials-section .test-card .test-text {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.contact-page .contact-testimonials-section .test-card .test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.contact-page .contact-testimonials-section .test-card .test-author .test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #f4f4f4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .contact-testimonials-section .test-card .test-author .test-avatar img,
.contact-page .contact-testimonials-section .test-card .test-author .test-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-page .contact-testimonials-section .test-card .test-author .test-name {
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}

.contact-page .contact-testimonials-section .test-card .test-author .test-handle {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #888888;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 100px 40px 60px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.mobile-menu-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-close .material-icons {
  font-size: 22px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-nav-link {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  letter-spacing: -0.02em;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link::after {
  content: "→";
  font-size: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav-link:hover {
  color: #fff;
  letter-spacing: -0.01em;
}

.mobile-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 40px;
}

.mobile-menu-footer p {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
  line-height: 2;
}

@media (min-width: 1440px) {

  .products-hero,
  .services-hero,
  .contact-hero-section {
    min-height: 65vh;
  }

  .product-full-section {
    padding: 140px 80px;
  }

  .product-full-inner {
    max-width: 1300px !important;
    gap: 100px !important;
  }

  .why-inner {
    max-width: 1400px !important;
  }

  .services-grid-section {
    padding: 120px 80px;
  }

  .services-process-section {
    padding: 140px 80px;
  }

  .contact-form-section {
    padding: 120px 80px;
  }

  .contact-info-inner {
    padding: 120px 80px !important;
  }

  .contact-trust-section {
    padding: 120px 80px;
  }

  .contact-testimonials-section {
    padding: 120px 80px;
  }

  #products-preview {
    padding: 140px 80px;
  }

  #mission-section {
    padding: 200px 80px;
  }

  #innovation-section {
    padding: 140px 80px;
  }

  #contact-section {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }

  .site-footer .footer-inner {
    padding: 80px 80px 56px;
  }
}

@media (max-width: 1280px) {
  #liquid-nav {
    padding: 16px 32px !important;
  }

  #liquid-nav .desktop-nav {
    gap: 20px;
  }

  .products-hero {
    padding: 140px 48px 72px;
  }

  .product-full-section {
    padding: 100px 48px;
  }

  .product-full-inner {
    gap: 60px !important;
  }

  .product-full-visual {
    height: 460px !important;
  }

  .tech-stack-section {
    padding: 80px 48px;
  }

  .product-page-cta {
    padding: 120px 48px;
  }

  .services-hero {
    padding: 140px 48px 72px;
  }

  .services-grid-section {
    padding: 80px 48px;
  }

  .services-process-section {
    padding: 100px 48px;
  }

  .why-section {
    padding: 80px 48px;
  }

  .why-inner {
    gap: 60px !important;
  }

  .services-stats-strip {
    padding: 60px 48px;
  }

  .services-cta-section {
    padding: 120px 48px;
  }

  .contact-hero-section {
    padding: 140px 48px 72px;
  }

  .contact-form-section {
    padding: 80px 48px;
  }

  .contact-info-inner {
    padding: 80px 48px !important;
  }

  .contact-trust-section {
    padding: 80px 48px;
  }

  .contact-testimonials-section {
    padding: 80px 48px;
  }

  #products-preview {
    padding: 100px 48px;
  }

  #mission-section {
    padding: 140px 48px;
  }

  #innovation-section {
    padding: 100px 48px;
  }

  #contact-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .site-footer .footer-inner {
    padding: 60px 48px 40px;
  }
}

@media (max-width: 1024px) {
  .hero-scroll-hint {
    display: none;
  }

  #liquid-nav {
    padding: 14px 24px !important;
  }

  #liquid-nav .desktop-nav {
    gap: 20px;
    font-size: 13px;
  }

  .loader-char {
    font-size: 44px;
  }

  #scroll-progress {
    height: 2px;
  }

  #floating-cta {
    bottom: 84px;
    right: 24px;
  }

  #back-to-top {
    bottom: 24px;
    right: 24px;
  }

  .hero-overlay-content {
    max-width: 520px;
    right: 3%;
  }

  .hero-overlay-content .hero-title {
    font-size: 44px;
  }

  .hero-overlay-content .hero-title-text {
    font-size: 30px;
  }

  .hero-overlay-content .hero-subtitle {
    font-size: 13px;
  }

  #stats-strip {
    padding: 48px 0;
  }

  #stats-strip .stat-number {
    font-size: 44px;
  }

  #stats-strip .stat-item {
    padding: 0 24px;
  }

  #products-preview {
    padding: 80px 40px;
  }

  #products-preview .products-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 200px;
  }

  #products-preview .product-bento-card--thanu {
    grid-column: 1;
    grid-row: 1;
  }

  #products-preview .product-bento-card--phms {
    grid-column: 2;
    grid-row: 1;
  }

  #products-preview .product-bento-card--vfd {
    grid-column: 1/3;
    grid-row: 2;
  }

  #products-preview .preview-title {
    font-size: 40px;
  }

  #mission-section {
    padding: 120px 40px;
  }

  #mission-section .mission-line {
    font-size: clamp(52px, 7vw, 96px);
  }

  #mission-section .mission-detail {
    font-size: 16px;
  }

  #innovation-section {
    padding: 80px 40px;
  }

  #innovation-section .innovation-headline {
    font-size: 40px;
  }

  #innovation-section .innovation-subheadline {
    font-size: 16px;
    margin-bottom: 60px;
  }

  #innovation-section .process-flow-container {
    gap: 0;
    overflow-x: auto;
  }

  #innovation-section .process-step {
    min-width: 90px;
  }

  #innovation-section .step-label {
    font-size: 11px;
    width: 90px;
  }

  #voices-section {
    padding: 80px 0;
  }

  #voices-section .voices-headline {
    font-size: 44px;
  }

  #voices-section .voices-carousel {
    padding: 20px 40px 36px;
    gap: 20px;
  }

  #voices-section .voice-card {
    width: 300px;
  }

  #contact-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  #contact-section .contact-headline {
    font-size: 52px;
  }

  #contact-section .rectangle-14-form form {
    grid-template-columns: 1fr 1fr;
  }

  .products-hero {
    padding: 120px 40px 72px;
  }

  .products-hero .hero-page-title {
    font-size: clamp(44px, 6vw, 72px);
  }

  .products-hero .hero-page-sub {
    font-size: 13px;
  }

  .product-full-section {
    padding: 80px 40px;
  }

  .product-full-inner {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    max-width: 700px !important;
    margin: 0 auto !important;
  }

  .product-full-section--reverse .product-full-inner .product-full-text {
    order: 1 !important;
  }

  .product-full-section--reverse .product-full-inner .product-full-visual {
    order: 2 !important;
  }

  .product-full-visual {
    height: 380px !important;
  }

  .product-full-name {
    font-size: clamp(48px, 7vw, 72px) !important;
  }

  .product-full-tagline {
    font-size: 18px;
  }

  .product-full-desc {
    max-width: 100% !important;
  }

  .tech-stack-section {
    padding: 80px 40px;
  }

  .tech-stack-section .tech-section-title {
    font-size: 34px;
  }

  .product-page-cta {
    padding: 100px 40px;
  }

  .cta-headline {
    font-size: clamp(36px, 5vw, 60px) !important;
  }

  .cta-sub {
    font-size: 16px;
  }

  .services-hero {
    padding: 120px 40px 72px;
    min-height: auto;
  }

  .services-hero .services-hero-title {
    font-size: clamp(40px, 6vw, 72px);
  }

  .services-hero .services-hero-sub {
    font-size: 13px;
    max-width: 100%;
  }

  .services-hero__grid {
    width: 40%;
  }

  .services-grid-section {
    padding: 80px 40px;
  }

  .services-grid-section .services-section-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .services-grid-section .services-section-title {
    font-size: 40px;
  }

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

  .services-grid-section .service-card-item {
    padding: 40px 32px 36px;
  }

  .services-grid-section .service-card-title {
    font-size: 20px;
  }

  .services-process-section {
    padding: 80px 40px;
  }

  .services-process-section .process-header {
    margin-bottom: 56px;
  }

  .services-process-section .process-header h2 {
    font-size: clamp(32px, 4vw, 44px);
  }

  .services-process-section .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-process-section .process-timeline-item {
    padding: 36px 28px 32px;
  }

  .services-process-section .process-timeline-item:nth-child(2n) {
    border-right: none;
  }

  .services-process-section .process-timeline-item:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .why-section {
    padding: 80px 40px;
  }

  .why-section .why-inner {
    grid-template-columns: 1fr !important;
    max-width: 700px;
    gap: 48px !important;
  }

  .why-section .why-left {
    position: static !important;
  }

  .why-section .why-title {
    font-size: 36px;
  }

  .services-stats-strip {
    padding: 60px 40px;
  }

  .services-stats-strip .stats-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .services-stats-strip .stat-box {
    padding: 24px 32px;
    border-left: none !important;
  }

  .services-stats-strip .stat-box:nth-child(2) {
    border-left: 1px solid #1e1e1e !important;
  }

  .services-stats-strip .stat-box:nth-child(3) {
    border-top: 1px solid #1e1e1e;
  }

  .services-stats-strip .stat-box:nth-child(4) {
    border-top: 1px solid #1e1e1e;
    border-left: 1px solid #1e1e1e !important;
  }

  .services-stats-strip .stat-box .stat-val {
    font-size: 40px;
  }

  .services-cta-section {
    padding: 100px 40px;
  }

  .services-cta-headline {
    font-size: clamp(36px, 5vw, 64px) !important;
  }

  .contact-page .contact-hero-section {
    padding: 120px 40px 72px;
  }

  .contact-page .contact-hero-section .contact-hero-title {
    font-size: clamp(48px, 7vw, 80px);
  }

  .contact-page .contact-hero-section .contact-hero-sub {
    font-size: 16px;
  }

  .contact-page .contact-form-section {
    padding: 80px 40px;
  }

  .contact-page .contact-form-section .contact-form-heading {
    font-size: 28px;
  }

  .contact-page .contact-info-section .contact-info-inner {
    grid-template-columns: 1fr !important;
    gap: 52px !important;
    padding: 80px 40px !important;
  }

  .contact-page .contact-info-section .contact-info-heading {
    font-size: clamp(32px, 4vw, 48px);
  }

  .contact-page .contact-info-section .contact-map-frame {
    height: 420px;
  }

  .contact-page .contact-info-section::before {
    font-size: 90px;
  }

  .contact-page .contact-trust-section {
    padding: 80px 40px;
  }

  .contact-page .contact-trust-section .trust-section-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 52px;
  }

  .contact-page .contact-trust-section .trust-inner {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
  }

  .contact-page .contact-trust-section .trust-score {
    font-size: 60px;
  }

  .contact-page .contact-trust-section .trust-item {
    padding: 36px 24px 32px;
  }

  .contact-page .contact-testimonials-section {
    padding: 80px 40px;
  }

  .contact-page .contact-testimonials-section .test-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }

  .contact-page .contact-testimonials-section .test-title {
    font-size: 40px;
  }

  .contact-page .contact-testimonials-section .test-sub {
    text-align: left;
    max-width: 100%;
  }

  .contact-page .contact-testimonials-section .test-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .site-footer .footer-inner {
    padding: 60px 40px 40px;
  }

  .site-footer .footer-cols {
    gap: 40px;
  }

  .site-footer .footer-globe {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 767px) {
  #liquid-nav {
    padding: 14px 20px !important;
    border-radius: 0 !important;
  }

  #liquid-nav .desktop-nav {
    display: none !important;
  }

  .hamburger-btn {
    display: flex !important;
  }

  .loader-char {
    font-size: 36px;
  }

  .loader-tagline {
    font-size: 9px;
    letter-spacing: 0.3em;
  }

  .section-label {
    font-size: 10px;
  }

  #floating-cta {
    bottom: 80px;
    right: 16px;
  }

  #floating-cta .floating-cta-link {
    padding: 9px 14px 9px 12px;
    font-size: 10px;
  }

  #floating-cta .floating-cta-link .material-icons {
    font-size: 13px;
  }

  #back-to-top {
    bottom: 20px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  #back-to-top .material-icons {
    font-size: 16px;
  }

  .hero-overlay-content {
    right: 0;
    left: 0;
    top: auto;
    bottom: 110px;
    transform: none !important;
    padding: 0 20px;
    max-width: 100%;
  }

  .hero-overlay-content .hero-title {
    font-size: 30px;
  }

  .hero-overlay-content .hero-title-text {
    font-size: 19px;
  }

  .hero-overlay-content .hero-subtitle {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-overlay-content .hero-btn {
    width: 150px;
    height: 40px;
    font-size: 10px;
  }

  .hero-slide.active .hero-overlay-content {
    transform: none !important;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-controls {
    bottom: 20px;
    gap: 14px;
  }

  .hero-ctrl-btn {
    width: 40px;
    height: 40px;
  }

  .hero-indicators .indicator {
    width: 32px;
  }

  .hero-indicators .indicator.active {
    width: 44px;
  }

  #dual-marquee {
    display: none;
  }

  #stats-strip {
    padding: 36px 0;
  }

  #stats-strip .d-flex {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 0;
  }

  #stats-strip .stat-item {
    width: 50%;
    padding: 20px 16px;
    border-left: none !important;
    border-bottom: 1px solid #1e1e1e;
  }

  #stats-strip .stat-number {
    font-size: 36px;
  }

  #stats-strip .stat-label {
    font-size: 10px;
  }

  #products-preview {
    padding: 56px 16px;
  }

  #products-preview .preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  #products-preview .preview-title {
    font-size: 30px;
  }

  #products-preview .products-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 200px;
  }

  #products-preview .product-bento-card--thanu {
    grid-column: 1;
    grid-row: 1;
  }

  #products-preview .product-bento-card--phms {
    grid-column: 1;
    grid-row: 2;
  }

  #products-preview .product-bento-card--vfd {
    grid-column: 1;
    grid-row: 3;
  }

  #products-preview .pbc-inner {
    padding: 28px 24px;
  }

  #products-preview .pbc-num {
    top: 24px;
    left: 24px;
  }

  #products-preview .pbc-bg-text {
    font-size: 80px;
  }

  #mission-section {
    padding: 80px 20px;
  }

  #mission-section .mission-line {
    font-size: clamp(40px, 11vw, 64px);
  }

  #mission-section .mission-detail {
    font-size: 14px;
    max-width: 100%;
  }

  #mission-section .mission-cta {
    padding: 13px 28px;
    font-size: 11px;
  }

  #whats-new {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  #whats-new .section-title {
    font-size: 32px;
  }

  #whats-new .news-carousel .news-card-wrapper {
    flex: 0 0 270px;
    max-width: 270px;
  }

  #innovation-section {
    padding: 60px 20px;
  }

  #innovation-section .innovation-headline {
    font-size: 28px;
  }

  #innovation-section .innovation-subheadline {
    font-size: 14px;
    margin-bottom: 48px;
  }

  #innovation-section .process-flow-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 12px;
    overflow-x: visible;
  }

  #innovation-section .process-flow-container .process-arrow {
    display: none;
  }

  #innovation-section .process-step {
    min-width: 72px;
    flex: 0 0 calc(25% - 9px);
  }

  #innovation-section .step-label {
    font-size: 9px;
    width: 72px;
  }

  #innovation-section .icon-wrapper {
    width: 44px !important;
    height: 44px !important;
  }

  #innovation-section .icon-wrapper .material-icons {
    font-size: 18px !important;
  }

  #voices-section {
    padding: 60px 0;
  }

  #voices-section .voices-headline {
    font-size: 32px;
  }

  #voices-section .voices-carousel {
    padding: 16px 16px 28px;
    gap: 14px;
  }

  #voices-section .voice-card {
    width: 270px;
    padding: 28px 22px;
  }

  #hiring-bar {
    height: 44px;
  }

  #contact-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  #contact-section .row {
    flex-direction: column;
  }

  #contact-section .col-lg-6:first-child {
    padding-right: 0 !important;
    margin-bottom: 40px;
  }

  #contact-section .contact-headline {
    font-size: 40px;
  }

  #contact-section .contact-brand-text {
    font-size: 28px;
  }

  #contact-section .rectangle-14-form {
    padding: 28px 20px;
    border-radius: 4px;
  }

  #contact-section .rectangle-14-form form {
    grid-template-columns: 1fr;
  }

  #partners-section {
    padding: 40px 0;
  }

  #partners-section .partners-header {
    font-size: 9px;
  }

  .products-hero {
    padding: 110px 20px 64px;
    min-height: auto;
  }

  .products-hero__bg-text {
    font-size: 80px;
  }

  .products-hero .hero-page-title {
    font-size: 36px;
  }

  .products-hero .hero-page-sub {
    font-size: 13px;
  }

  .product-full-section {
    padding: 60px 20px;
  }

  .product-full-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    max-width: 100% !important;
  }

  .product-full-visual {
    height: 280px !important;
  }

  .product-full-number {
    font-size: 10px;
  }

  .product-full-name {
    font-size: clamp(44px, 10vw, 60px) !important;
  }

  .product-full-tagline {
    font-size: 16px;
  }

  .product-full-desc {
    font-size: 15px;
    max-width: 100% !important;
  }

  .product-features-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  .feature-chip {
    padding: 10px 12px;
    font-size: 11px;
    gap: 8px;
  }

  .feature-chip .material-icons {
    font-size: 14px;
  }

  .product-full-cta {
    padding: 13px 28px;
    font-size: 11px;
  }

  .product-border-top {
    left: 20px !important;
    right: 20px !important;
  }

  .tech-stack-section {
    padding: 60px 20px;
  }

  .tech-stack-section .tech-section-title {
    font-size: 28px;
  }

  .tech-stack-section .tech-section-sub {
    font-size: 12px;
    margin-bottom: 40px;
  }

  .tech-stack-section .tech-pills-row {
    gap: 8px;
  }

  .tech-stack-section .tech-pill {
    padding: 8px 16px;
    font-size: 12px;
  }

  .tech-stack-section .tech-pill .material-icons {
    font-size: 14px;
  }

  .product-page-cta {
    padding: 80px 20px;
  }

  .product-page-cta .cta-headline {
    font-size: clamp(32px, 8vw, 48px) !important;
  }

  .product-page-cta .cta-sub {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .product-page-cta .cta-btn-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .product-page-cta .cta-btn-primary,
  .product-page-cta .cta-btn-secondary {
    padding: 14px 36px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  .services-hero {
    padding: 110px 20px 64px;
    min-height: auto;
  }

  .services-hero .services-hero-title {
    font-size: clamp(36px, 9vw, 56px);
  }

  .services-hero .services-hero-sub {
    font-size: 13px;
    max-width: 100%;
  }

  .services-hero__grid {
    width: 0;
    display: none;
  }

  .services-grid-section {
    padding: 60px 20px 72px;
  }

  .services-grid-section .services-section-header {
    margin-bottom: 36px;
  }

  .services-grid-section .services-section-title {
    font-size: 32px;
  }

  .services-grid-section .services-section-sub {
    font-size: 12px;
  }

  .services-grid-section .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .services-grid-section .service-card-item {
    padding: 32px 24px;
  }

  .services-grid-section .service-card-item .service-card-num {
    margin-bottom: 20px;
  }

  .services-grid-section .service-card-item .service-card-title {
    font-size: 20px;
  }

  .services-process-section {
    padding: 60px 20px;
  }

  .services-process-section .process-header {
    margin-bottom: 40px;
  }

  .services-process-section .process-header h2 {
    font-size: 28px;
  }

  .services-process-section .process-timeline {
    grid-template-columns: 1fr;
  }

  .services-process-section .process-timeline-item {
    padding: 28px 20px 24px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .services-process-section .process-timeline-item:last-child {
    border-bottom: none;
  }

  .services-process-section .process-timeline-item .timeline-title {
    font-size: 16px;
  }

  .services-process-section .process-timeline-item .timeline-desc {
    font-size: 13px;
  }

  .why-section {
    padding: 60px 20px;
  }

  .why-section .why-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    max-width: 100% !important;
  }

  .why-section .why-title {
    font-size: 32px;
  }

  .why-section .why-sub {
    font-size: 12px;
  }

  .why-section .why-item {
    padding: 32px 0;
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .why-section .why-item .why-item-title {
    font-size: 20px;
  }

  .why-section .why-item .why-item-desc {
    font-size: 14px;
  }

  .services-stats-strip {
    padding: 40px 0;
  }

  .services-stats-strip .stats-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0;
  }

  .services-stats-strip .stat-box {
    padding: 20px 16px;
    border-left: none !important;
    border-bottom: 1px solid #1e1e1e;
  }

  .services-stats-strip .stat-box:nth-child(2n) {
    border-left: 1px solid #1e1e1e !important;
  }

  .services-stats-strip .stat-box:nth-child(3),
  .services-stats-strip .stat-box:nth-child(4) {
    border-bottom: none;
  }

  .services-stats-strip .stat-box .stat-val {
    font-size: 32px;
  }

  .services-cta-section {
    padding: 80px 20px;
  }

  .services-cta-section .services-cta-headline {
    font-size: clamp(32px, 8vw, 48px) !important;
  }

  .services-cta-section .services-cta-sub {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .services-cta-section .services-cta-btn {
    padding: 15px 40px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .service-modal-overlay {
    align-items: flex-end !important;
    padding: 0;
  }

  .service-modal {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 88vh;
    border-radius: 16px 16px 0 0 !important;
    padding: 32px 20px 40px !important;
  }

  .smd-title {
    font-size: 26px !important;
  }

  .smd-desc {
    font-size: 14px;
  }

  .smd-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .smd-cta {
    width: 100%;
    justify-content: center;
  }

  .contact-page .contact-hero-section {
    padding: 110px 20px 60px;
  }

  .contact-page .contact-hero-section .contact-hero-title {
    font-size: clamp(44px, 11vw, 64px);
  }

  .contact-page .contact-hero-section .contact-hero-sub {
    font-size: 15px;
  }

  .contact-page .contact-form-section {
    padding: 52px 20px 64px;
  }

  .contact-page .contact-form-section .contact-form-inner {
    max-width: 100%;
  }

  .contact-page .contact-form-section .contact-form-heading {
    font-size: 26px;
    margin-bottom: 36px;
  }

  .contact-page .contact-form-section .form-row {
    grid-template-columns: 1fr !important;
    gap: 0;
    margin-bottom: 0;
  }

  .contact-page .contact-form-section .form-field {
    margin-bottom: 28px;
  }

  .contact-page .contact-form-section .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 36px;
  }

  .contact-page .contact-form-section .form-submit-row .form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }

  .contact-page .contact-form-section .form-submit-row .form-submit-note {
    max-width: 100%;
  }

  .contact-page .contact-info-section .contact-info-inner {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
    padding: 60px 20px !important;
  }

  .contact-page .contact-info-section .contact-info-heading {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 36px;
  }

  .contact-page .contact-info-section .contact-map-frame {
    height: 280px;
  }

  .contact-page .contact-info-section::before {
    font-size: 60px;
    bottom: -10px;
  }

  .contact-page .contact-trust-section {
    padding: 60px 20px;
  }

  .contact-page .contact-trust-section .trust-section-title {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 44px;
  }

  .contact-page .contact-trust-section .trust-inner {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-page .contact-trust-section .trust-item {
    padding: 32px 24px 28px;
  }

  .contact-page .contact-trust-section .trust-score {
    font-size: 56px;
  }

  .contact-page .contact-testimonials-section {
    padding: 60px 20px;
  }

  .contact-page .contact-testimonials-section .test-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  .contact-page .contact-testimonials-section .test-title {
    font-size: 32px;
  }

  .contact-page .contact-testimonials-section .test-sub {
    text-align: left;
    max-width: 100%;
  }

  .contact-page .contact-testimonials-section .test-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-page .contact-testimonials-section .test-card {
    padding: 32px 24px;
  }

  .site-footer .footer-inner {
    padding: 48px 20px 40px;
  }

  .site-footer .footer-tagline {
    margin-bottom: 40px;
  }

  .site-footer .footer-cols {
    flex-direction: column;
    gap: 36px;
  }

  .site-footer .footer-links-group {
    flex-wrap: wrap;
    gap: 36px 48px;
  }

  .site-footer .footer-contact-col {
    text-align: left;
    max-width: 100%;
  }

  .site-footer .footer-contact-col .footer-contact-items {
    align-items: flex-start;
  }

  .site-footer .footer-contact-col .footer-contact-row {
    flex-direction: row;
    gap: 12px;
  }

  .site-footer .footer-contact-col .footer-contact-row p {
    text-align: left;
  }

  .site-footer .footer-globe {
    display: none;
  }

  .site-footer .footer-divider {
    margin: 40px 0 24px;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer .footer-brand {
    font-size: 30px;
  }

  .site-footer .footer-copy {
    text-align: left;
  }

  .news-modal-overlay {
    padding: 12px;
  }

  .news-modal {
    padding: 40px 24px 36px;
    max-height: 90vh;
  }

  .news-modal .news-modal-title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .news-modal .news-modal-desc {
    font-size: 14px;
  }

  .news-modal .news-modal-full {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #liquid-nav {
    padding: 12px 16px !important;
  }

  .mobile-menu-inner {
    padding: 88px 24px 48px;
  }

  .mobile-nav-link {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-overlay-content {
    padding: 0 16px;
    bottom: 100px;
  }

  .hero-overlay-content .hero-title {
    font-size: 26px;
  }

  .hero-overlay-content .hero-title-text {
    font-size: 16px;
  }

  .hero-overlay-content .hero-subtitle {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .hero-overlay-content .hero-btn {
    width: 140px;
    height: 38px;
    font-size: 10px;
  }

  #floating-cta {
    right: 12px;
    bottom: 72px;
  }

  #floating-cta .floating-cta-link {
    padding: 8px 12px;
    gap: 6px;
    font-size: 9px;
  }

  #floating-cta .floating-cta-link .material-icons {
    font-size: 12px;
  }

  #back-to-top {
    right: 12px;
    bottom: 16px;
  }

  #stats-strip .stat-item {
    padding: 16px 12px;
  }

  #stats-strip .stat-number {
    font-size: 30px;
  }

  #stats-strip .stat-label {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  #products-preview {
    padding: 48px 14px;
  }

  #products-preview .preview-title {
    font-size: 26px;
  }

  #products-preview .pbc-inner {
    padding: 22px 18px;
  }

  #products-preview .products-bento {
    grid-template-rows: 250px 180px 180px;
  }

  #mission-section {
    padding: 72px 16px;
  }

  #mission-section .mission-line {
    font-size: clamp(36px, 12vw, 56px);
  }

  #mission-section .mission-cta {
    padding: 12px 24px;
  }

  .products-hero {
    padding: 100px 16px 56px;
  }

  .products-hero .hero-page-title {
    font-size: 32px;
  }

  .product-full-section {
    padding: 52px 16px;
  }

  .product-full-name {
    font-size: 44px !important;
  }

  .product-full-visual {
    height: 240px !important;
  }

  .product-features-grid {
    grid-template-columns: 1fr !important;
  }

  .services-hero {
    padding: 100px 16px 56px;
  }

  .services-hero .services-hero-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .services-grid-section {
    padding: 52px 16px 60px;
  }

  .service-card-item {
    padding: 28px 18px;
  }

  .service-card-title {
    font-size: 18px;
  }

  .services-process-section {
    padding: 52px 16px;
  }

  .process-timeline-item {
    padding: 24px 16px 20px;
  }

  .timeline-title {
    font-size: 15px;
  }

  .why-section {
    padding: 52px 16px;
  }

  .why-title {
    font-size: 28px;
  }

  .why-item {
    padding: 24px 0;
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .why-item .why-item-title {
    font-size: 18px;
  }

  .services-stats-strip .stat-box .stat-val {
    font-size: 28px;
  }

  .services-cta-section {
    padding: 72px 16px;
  }

  .services-cta-headline {
    font-size: clamp(28px, 9vw, 40px) !important;
  }

  .contact-page .contact-hero-section {
    padding: 100px 16px 56px;
  }

  .contact-page .contact-hero-section .contact-hero-title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .contact-page .contact-hero-section .contact-hero-sub {
    font-size: 14px;
  }

  .contact-page .contact-form-section {
    padding: 44px 16px 56px;
  }

  .contact-form-heading {
    font-size: 22px !important;
  }

  .contact-page .contact-form-section .form-submit-row .form-submit-btn {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .contact-page .contact-info-section .contact-info-inner {
    padding: 52px 16px !important;
  }

  .contact-page .contact-trust-section {
    padding: 52px 16px;
  }

  .contact-page .contact-trust-section .trust-score {
    font-size: 48px;
  }

  .contact-page .contact-trust-section .trust-item {
    padding: 28px 20px 24px;
  }

  .contact-page .contact-testimonials-section {
    padding: 52px 16px;
  }

  .contact-page .contact-testimonials-section .test-title {
    font-size: 28px;
  }

  .contact-page .contact-testimonials-section .test-card {
    padding: 24px 18px;
  }

  .contact-page .contact-testimonials-section .test-text {
    font-size: 14px;
  }

  .site-footer .footer-inner {
    padding: 40px 16px 32px;
  }

  .site-footer .footer-brand {
    font-size: 26px;
  }

  .site-footer .footer-links-group {
    gap: 28px 36px;
  }
}

@media (hover: none) {
  .tilt-card {
    transform: none !important;
  }

  .btn-magnetic {
    transform: none !important;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-menu-inner {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  #floating-cta {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }

  #back-to-top {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

[data-anim=fade-up] {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-anim=fade-up].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim=fade-down] {
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim=fade-down].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim=fade-left] {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim=fade-left].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-anim=fade-right] {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim=fade-right].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-anim=scale-in] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim=scale-in].is-visible {
  opacity: 1;
  transform: scale(1);
}

[data-anim=scale-up] {
  opacity: 0;
  transform: scale(0.95) translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim=scale-up].is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

[data-anim=clip-up] {
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim=clip-up].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim=fade-in] {
  opacity: 0;
  transition: opacity 0.8s ease;
}

[data-anim=fade-in].is-visible {
  opacity: 1;
}

[data-anim=line-grow] {
  width: 0 !important;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim=line-grow].is-visible {
  width: 100% !important;
}

[data-stagger-child] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-stagger-child].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--ci, 0) * 0.03s), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--ci, 0) * 0.03s);
}

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

.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.is-revealed {
  opacity: 1;
  transform: none;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #000;
  z-index: 999998;
  pointer-events: none;
  transition: width 0.05s linear;
}

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: #333;
}

#back-to-top .material-icons {
  font-size: 18px;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.32);
}

select.styled-select,
select.m3-select,
.contact-form-section select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.contact-form-section select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.noise-overlay {
  position: relative;
  isolation: isolate;
}

.noise-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}

.dot-grid-bg {
  position: relative;
}

.dot-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.dot-grid-bg--dark {
  position: relative;
}

.dot-grid-bg--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-orb--white {
  background: rgba(255, 255, 255, 0.12);
}

.glow-orb--sm {
  width: 240px;
  height: 240px;
}

.glow-orb--md {
  width: 400px;
  height: 400px;
}

.glow-orb--lg {
  width: 600px;
  height: 600px;
}

.section-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-line.is-visible {
  width: 100%;
}

.section-line--white {
  background: rgba(255, 255, 255, 0.08);
}

.hover-lift {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.btn-magnetic {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform;
}

.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn .ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  animation: ripple-expand 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 10;
}

@keyframes ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.ripple-btn--dark .ripple-wave {
  background: rgba(0, 0, 0, 0.12);
}

.spotlight-section {
  position: relative;
}

.spotlight-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--sx, -200%) var(--sy, -200%), rgba(255, 255, 255, 0.045), transparent 55%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.05s linear;
}

.spotlight-section>* {
  position: relative;
  z-index: 2;
}

#floating-cta {
  position: fixed;
  bottom: 92px;
  right: 32px;
  z-index: 9997;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#floating-cta .floating-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  font-family: "Inconsolata", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#floating-cta .floating-cta-link .material-icons {
  font-size: 14px;
}

#floating-cta .floating-cta-link:hover {
  background: #1c1c1c;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

[data-scramble] {
  display: inline-block;
}

.services-process-section .process-timeline-item .timeline-num,
.services-process-section .process-timeline-item .timeline-icon-wrap,
.services-process-section .process-timeline-item .timeline-title,
.services-process-section .process-timeline-item .timeline-desc {
  transition: color 0.45s ease, opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease;
}

.services-process-section .process-timeline-item.tl-active .timeline-num {
  color: #fff !important;
  transform: scale(1.08);
}

.services-process-section .process-timeline-item.tl-active .timeline-icon-wrap {
  background: rgba(255, 255, 255, 0.14) !important;
  transform: scale(1.1);
}

.services-process-section .process-timeline-item.tl-active .timeline-title {
  color: #fff !important;
}

.services-process-section .process-timeline-item.tl-active .timeline-desc {
  color: rgba(255, 255, 255, 0.75) !important;
}

.trust-stars .star {
  display: inline-block;
  opacity: 0;
  transform: scale(0.3) rotate(-40deg);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-stars .star.star-lit {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.glow-border-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease !important;
}

.glow-border-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), transparent 60%, rgba(0, 0, 0, 0.08)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glow-border-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06) !important;
}

.glow-border-card:hover::before {
  opacity: 1;
}

.feature-chip {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease !important;
}

.feature-chip:hover {
  transform: translateY(-2px) !important;
}

.product-full-section--dark .feature-chip:hover {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

.product-full-section--reverse .feature-chip:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
}

.location-ping {
  position: relative;
}

.location-ping::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.25;
  animation: ping-ring 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ping-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  70% {
    transform: scale(2.2);
    opacity: 0;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.service-card-item .service-card-icon-wrap {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease !important;
}

.service-card-item:hover .service-card-icon-wrap {
  transform: scale(1.12) rotate(6deg) !important;
}

.test-card .test-quote-mark {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.test-card:hover .test-quote-mark {
  transform: scale(1.15) rotate(-8deg);
  opacity: 0.7;
}

body.dark-page #scroll-progress {
  background: rgba(255, 255, 255, 0.7);
}

@keyframes num-pop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.stat-pop {
  animation: num-pop 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.anim-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-link:hover::after {
  width: 100%;
}

.why-item {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-item:hover {
  transform: translateX(6px);
}

.why-item .why-item-num {
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-item:hover .why-item-num {
  opacity: 1 !important;
  transform: scale(1.05);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.bento-card:hover::after {
  opacity: 1;
}

.libre-caslon-text {
  font-family: "Libre Caslon Text", serif;
}

.libre-caslon-text-regular {
  font-weight: 400;
  font-style: normal;
}

.libre-caslon-text-bold {
  font-weight: 700;
  font-style: normal;
}

.libre-caslon-text-regular-italic {
  font-weight: 400;
  font-style: italic;
}

.inter-text {
  font-family: "Inter", sans-serif;
}

.inter-text-regular {
  font-weight: 400;
  font-style: normal;
}

.inter-text-bold {
  font-weight: 700;
  font-style: normal;
}

.inter-text-black {
  font-weight: 900;
  font-style: normal;
}

.inter-text-italic {
  font-weight: 400;
  font-style: italic;
}

html {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

body.cursor-hover .cursor-dot {
  width: 16px;
  height: 16px;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-loader .loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

#page-loader .loader-wordmark {
  display: flex;
  overflow: hidden;
  line-height: 1;
  padding-bottom: 4px;
}

#page-loader .loader-char {
  font-family: "Libre Caslon Text", serif;
  font-size: 54px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: charReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 0.065s) forwards;
}

#page-loader .loader-tagline {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  opacity: 0;
  animation: loader-fade-in 0.4s ease 0.85s forwards;
  margin-left: 0.5em;
}

#page-loader .loader-bar-wrap {
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  opacity: 0;
  animation: loader-fade-in 0.3s ease 0.68s forwards;
}

#page-loader .loader-bar-wrap .loader-bar {
  height: 100%;
  background: #fff;
  width: 0%;
  animation: loader-progress 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.72s forwards;
}

@keyframes charReveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes loader-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes loader-progress {
  to {
    width: 100%;
  }
}

.site-footer {
  background: #000;
  color: #fff;
  font-family: "Inconsolata", monospace;
}

.site-footer .footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px 60px 48px;
}

.site-footer .footer-tagline {
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 64px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer .footer-cols {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.site-footer .footer-links-group {
  flex: 1;
  display: flex;
  gap: 80px;
}

.site-footer .footer-col h4 {
  margin-bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2.5;
}

.site-footer .footer-col li a,
.site-footer .footer-col li {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer .footer-col li a:hover,
.site-footer .footer-col li:hover {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-col-social li {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.site-footer .footer-col-social li:hover {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-col-social li i {
  font-size: 14px;
}

.site-footer .footer-contact-col {
  flex-shrink: 0;
  text-align: right;
  max-width: 320px;
}

.site-footer .footer-contact-col h4 {
  margin-bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.site-footer .footer-contact-col .footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer .footer-contact-col .footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer .footer-contact-col .footer-contact-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.site-footer .footer-contact-col .footer-contact-row .material-icons {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.site-footer .footer-globe {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.site-footer .footer-globe .globe-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #bfbfbf 60%, #4a4a4a 100%);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.1), inset -16px -24px 50px rgba(0, 0, 0, 0.5), inset 16px 16px 32px rgba(255, 255, 255, 0.1);
}

.site-footer .footer-globe .globe-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.site-footer .footer-divider {
  height: 1px;
  background: #141414;
  margin: 30px 0 30px;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer .footer-bottom .footer-brand {
  font-family: "Moon Dance", cursive;
  font-size: 44px;
  color: #fff;
  opacity: 0.9;
  letter-spacing: -0.01em;
}

.site-footer .footer-bottom .footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.fade-in.in {
  opacity: 1;
}

.stagger-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-child.in {
  opacity: 1;
  transform: none;
}

.count-up {
  display: inline-block;
  transition: opacity 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: #000;
  color: #fff;
}

/* ─── Dev Status Section (Products) ─── */
.dev-status-section {
  background: #fff;
  padding: 100px 6%;
}

.dev-status-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.dev-status-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.dev-status-sub {
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  color: #888;
  margin-bottom: 64px;
  letter-spacing: 0.04em;
}

.dev-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.dev-status-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 32px 28px;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dev-status-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.dev-status-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dev-status-num {
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.15em;
}

.dev-status-badge {
  font-family: "Inconsolata", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.dev-status-badge--active {
  background: rgba(0, 0, 0, 0.05);
  color: #444;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dev-status-product {
  font-family: "Libre Caslon Text", serif;
  font-size: 28px;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.dev-status-desc {
  font-family: "Inconsolata", monospace;
  font-size: 12px;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.dev-status-phases {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.dev-phase {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  color: #bbb;
}

.dev-phase--done {
  background: #000;
  color: #fff;
  border-color: #000;
}

.dev-phase--active {
  border-color: #000;
  color: #000;
  font-weight: 600;
}

.dev-status-bar-wrap {
  height: 3px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.dev-status-bar {
  height: 100%;
  width: var(--prog, 0%);
  background: #000;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dev-status-pct {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .dev-status-grid {
    grid-template-columns: 1fr;
  }

  .dev-status-section {
    padding: 72px 6%;
  }
}

/* ─── Services FAQ ─── */
.services-faq-section {
  background: #f9f9f9;
  padding: 100px 6%;
}

.services-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.services-faq-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.services-faq-sub {
  font-family: "Inconsolata", monospace;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.04em;
}

.services-faq-sub a {
  color: #000;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #444;
}

.faq-icon {
  font-size: 18px;
  flex-shrink: 0;
  color: #888;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  padding-bottom: 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .services-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-faq-section {
    padding: 72px 6%;
  }
}

/* ─── About Team Section ─── */
.about-team {
  background: #000;
  padding: 100px 6%;
}

.about-team-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-team-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.about-team-sub {
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 64px;
  letter-spacing: 0.04em;
  max-width: 480px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.about-team-card {
  background: #000;
  padding: 36px 32px;
  transition: background 0.2s ease;
}

.about-team-card:hover {
  background: #0a0a0a;
}

.about-team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-team-avatar .material-icons {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.35);
}

.about-team-avatar--open {
  background: rgba(255, 255, 255, 0.04);
  border-style: dashed;
}

.about-team-name {
  font-family: "Libre Caslon Text", serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 400;
}

.about-team-role {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.about-team-bio {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inconsolata", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.about-team-cta:hover {
  border-color: #fff;
  color: #fff;
}

.about-team-cta .material-icons {
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-team {
    padding: 72px 6%;
  }
}

/* ─── Blog Newsletter ─── */
.blog-notify {
  background: #000;
  padding: 100px 6%;
  text-align: center;
}

.blog-notify-inner {
  max-width: 560px;
  margin: 0 auto;
}

.blog-notify-label {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.blog-notify-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.blog-notify-title {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.blog-notify-sub {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 40px;
}

.blog-notify-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 16px;
}

.blog-notify-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  padding: 14px 18px;
  font-family: "Inconsolata", monospace;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.blog-notify-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.blog-notify-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.blog-notify-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 14px 20px;
  font-family: "Inconsolata", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.blog-notify-btn:hover {
  background: #e0e0e0;
}

.blog-notify-btn .material-icons {
  font-size: 14px;
}

.blog-notify-note {
  font-family: "Inconsolata", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  margin: 0;
}

@media (max-width: 480px) {
  .blog-notify-form {
    flex-direction: column;
  }

  .blog-notify-input {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
  }

  .blog-notify {
    padding: 72px 6%;
  }
}