/* GROOEMBER Solution Universe — selected redesign */
:root {
  --universe-night: #07080b;
  --universe-panel: #101116;
  --universe-paper: #f4f4ef;
  --universe-muted: #a5a7af;
  --universe-line: rgba(255, 255, 255, 0.13);
  --universe-lime: #b8ff4f;
  --universe-violet: #7b5dff;
  --universe-pink: #ff4fc8;
  --universe-pad: clamp(24px, 4.3vw, 72px);
}

body.universe-page {
  color: var(--universe-paper);
  background: var(--universe-night);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  word-break: keep-all;
}

body.universe-page a,
body.universe-page button,
body.universe-page input,
body.universe-page select,
body.universe-page textarea {
  font-family: inherit;
}

body.universe-page .space {
  padding-top: clamp(84px, 8vw, 128px);
  padding-bottom: clamp(84px, 8vw, 128px);
}

/* Header */
.universe-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  padding: 0 var(--universe-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(to bottom, rgba(7, 8, 11, 0.74), transparent);
  transition: background 0.3s ease, height 0.3s ease;
}

.universe-header.scrolled {
  position: fixed;
  height: 72px;
  background: rgba(7, 8, 11, 0.9);
  backdrop-filter: blur(18px);
}

.universe-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.universe-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.universe-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
}

.universe-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 0.2s ease;
}

.universe-nav a:hover,
.universe-nav a:focus-visible {
  color: var(--universe-lime);
}

.universe-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.universe-consult {
  min-height: 42px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  color: #0c1008;
  background: var(--universe-lime);
  font-size: 13px;
  font-weight: 800;
}

.universe-header .groo-mobile-toggle {
  display: none;
}

/* Cinematic hero */
.universe-hero {
  position: relative;
  min-height: 1120px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--universe-line);
}

.universe-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.universe-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06) brightness(1.02);
}

.universe-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.72) 0%, rgba(7, 8, 11, 0.18) 52%, rgba(7, 8, 11, 0.44) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.7) 0%, transparent 48%, rgba(7, 8, 11, 0.08) 100%);
}

.universe-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(to bottom, transparent 7%, #000 30%, transparent 82%);
}

.universe-hero-content {
  max-width: 980px;
  padding: 174px var(--universe-pad) 0;
}

.universe-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--universe-lime);
  font: 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.universe-overline::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.universe-hero h1 {
  margin: 27px 0 0;
  color: var(--universe-paper);
  font-size: clamp(62px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 870;
}

.universe-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.84);
}

.universe-hero-content > p {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.72;
}

.universe-hero-content > p strong {
  color: var(--universe-paper);
  font-weight: 700;
}

.universe-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.universe-button {
  min-width: 178px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(7, 8, 11, 0.26);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.universe-button.primary {
  color: #0c1008;
  background: var(--universe-lime);
  border-color: var(--universe-lime);
}

.universe-button:hover {
  color: inherit;
  transform: translateY(-3px);
  border-color: var(--universe-lime);
}

.universe-side-note {
  position: absolute;
  right: var(--universe-pad);
  top: 174px;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.44);
  font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.18em;
}

.universe-live-dock {
  position: absolute;
  left: var(--universe-pad);
  right: var(--universe-pad);
  bottom: 38px;
  display: grid;
  grid-template-columns: 230px 1fr 1fr;
  gap: 0;
}

.universe-dock-intro {
  padding: 20px 18px;
  border-top: 1px solid var(--universe-lime);
  background: rgba(9, 10, 14, 0.56);
  backdrop-filter: blur(14px);
}

.universe-dock-intro small,
.universe-flagship-status span:first-child {
  color: var(--universe-lime);
  font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.13em;
}

.universe-dock-intro strong {
  display: block;
  margin-top: 19px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.universe-dock-intro p {
  margin: 12px 0 0;
  color: var(--universe-muted);
  font-size: 11px;
  line-height: 1.55;
}

.universe-flagship {
  position: relative;
  isolation: isolate;
  height: 226px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background:
    linear-gradient(112deg, rgba(25, 26, 34, 0.98) 0%, rgba(15, 16, 22, 0.94) 56%, rgba(15, 16, 22, 0.72) 100%);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.universe-flagship:hover {
  color: #fff;
  transform: translateY(-5px);
  border-color: rgba(184, 255, 79, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 55px rgba(0, 0, 0, 0.38);
}

.universe-flagship::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 210px;
  height: 210px;
  right: -76px;
  top: -104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 93, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.universe-flagship::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 72px;
  height: 2px;
  background: var(--universe-lime);
  transition: width 0.3s ease;
}

.universe-flagship:hover::after {
  width: 100%;
}

.universe-flagship-info {
  position: absolute;
  z-index: 2;
  inset: 18px auto 16px 22px;
  display: flex;
  width: 51%;
  height: calc(100% - 34px);
  flex-direction: column;
  align-items: flex-start;
}

.universe-flagship-status {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.universe-flagship-status span:last-child {
  color: rgba(255, 255, 255, 0.48);
  font: 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.12em;
}

.universe-flagship-status span:first-child::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.universe-product-logo {
  display: inline-flex;
  height: 38px;
  margin-top: 24px;
  align-items: center;
  justify-content: flex-start;
}

.universe-product-logo img {
  display: block;
  width: auto;
  max-width: 112px;
  height: 24px;
  object-fit: contain;
}

.universe-product-logo--repix {
  min-width: 126px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.universe-product-logo--repix img {
  width: 104px;
  height: auto;
}

.universe-product-logo--mepix {
  min-width: 126px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.universe-flagship-info h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.universe-flagship-info p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.45;
}

.universe-flagship-cta {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
}

.universe-flagship-cta b {
  color: var(--universe-lime);
  font-size: 13px;
  transition: transform 0.25s ease;
}

.universe-flagship:hover .universe-flagship-cta b {
  transform: translate(2px, -2px);
}

.universe-mockup {
  position: absolute;
  z-index: 1;
  right: -7%;
  bottom: -19%;
  width: 58%;
  height: 108%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.58));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.universe-flagship:hover .universe-mockup {
  transform: translate(-5px, -4px) scale(1.025);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.66));
}

.universe-mockup.mepix {
  right: -2%;
  bottom: -25%;
  width: 56%;
}

/* Editorial flagship cards — selected concept A */
.universe-dock-intro {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.universe-flagship {
  display: grid;
  isolation: auto;
  height: 350px;
  grid-template-rows: 204px 1fr;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 18, 17, 0.94);
  box-shadow: none;
  transform: none;
  transition: background-color 0.28s ease, border-color 0.28s ease;
}

.universe-flagship:hover {
  transform: none;
  border-color: rgba(184, 255, 79, 0.4);
  background: rgba(20, 23, 21, 0.98);
  box-shadow: none;
}

.universe-flagship::before,
.universe-flagship::after {
  display: none;
}

.universe-flagship-top {
  position: relative;
  display: grid;
  padding: 22px 24px 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.universe-flagship-index {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.48);
  font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.14em;
}

.universe-flagship-top .universe-product-logo {
  display: inline-flex;
  height: 36px;
  margin: 0 0 12px;
  align-items: center;
  justify-content: flex-start;
}

.universe-flagship-top .universe-product-logo img {
  display: block;
  width: auto;
  height: 22px;
  max-width: 112px;
  object-fit: contain;
}

.universe-flagship-top .universe-product-logo--repix {
  height: 38px;
  min-width: 0;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.universe-flagship-top .universe-product-logo--repix img {
  width: 104px;
  height: auto;
}

.universe-flagship-top .universe-product-logo--mepix {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.universe-flagship-top .universe-product-logo--mepix img {
  width: 112px;
  height: auto;
}

.universe-flagship-top h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.universe-flagship-top p {
  max-width: 410px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.55;
}

.universe-flagship-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--universe-lime);
  font-size: 20px;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.universe-flagship:hover .universe-flagship-arrow {
  color: #0b0d0a;
  background: var(--universe-lime);
  transform: translate(3px, -3px);
}

.universe-screen-stage {
  position: relative;
  min-height: 146px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(184, 255, 79, 0.08), transparent 45%),
    #151914;
}

.universe-flagship.mepix .universe-screen-stage {
  background:
    linear-gradient(135deg, rgba(123, 93, 255, 0.12), transparent 45%),
    #151416;
}

.universe-screen-stage::before {
  content: "PRODUCT INTERFACE";
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 22px;
  color: rgba(255, 255, 255, 0.5);
  font: 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.14em;
}

.universe-screen-stage img {
  position: absolute;
  top: 40px;
  left: 7%;
  width: 96%;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.44));
  transition: transform 0.4s ease;
}

.universe-flagship.mepix .universe-screen-stage img {
  top: 34px;
  left: 5%;
  width: 100%;
}

.universe-flagship:hover .universe-screen-stage img {
  transform: translateY(-6px);
}

/* Existing content, restyled into the selected system */
.universe-page .groo-about,
.universe-page .groo-services-v3,
.universe-page .groo-why,
.universe-page .groo-tech {
  background: #0b0c10;
}

.universe-page .groo-about {
  border-top: 1px solid var(--universe-line);
  border-bottom: 1px solid var(--universe-line);
}

.universe-page .groo-about-heading,
.universe-page .groo-sec-title.dark,
.universe-page .groo-tech-name {
  color: var(--universe-paper);
}

.universe-page .groo-about-desc,
.universe-page .groo-svc-lede,
.universe-page .groo-tech-desc,
.universe-page .groo-why-desc {
  color: var(--universe-muted);
}

.universe-page .groo-badge,
.universe-page .groo-badge.light {
  border: 1px solid var(--universe-line);
  color: var(--universe-lime);
  background: transparent;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.12em;
}

.universe-page .groo-stat {
  border-color: var(--universe-line);
  color: var(--universe-paper);
  background: rgba(255, 255, 255, 0.025);
}

/* About — transformation flow, selected concept B */
.universe-page .groo-about {
  padding: clamp(92px, 9vw, 140px) 0;
  background:
    radial-gradient(circle at 79% 17%, rgba(123, 93, 255, 0.13), transparent 27%),
    radial-gradient(circle at 12% 86%, rgba(184, 255, 79, 0.08), transparent 24%),
    #080a09;
}

.universe-page .groo-about::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 23%, #000 80%, transparent);
}

.universe-page .groo-about .container {
  position: relative;
  z-index: 1;
}

.universe-page .groo-about-flow-intro {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: minmax(460px, 0.9fr) minmax(440px, 1.1fr);
  align-items: end;
  gap: clamp(46px, 7vw, 112px);
}

.universe-page .groo-about .groo-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 9px 14px;
  border-color: rgba(184, 255, 79, 0.25);
  border-radius: 999px;
  background: rgba(184, 255, 79, 0.055);
}

.universe-page .groo-about .groo-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--universe-lime);
  box-shadow: 0 0 14px var(--universe-lime);
}

.universe-page .groo-about .groo-about-heading {
  margin: 0;
  font-size: clamp(54px, 5.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.universe-page .groo-about .groo-about-heading .accent {
  color: var(--universe-lime);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.universe-page .groo-about .groo-about-desc {
  max-width: 670px;
  margin: 0;
  color: #c0c5c1;
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.universe-page .groo-about-capabilities {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 8px;
}

.universe-page .groo-about-capabilities span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.1em;
}

.universe-page .groo-about-flow-wrap {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(17, 22, 19, 0.82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.universe-page .groo-about-flow {
  display: grid;
  min-height: 350px;
  grid-template-columns: 1fr 88px 1fr 88px 1fr;
  align-items: stretch;
}

.universe-page .groo-flow-stage {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.universe-page .groo-flow-stage.is-ai {
  border-color: rgba(184, 255, 79, 0.34);
  background: linear-gradient(145deg, rgba(184, 255, 79, 0.14), rgba(184, 255, 79, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.11), 0 0 44px rgba(184, 255, 79, 0.055);
}

.universe-page .groo-flow-stage.is-focus {
  background: linear-gradient(145deg, rgba(123, 93, 255, 0.13), rgba(123, 93, 255, 0.025));
}

.universe-page .groo-flow-stage::after {
  content: attr(data-step);
  position: absolute;
  right: 20px;
  top: 17px;
  color: rgba(255, 255, 255, 0.075);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
}

.universe-page .groo-flow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  font: 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.06em;
}

.universe-page .groo-flow-stage.is-ai .groo-flow-icon {
  border-color: var(--universe-lime);
  color: #11170c;
  background: var(--universe-lime);
  box-shadow: 0 10px 30px rgba(184, 255, 79, 0.16);
}

.universe-page .groo-flow-stage.is-focus .groo-flow-icon {
  border-color: rgba(123, 93, 255, 0.42);
  color: #ddd7ff;
  background: rgba(123, 93, 255, 0.18);
}

.universe-page .groo-flow-label {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.52);
  font: 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.13em;
}

.universe-page .groo-flow-stage h3 {
  margin: 10px 0 11px;
  color: #f4f4ef;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.universe-page .groo-flow-stage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}

.universe-page .groo-flow-proof {
  display: flex;
  margin-top: 25px;
  padding-top: 22px;
  align-items: baseline;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.universe-page .groo-flow-proof strong {
  color: #f4f4ef;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.universe-page .groo-flow-stage.is-ai .groo-flow-proof strong {
  color: var(--universe-lime);
}

.universe-page .groo-flow-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.universe-page .groo-flow-connector {
  position: relative;
  display: grid;
  place-items: center;
}

.universe-page .groo-flow-connector::before {
  content: "";
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), var(--universe-lime));
}

.universe-page .groo-flow-connector.second::before {
  background: linear-gradient(90deg, var(--universe-lime), rgba(123, 93, 255, 0.72));
}

.universe-page .groo-flow-connector span {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #11170c;
  background: var(--universe-lime);
  box-shadow: 0 0 0 8px rgba(184, 255, 79, 0.07), 0 0 28px rgba(184, 255, 79, 0.2);
  font-size: 17px;
}

.universe-page .groo-services-v3 {
  border-bottom: 1px solid var(--universe-line);
}

.universe-page .groo-svc-grid {
  gap: 1px;
  background: var(--universe-line);
  border: 1px solid var(--universe-line);
}

.universe-page .groo-svc-feature,
.universe-page .groo-svc-side {
  border: 0;
  border-radius: 0;
  color: var(--universe-paper);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow: none;
}

.universe-page .groo-svc-feature:hover,
.universe-page .groo-svc-side:hover {
  transform: none;
  background: rgba(123, 93, 255, 0.08);
}

.universe-page .groo-svc-feature-title,
.universe-page .groo-svc-side-title,
.universe-page .groo-svc-num,
.universe-page .groo-svc-feature-text,
.universe-page .groo-svc-side-text,
.universe-page .groo-svc-side-bullets li {
  color: inherit;
}

.universe-page .groo-svc-feature-text,
.universe-page .groo-svc-side-text,
.universe-page .groo-svc-side-bullets li {
  color: var(--universe-muted);
}

.universe-page .groo-svc-status,
.universe-page .groo-svc-feature-cta,
.universe-page .groo-svc-side-link {
  color: var(--universe-lime);
}

.universe-page .groo-svc-mockup {
  border-color: var(--universe-line);
  background: #121319;
}

.groo-svc-future {
  position: relative;
  min-height: 340px;
  border: 1px dashed rgba(255, 255, 255, 0.18) !important;
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(255, 255, 255, 0.025) 12px 13px),
    #0d0e12 !important;
}

.groo-svc-roadmap {
  display: inline-flex;
  margin: 6px 0 36px;
  color: #a996ff;
  font: 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.13em;
}

.groo-svc-future-plus {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(184, 255, 79, 0.75);
  font-size: 42px;
  font-weight: 200;
}

.universe-page .groo-process,
.universe-page .groo-testi,
.universe-page .groo-footer {
  background: var(--universe-night);
}

.universe-page .groo-process {
  border-bottom: 1px solid var(--universe-line);
}

.universe-page .groo-step,
.universe-page .groo-testi-card,
.universe-page .groo-tech-card {
  border-color: var(--universe-line);
  color: var(--universe-paper);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.universe-page .groo-step-circle {
  color: #0c1008;
  background: var(--universe-lime);
}

.universe-page .groo-step-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.universe-page .groo-testi-role {
  color: rgba(255, 255, 255, 0.68) !important;
}

.universe-page .groo-cases {
  color: #11131a;
  background: var(--universe-paper);
}

.universe-page .groo-cases .groo-sec-title,
.universe-page .groo-case-title {
  color: #11131a;
}

.universe-page .groo-cases .groo-badge {
  border-color: rgba(93, 62, 208, 0.28);
  color: #5132bd;
  background: rgba(123, 93, 255, 0.08);
}

.universe-page .groo-cases .groo-case-tag {
  color: #5838c8;
}

.universe-page .groo-cases .groo-case-metric {
  color: #315f00;
}

.universe-page .groo-case-card {
  border-color: rgba(17, 19, 26, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Application cases — editorial atlas, selected concept A */
.universe-page .groo-cases {
  padding: clamp(94px, 9vw, 140px) 0;
  background:
    radial-gradient(circle at 84% 7%, rgba(123, 93, 255, 0.15), transparent 25%),
    #f1f0eb;
}

.universe-page .groo-case-atlas-head {
  display: grid;
  padding-bottom: 48px;
  grid-template-columns: minmax(470px, 1.15fr) minmax(380px, 0.85fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
  border-bottom: 1px solid rgba(17, 19, 26, 0.17);
}

.universe-page .groo-cases .groo-badge.light {
  margin-bottom: 21px;
  color: #4f31bd;
  background: rgba(123, 93, 255, 0.07);
}

.universe-page .groo-case-atlas-head .groo-sec-title {
  margin: 0;
  color: #11131a;
  font-size: clamp(54px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.universe-page .groo-case-atlas-head .groo-sec-title span {
  color: #6847e8;
}

.universe-page .groo-case-atlas-head > p {
  max-width: 560px;
  margin: 0 0 4px;
  color: #555861;
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.universe-page .groo-case-atlas-head > p strong {
  color: #252730;
}

.universe-page .groo-case-atlas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(17, 19, 26, 0.16);
}

.universe-page .groo-case-field {
  position: relative;
  display: block;
  min-height: 390px;
  padding: 40px 38px 34px 98px;
  overflow: hidden;
  border-right: 1px solid rgba(17, 19, 26, 0.16);
  border-bottom: 1px solid rgba(17, 19, 26, 0.16);
  color: #171921;
  background: rgba(255, 255, 255, 0.3);
  transition: color 0.28s ease, background-color 0.28s ease;
}

.universe-page a.groo-case-field:hover {
  color: #171921;
  background: rgba(255, 255, 255, 0.62);
}

.universe-page .groo-case-field:nth-child(2),
.universe-page .groo-case-field:nth-child(3) {
  background-color: rgba(17, 19, 26, 0.025);
}

.universe-page .groo-case-field-no {
  position: absolute;
  left: 27px;
  top: 30px;
  color: transparent;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  -webkit-text-stroke: 1px rgba(17, 19, 26, 0.3);
}

.universe-page .groo-case-field-body {
  display: flex;
  min-height: 316px;
  flex-direction: column;
}

.universe-page .groo-case-field-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f31bd;
  font: 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.1em;
}

.universe-page .groo-case-field-line {
  width: 20px;
  height: 2px;
  background: #7655ef;
}

.universe-page .groo-case-field.is-repix .groo-case-field-line,
.universe-page .groo-case-field.is-custom .groo-case-field-line {
  background: #72aa21;
}

.universe-page .groo-case-field h3 {
  max-width: 520px;
  margin: 25px 0 14px;
  color: #15171e;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.universe-page .groo-case-field p {
  max-width: 560px;
  margin: 0;
  color: #5b5e66;
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.universe-page .groo-case-field-result {
  display: flex;
  margin-top: auto;
  padding-top: 25px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(17, 19, 26, 0.11);
}

.universe-page .groo-case-field-result small {
  color: #80828a;
  font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.13em;
}

.universe-page .groo-case-field-result strong {
  color: #496f12;
  font-size: 16px;
  line-height: 1.35;
  text-align: right;
  letter-spacing: -0.025em;
}

.universe-page .groo-case-field.is-mepix .groo-case-field-result strong,
.universe-page .groo-case-field.is-marketing .groo-case-field-result strong {
  color: #5a39ca;
}

.universe-page .groo-case-field-side {
  position: absolute;
  left: 28px;
  bottom: 31px;
  color: rgba(17, 19, 26, 0.48);
  font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.universe-page a.groo-case-field::after {
  content: "↗";
  position: absolute;
  right: 24px;
  top: 23px;
  color: #5d3bd0;
  font-size: 20px;
  transition: transform 0.25s ease;
}

.universe-page a.groo-case-field:hover::after {
  transform: translate(3px, -3px);
}

/* Existing working contact form — presentation only */
.universe-page .contact-sec {
  padding: clamp(84px, 8vw, 128px) 0;
  color: var(--universe-paper);
  background:
    radial-gradient(circle at 82% 22%, rgba(123, 93, 255, 0.22), transparent 32%),
    #0b0c10 !important;
  border-top: 1px solid var(--universe-line);
}

.universe-page .groo-contact-wrap {
  border: 1px solid var(--universe-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.universe-page .groo-contact-left,
.universe-page .groo-contact-right {
  background: transparent;
}

.universe-page .groo-contact-title,
.universe-page .groo-contact-info a {
  color: var(--universe-paper) !important;
}

.universe-page .groo-contact-desc,
.universe-page .groo-contact-info span,
.universe-page .groo-form-footer p {
  color: #b9bbc3;
}

.universe-page .groo-contact-badge {
  color: var(--universe-lime);
  background: rgba(184, 255, 79, 0.08);
}

.universe-page .groo-contact-info-icon {
  border: 1px solid rgba(184, 255, 79, 0.2);
  background: rgba(184, 255, 79, 0.08);
}

.universe-page .groo-contact-info-icon i {
  color: var(--universe-lime);
}

.universe-page .groo-form {
  color-scheme: dark;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--universe-paper);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.universe-page .groo-form input,
.universe-page .groo-form select,
.universe-page .groo-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  color: var(--universe-paper);
  background: rgba(255, 255, 255, 0.075);
}

.universe-page .groo-form input::placeholder,
.universe-page .groo-form textarea::placeholder {
  color: #b1b3bb;
  opacity: 1;
}

.universe-page .groo-form select option {
  color: #f4f4ef;
  background: #15161c;
}

.universe-page .groo-form input:focus,
.universe-page .groo-form select:focus,
.universe-page .groo-form textarea:focus {
  border-color: var(--universe-lime);
  box-shadow: 0 0 0 3px rgba(184, 255, 79, 0.1);
  color: var(--universe-paper);
  background: rgba(255, 255, 255, 0.1);
}

.universe-page .groo-form input:-webkit-autofill,
.universe-page .groo-form input:-webkit-autofill:hover,
.universe-page .groo-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--universe-paper);
  box-shadow: 0 0 0 1000px #1a1b21 inset;
  caret-color: var(--universe-paper);
}

.universe-page .groo-form-footer p a {
  color: #c1b5ff !important;
}

.universe-page .groo-form .th-btn {
  border-radius: 0;
  color: #0c1008;
  background: var(--universe-lime);
}

.universe-page .form-messages.success {
  color: var(--universe-lime);
}

.universe-page .form-messages.error {
  color: #ff7b9e;
}

.universe-page .groo-footer {
  border-top: 1px solid var(--universe-line);
}

.universe-page .groo-ft-cta {
  color: #0c1008;
  background: var(--universe-lime);
  border-radius: 0;
}

.universe-page .groo-ft-cta-text h3 {
  color: #0c1008;
}

.universe-page .groo-ft-cta-text span {
  color: rgba(12, 16, 8, 0.72);
}

.universe-page .groo-ft-phone,
.universe-page .groo-ft-phone:hover {
  color: #1b2412 !important;
}

.universe-page .groo-ft-phone i {
  color: #5132bd;
}

.universe-page .groo-ft-main,
.universe-page .groo-ft-bottom {
  border-color: var(--universe-line);
}

.universe-page .groo-ft-links h4,
.universe-page .groo-ft-links a,
.universe-page .groo-ft-contact-row a {
  color: var(--universe-paper);
}

@media (max-width: 1199px) {
  .universe-hero {
    min-height: 1240px;
  }

  .universe-live-dock {
    grid-template-columns: 1fr 1fr;
  }

  .universe-dock-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .universe-header {
    height: 72px;
  }

  .universe-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--universe-line);
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(18px);
  }

  .universe-nav.active {
    display: flex;
  }

  .universe-nav a {
    padding: 13px 5px;
    border-bottom: 1px solid var(--universe-line);
  }

  .universe-nav a:last-child {
    border-bottom: 0;
  }

  .universe-header .groo-mobile-toggle {
    display: flex;
  }

  .universe-page .groo-about-flow-intro {
    margin-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .universe-page .groo-about .groo-about-desc {
    max-width: 760px;
  }

  .universe-page .groo-about-flow {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .universe-page .groo-flow-stage {
    min-height: 300px;
  }

  .universe-page .groo-flow-connector {
    height: 52px;
  }

  .universe-page .groo-flow-connector::before,
  .universe-page .groo-flow-connector.second::before {
    width: 1px;
    height: 72%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), var(--universe-lime));
  }

  .universe-page .groo-flow-connector.second::before {
    background: linear-gradient(180deg, var(--universe-lime), rgba(123, 93, 255, 0.72));
  }

  .universe-page .groo-flow-connector span {
    transform: rotate(90deg);
  }

  .universe-page .groo-case-atlas-head {
    padding-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .universe-page .groo-case-atlas-head > p {
    max-width: 720px;
  }

  .universe-page .groo-case-atlas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .universe-brand img {
    width: 34px;
    height: 34px;
  }

  .universe-brand span {
    font-size: 13px;
  }

  .universe-consult {
    display: none;
  }

  .universe-hero {
    min-height: 1750px;
  }

  .universe-hero-content {
    padding-top: 132px;
  }

  .universe-hero h1 {
    font-size: clamp(50px, 14.5vw, 74px);
  }

  .universe-hero-content > p {
    font-size: 15px;
  }

  .universe-hero-actions {
    flex-direction: column;
  }

  .universe-button {
    width: 100%;
  }

  .universe-side-note {
    display: none;
  }

  .universe-live-dock {
    bottom: 24px;
    grid-template-columns: 1fr;
  }

  .universe-dock-intro {
    grid-column: auto;
  }

  .universe-flagship {
    height: 390px;
    grid-template-rows: 220px 1fr;
  }

  .universe-flagship-top {
    padding: 24px 20px 18px;
  }

  .universe-flagship-top h2 {
    font-size: 17px;
  }

  .universe-screen-stage img {
    left: 4%;
    width: 104%;
  }

  .universe-flagship.mepix .universe-screen-stage img {
    left: 2%;
    width: 108%;
  }

  .universe-page .groo-about {
    padding: 78px 0;
  }

  .universe-page .groo-about-flow-intro {
    margin-bottom: 30px;
    gap: 22px;
  }

  .universe-page .groo-about .groo-badge {
    margin-bottom: 18px;
  }

  .universe-page .groo-about .groo-about-heading {
    font-size: 45px;
    line-height: 1.06;
  }

  .universe-page .groo-about .groo-about-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .universe-page .groo-about-capabilities {
    margin-top: 18px;
  }

  .universe-page .groo-about-flow-wrap {
    padding: 10px;
    border-radius: 21px;
  }

  .universe-page .groo-flow-stage {
    min-height: 310px;
    padding: 24px;
    border-radius: 15px;
  }

  .universe-page .groo-flow-label {
    margin-top: 23px;
  }

  .universe-page .groo-flow-stage h3 {
    font-size: 25px;
  }

  .universe-page .groo-flow-proof {
    margin-top: 20px;
    padding-top: 18px;
  }

  .universe-page .groo-flow-proof strong {
    font-size: 31px;
  }

  .universe-page .groo-cases {
    padding: 78px 0;
  }

  .universe-page .groo-case-atlas-head {
    padding-bottom: 30px;
  }

  .universe-page .groo-case-atlas-head .groo-sec-title {
    font-size: 45px;
    line-height: 1.02;
  }

  .universe-page .groo-case-atlas-head > p {
    font-size: 14px;
    line-height: 1.75;
  }

  .universe-page .groo-case-field {
    min-height: 420px;
    padding: 30px 22px 26px;
  }

  .universe-page .groo-case-field-body {
    min-height: 363px;
  }

  .universe-page .groo-case-field-no {
    left: 22px;
    top: 27px;
    font-size: 45px;
  }

  .universe-page .groo-case-field-meta {
    min-height: 45px;
    padding-left: 64px;
    padding-right: 28px;
    font-size: 9px;
  }

  .universe-page .groo-case-field h3 {
    margin-top: 24px;
    font-size: 27px;
  }

  .universe-page .groo-case-field p {
    font-size: 13px;
    line-height: 1.7;
  }

  .universe-page .groo-case-field-side {
    display: none;
  }

  .universe-page .groo-case-field-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .universe-page .groo-case-field-result strong {
    text-align: left;
  }

  .universe-page .groo-form-row {
    grid-template-columns: 1fr;
  }

  .universe-page .groo-form textarea {
    min-height: 150px;
  }

  .universe-page .groo-form-footer .th-btn {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .universe-page *,
  .universe-page *::before,
  .universe-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Lower page — conversion path, selected concept B */
.universe-page .groo-lower-shell {
  width: min(1380px, calc(100% - 96px));
  margin: 0 auto;
}

.universe-page .groo-lower-why,
.universe-page .groo-lower-path,
.universe-page .groo-lower-tech,
.universe-page .groo-lower-contact,
.universe-page .groo-lower-footer {
  word-break: keep-all;
}

.universe-page .groo-lower-eyebrow {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 11px;
  color: #101113;
  font: 700 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.universe-page .groo-lower-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--universe-violet);
}

.universe-page .groo-lower-why {
  padding: clamp(100px, 10vw, 150px) 0 clamp(90px, 8vw, 120px);
  color: #101113;
  background: var(--universe-paper);
  border-top: 1px solid #d7d4cc;
  border-bottom: 1px solid #d7d4cc;
}

.universe-page .groo-lower-why-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: end;
}

.universe-page .groo-lower-display {
  margin: 0;
  color: #101113;
  font-size: clamp(54px, 6.2vw, 98px);
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.universe-page .groo-lower-why-copy {
  max-width: 570px;
  padding-bottom: 8px;
}

.universe-page .groo-lower-why-copy p {
  margin: 0;
  color: #6d6d68;
  font-size: 15px;
  line-height: 1.8;
}

.universe-page .groo-lower-why-copy .groo-lower-lead {
  margin-bottom: 18px;
  color: #555651;
  font-size: 18px;
}

.universe-page .groo-lower-lead strong {
  color: #101113;
  font-weight: 700;
}

.universe-page .groo-lower-reasons {
  display: grid;
  margin-top: 88px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #101113;
  border-left: 1px solid #d7d4cc;
}

.universe-page .groo-lower-reason {
  display: flex;
  min-height: 280px;
  padding: 32px 30px 34px;
  flex-direction: column;
  border-right: 1px solid #d7d4cc;
  border-bottom: 1px solid #d7d4cc;
  background: transparent;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.universe-page .groo-lower-reason:hover {
  z-index: 1;
  transform: translateY(-3px);
  background: #fff;
}

.universe-page .groo-lower-reason > span {
  color: var(--universe-violet);
  font: 600 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.1em;
}

.universe-page .groo-lower-reason h3 {
  margin: auto 0 14px;
  color: #101113;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.universe-page .groo-lower-reason p {
  margin: 0;
  color: #6d6d68;
  font-size: 14px;
  line-height: 1.75;
}

.universe-page .groo-lower-path {
  padding: clamp(100px, 9vw, 140px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(123, 93, 255, 0.14), transparent 26%),
    #15151a;
}

.universe-page .groo-lower-path .groo-lower-eyebrow {
  color: var(--universe-lime);
}

.universe-page .groo-lower-path .groo-lower-eyebrow::before {
  background: var(--universe-lime);
}

.universe-page .groo-lower-path-head {
  display: grid;
  margin-bottom: 78px;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(55px, 7vw, 100px);
}

.universe-page .groo-lower-path-head h2,
.universe-page .groo-lower-tech-head h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.universe-page .groo-lower-path-head h2 {
  color: #fff;
}

.universe-page .groo-lower-path-head > p {
  max-width: 560px;
  margin: 0;
  align-self: end;
  color: #aaaab0;
  font-size: 17px;
  line-height: 1.8;
}

.universe-page .groo-lower-steps {
  border-top: 1px solid #3b3b42;
}

.universe-page .groo-lower-step {
  display: grid;
  padding: 38px 0;
  grid-template-columns: 90px 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid #3b3b42;
}

.universe-page .groo-lower-step-no {
  color: var(--universe-lime);
  font: 600 14px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.universe-page .groo-lower-step h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.universe-page .groo-lower-step p {
  margin: 0;
  color: #a7a7ad;
  font-size: 14px;
  line-height: 1.7;
}

.universe-page .groo-lower-step-tag {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 12px;
  border: 1px solid #4b4b52;
  border-radius: 999px;
  color: #d7d7db;
  font: 600 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.1em;
}

.universe-page .groo-lower-tech {
  padding: clamp(100px, 9vw, 135px) 0;
  color: #101113;
  background: var(--universe-paper);
}

.universe-page .groo-lower-tech-head {
  display: flex;
  margin-bottom: 60px;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}

.universe-page .groo-lower-tech-head h2 {
  color: #101113;
}

.universe-page .groo-lower-tech-head > p {
  max-width: 470px;
  margin: 0;
  color: #6d6d68;
  font-size: 15px;
  line-height: 1.75;
}

.universe-page .groo-lower-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #101113;
  border-left: 1px solid #d7d4cc;
  border-bottom: 1px solid #d7d4cc;
}

.universe-page .groo-lower-tech-grid article {
  display: flex;
  min-height: 430px;
  padding: 30px 28px 32px;
  flex-direction: column;
  border-right: 1px solid #d7d4cc;
  border-bottom: 1px solid #d7d4cc;
  transition: background-color 0.25s ease;
}

.universe-page .groo-lower-tech-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.universe-page .groo-lower-tech-grid article:hover {
  background: #fff;
}

.universe-page .groo-lower-tech-card-top {
  display: flex;
  margin-bottom: 56px;
  justify-content: space-between;
  align-items: start;
}

.universe-page .groo-lower-tech-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #d7d4cc;
  border-radius: 50%;
  color: var(--universe-violet);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.universe-page .groo-lower-tech-no {
  color: #9c9b96;
  font: 600 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
}

.universe-page .groo-lower-tech-label {
  margin: 0 0 10px !important;
  color: var(--universe-violet) !important;
  font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace !important;
  letter-spacing: 0.12em;
}

.universe-page .groo-lower-tech-grid h3 {
  margin: 0 0 12px;
  color: #101113;
  font: 700 19px/1.25 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: -0.03em;
}

.universe-page .groo-lower-tech-grid p {
  margin: 0;
  color: #6d6d68;
  font-size: 13px;
  line-height: 1.7;
}

.universe-page .groo-lower-tech-grid ul {
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #dedbd3;
  list-style: none;
}

.universe-page .groo-lower-tech-grid li {
  position: relative;
  margin: 8px 0 0;
  padding-left: 14px;
  color: #555651;
  font-size: 12px;
  line-height: 1.5;
}

.universe-page .groo-lower-tech-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--universe-lime);
  box-shadow: 0 0 0 1px #8abf38;
}

.universe-page .groo-lower-auto-flow {
  margin-top: 48px;
  padding: 34px 36px 38px;
  color: #fff;
  background: #15151a;
}

.universe-page .groo-lower-auto-flow-head {
  display: flex;
  padding-bottom: 28px;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  border-bottom: 1px solid #3b3b42;
}

.universe-page .groo-lower-auto-flow-head > span {
  color: var(--universe-lime);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.14em;
}

.universe-page .groo-lower-auto-flow-head > strong {
  color: #fff;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.universe-page .groo-lower-auto-flow ol {
  display: grid;
  margin: 0;
  padding: 30px 0 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.universe-page .groo-lower-auto-flow li {
  position: relative;
  min-height: 115px;
  padding: 0 28px;
  border-right: 1px solid #3b3b42;
}

.universe-page .groo-lower-auto-flow li:first-child {
  padding-left: 0;
}

.universe-page .groo-lower-auto-flow li:last-child {
  padding-right: 0;
  border-right: 0;
}

.universe-page .groo-lower-auto-flow li > span {
  display: block;
  margin-bottom: 24px;
  color: #76767e;
  font: 600 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.universe-page .groo-lower-auto-flow li > strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font: 700 15px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.universe-page .groo-lower-auto-flow li > p {
  margin: 0;
  color: #96969d;
  font-size: 11px;
  line-height: 1.55;
}

.universe-page .groo-lower-trust {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  background: #e9e6de;
}

.universe-page .groo-lower-trust > div {
  padding: 24px 28px;
  border-right: 1px solid #cfcbc2;
}

.universe-page .groo-lower-trust > div:last-child {
  border-right: 0;
}

.universe-page .groo-lower-trust strong,
.universe-page .groo-lower-trust span {
  display: block;
}

.universe-page .groo-lower-trust strong {
  margin-bottom: 7px;
  color: #101113;
  font-size: 14px;
}

.universe-page .groo-lower-trust span {
  color: #6d6d68;
  font-size: 12px;
  line-height: 1.6;
}

.universe-page .groo-lower-contact {
  padding: clamp(95px, 8vw, 120px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 8% 90%, rgba(184, 255, 79, 0.14), transparent 26%),
    var(--universe-violet);
}

.universe-page .groo-lower-contact-grid {
  display: grid;
  grid-template-columns: 0.73fr 1.27fr;
  gap: clamp(55px, 6vw, 90px);
  align-items: start;
}

.universe-page .groo-lower-contact .groo-lower-eyebrow {
  color: #fff;
}

.universe-page .groo-lower-contact .groo-lower-eyebrow::before {
  background: var(--universe-lime);
}

.universe-page .groo-lower-contact-copy h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(50px, 5.7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.universe-page .groo-lower-contact-copy > p:not(.groo-lower-eyebrow) {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.universe-page .groo-lower-contact-links {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.universe-page .groo-lower-contact-links a {
  display: flex;
  padding: 18px 0;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font: 600 16px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.universe-page .groo-lower-contact-links a:hover {
  color: var(--universe-lime);
}

.universe-page .groo-lower-contact-links span {
  color: rgba(255, 255, 255, 0.65);
  font: 500 11px/1.2 Pretendard, sans-serif;
}

.universe-page .groo-lower-form-card {
  padding: 48px;
  border-radius: 3px;
  color: #101113;
  background: #f8f7f2;
  box-shadow: 0 30px 70px rgba(26, 18, 68, 0.2);
}

.universe-page .groo-lower-form-top {
  display: flex;
  margin-bottom: 38px;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.universe-page .groo-lower-form-top h3 {
  margin: 0;
  color: #101113;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.universe-page .groo-lower-form-top span {
  color: var(--universe-violet);
  font: 600 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.13em;
}

.universe-page .groo-lower-form {
  position: relative;
}

.universe-page .groo-lower-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.universe-page .groo-lower-form input,
.universe-page .groo-lower-form select,
.universe-page .groo-lower-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid #d7d4cc;
  border-radius: 0;
  outline: none;
  color: #101113;
  background: #fff;
  font: 500 14px/1.4 Pretendard, sans-serif;
  box-shadow: none;
}

.universe-page .groo-lower-form input::placeholder,
.universe-page .groo-lower-form textarea::placeholder {
  color: #72726e;
  opacity: 1;
}

.universe-page .groo-lower-form select {
  color-scheme: light;
}

.universe-page .groo-lower-form select:invalid {
  color: #72726e;
}

.universe-page .groo-lower-form select option {
  color: #101113;
  background: #fff;
}

.universe-page .groo-lower-form input:focus,
.universe-page .groo-lower-form select:focus,
.universe-page .groo-lower-form textarea:focus {
  border-color: var(--universe-violet);
  color: #101113;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(123, 93, 255, 0.11);
}

.universe-page .groo-lower-form textarea {
  min-height: 132px;
  resize: vertical;
}

.universe-page .groo-lower-form-bottom {
  display: flex;
  margin-top: -4px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.universe-page .groo-lower-form-bottom p {
  margin: 0;
  color: #6d6d68;
  font-size: 11px;
  line-height: 1.5;
}

.universe-page .groo-lower-form-bottom p a {
  color: #5132bd !important;
  text-decoration: underline;
}

.universe-page .groo-lower-form-bottom button {
  display: flex;
  min-width: 200px;
  padding: 18px 20px;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  color: #101113;
  background: var(--universe-lime);
  font: 700 14px/1 Pretendard, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.universe-page .groo-lower-form-bottom button:hover {
  transform: translateY(-2px);
  color: #101113;
  background: #a9f332;
}

.universe-page .groo-lower-form-bottom button span {
  font-size: 17px;
  font-weight: 500;
}

.universe-page .groo-lower-form-proof {
  display: flex;
  margin-top: 30px;
  padding-top: 23px;
  gap: 20px;
  border-top: 1px solid #d7d4cc;
  color: #6d6d68;
  font-size: 11px;
}

.universe-page .groo-lower-form-proof span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--universe-violet);
  font-weight: 700;
}

.universe-page .groo-lower-form .form-messages.success {
  color: #2e6a00;
}

.universe-page .groo-lower-form .form-messages.error {
  color: #b42318;
}

.universe-page .groo-lower-footer {
  padding: 70px 0 0;
  color: #fff;
  background: #0e0e11;
}

.universe-page .groo-lower-footer-top {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: 1.4fr 0.55fr 0.9fr 1fr;
  gap: 60px;
}

.universe-page .groo-lower-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.universe-page .groo-lower-footer-logo img {
  width: auto;
  height: 34px;
}

.universe-page .groo-lower-footer-logo span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.universe-page .groo-lower-footer-brand > p {
  max-width: 390px;
  margin: 25px 0;
  color: #919198;
  font-size: 13px;
  line-height: 1.75;
}

.universe-page .groo-lower-footer-brand > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.universe-page .groo-lower-footer-brand > div a {
  color: #fff;
  font: 600 13px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.universe-page .groo-lower-footer h3 {
  margin: 0 0 22px;
  color: #77777e;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.universe-page .groo-lower-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.universe-page .groo-lower-footer li {
  margin: 0 0 12px;
  color: #d0d0d4;
  font-size: 13px;
}

.universe-page .groo-lower-footer li a {
  color: inherit;
}

.universe-page .groo-lower-footer li a:hover {
  color: var(--universe-lime);
}

.universe-page .groo-lower-footer-address address,
.universe-page .groo-lower-footer-address p {
  margin: 0;
  color: #aaaab0;
  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
}

.universe-page .groo-lower-footer-address p {
  margin-top: 18px;
}

.universe-page .groo-lower-footer-bottom {
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  border-top: 1px solid #29292e;
  color: #74747b;
  font: 500 11px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.universe-page .groo-lower-footer-bottom p {
  margin: 0;
  color: inherit;
}

.universe-page .groo-lower-footer-bottom nav {
  display: flex;
  gap: 24px;
}

.universe-page .groo-lower-footer-bottom a {
  color: inherit;
}

.universe-page .groo-lower-footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .universe-page .groo-lower-shell {
    width: min(calc(100% - 40px), 720px);
  }

  .universe-page .groo-lower-why-head,
  .universe-page .groo-lower-path-head,
  .universe-page .groo-lower-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .universe-page .groo-lower-reasons {
    margin-top: 55px;
    grid-template-columns: repeat(2, 1fr);
  }

  .universe-page .groo-lower-reason {
    min-height: 240px;
  }

  .universe-page .groo-lower-step {
    grid-template-columns: 55px 1fr;
  }

  .universe-page .groo-lower-step p {
    grid-column: 2;
  }

  .universe-page .groo-lower-tech-head {
    display: block;
  }

  .universe-page .groo-lower-tech-head > p {
    margin-top: 24px;
  }

  .universe-page .groo-lower-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .universe-page .groo-lower-tech-grid article:nth-child(2) {
    border-right: 0;
  }

  .universe-page .groo-lower-tech-grid article:nth-child(even) {
    border-right: 0;
  }

  .universe-page .groo-lower-tech-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid #d7d4cc;
  }

  .universe-page .groo-lower-tech-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .universe-page .groo-lower-tech-mark {
    margin-bottom: 0;
  }

  .universe-page .groo-lower-auto-flow ol {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .universe-page .groo-lower-auto-flow li:nth-child(3) {
    border-right: 0;
  }

  .universe-page .groo-lower-auto-flow li:nth-child(n + 4) {
    padding-top: 28px;
    border-top: 1px solid #3b3b42;
  }

  .universe-page .groo-lower-trust {
    grid-template-columns: 1fr;
  }

  .universe-page .groo-lower-trust > div {
    border-right: 0;
    border-bottom: 1px solid #cfcbc2;
  }

  .universe-page .groo-lower-trust > div:last-child {
    border-bottom: 0;
  }

  .universe-page .groo-lower-footer-top {
    grid-template-columns: 1.4fr 1fr;
  }

  .universe-page .groo-lower-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .universe-page .groo-lower-shell {
    width: calc(100% - 30px);
  }

  .universe-page .groo-lower-why,
  .universe-page .groo-lower-path,
  .universe-page .groo-lower-tech,
  .universe-page .groo-lower-contact {
    padding: 78px 0;
  }

  .universe-page .groo-lower-display {
    font-size: 50px;
  }

  .universe-page .groo-lower-why-copy .groo-lower-lead {
    font-size: 16px;
  }

  .universe-page .groo-lower-reasons {
    grid-template-columns: 1fr;
  }

  .universe-page .groo-lower-reason {
    min-height: 210px;
    padding: 26px 22px;
  }

  .universe-page .groo-lower-reason h3 {
    font-size: 24px;
  }

  .universe-page .groo-lower-path-head h2,
  .universe-page .groo-lower-tech-head h2,
  .universe-page .groo-lower-contact-copy h2 {
    font-size: 43px;
  }

  .universe-page .groo-lower-path-head {
    margin-bottom: 45px;
  }

  .universe-page .groo-lower-step {
    padding: 28px 0;
    grid-template-columns: 40px 1fr;
    gap: 15px;
  }

  .universe-page .groo-lower-step h3 {
    font-size: 21px;
  }

  .universe-page .groo-lower-tech-grid {
    grid-template-columns: 1fr;
  }

  .universe-page .groo-lower-tech-grid article,
  .universe-page .groo-lower-tech-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #d7d4cc;
  }

  .universe-page .groo-lower-tech-grid article:last-child {
    border-bottom: 0;
  }

  .universe-page .groo-lower-tech-mark {
    margin-bottom: 0;
  }

  .universe-page .groo-lower-tech-grid article {
    min-height: 390px;
  }

  .universe-page .groo-lower-tech-card-top {
    margin-bottom: 42px;
  }

  .universe-page .groo-lower-auto-flow {
    padding: 28px 22px 30px;
  }

  .universe-page .groo-lower-auto-flow-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .universe-page .groo-lower-auto-flow ol {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .universe-page .groo-lower-auto-flow li,
  .universe-page .groo-lower-auto-flow li:first-child,
  .universe-page .groo-lower-auto-flow li:nth-child(n + 4) {
    min-height: 0;
    padding: 22px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #3b3b42;
  }

  .universe-page .groo-lower-auto-flow li:last-child {
    border-bottom: 0;
  }

  .universe-page .groo-lower-auto-flow li > span {
    margin-bottom: 10px;
  }

  .universe-page .groo-lower-contact-grid {
    gap: 48px;
  }

  .universe-page .groo-lower-contact-links {
    margin-top: 38px;
  }

  .universe-page .groo-lower-form-card {
    padding: 25px 20px;
  }

  .universe-page .groo-lower-form-top h3 {
    font-size: 25px;
  }

  .universe-page .groo-lower-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .universe-page .groo-lower-form-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .universe-page .groo-lower-form-bottom button {
    width: 100%;
  }

  .universe-page .groo-lower-form-proof {
    flex-direction: column;
    gap: 8px;
  }

  .universe-page .groo-lower-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .universe-page .groo-lower-footer-brand {
    grid-column: 1 / -1;
  }

  .universe-page .groo-lower-footer-brand > div {
    flex-direction: column;
    gap: 8px;
  }

  .universe-page .groo-lower-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
