@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #164E63;
  background: linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 55%, #DBEAFE 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

strong, p, span, li, h1, h2, h3, h4, h5, h6, a, button, label, input, textarea {
  color: inherit;
}

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

a {
  text-decoration: none;
  color: #0891B2;
  transition: color 0.25s ease;
}

a:hover {
  color: #06B6D4;
}

h1, h2, h3, h4 {
  font-family: "Dela Gothic One", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #164E63;
  letter-spacing: -0.04em;
  word-spacing: 0.1em;
  line-height: 1.05;
  font-weight: 400;
}

.cap-mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #64748B;
  letter-spacing: 0.04em;
}

.cap-mono strong { color: inherit; }

.btn-aqua {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #06B6D4;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  min-height: 44px;
  min-width: 180px;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.35);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-aqua:hover {
  background: #0891B2;
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: #06B6D4;
  padding: 14px 30px;
  border-radius: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 3px solid #06B6D4;
  cursor: pointer;
  min-height: 44px;
  min-width: 180px;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.25s ease, color 0.25s ease;
}

.btn-ghost:hover {
  background: #06B6D4;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.app-shell {
  position: relative;
  min-height: 100vh;
}

.spotlight {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0.05) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.25s ease;
  mix-blend-mode: multiply;
}

.floating-rail {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 3px solid #06B6D4;
  border-radius: 0 24px 24px 0;
  padding: 28px 18px;
  width: 240px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.15);
}

.rail-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid #BAE6FD;
}

.rail-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #06B6D4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 22px;
}

.rail-host {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #0891B2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 17px;
  color: #164E63;
  line-height: 1.15;
}

.rail-title small {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #64748B;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rail-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #164E63;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.rail-nav a:hover,
.rail-nav a.is-active {
  background: #06B6D4;
  color: #FFFFFF;
  transform: translateX(4px);
}

.rail-cta {
  margin-top: auto;
  background: #06B6D4;
  color: #FFFFFF;
  padding: 16px 18px;
  border-radius: 18px;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}

.rail-cta:hover {
  background: #0891B2;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 18px;
  z-index: 200;
  border-bottom: 2px solid #BAE6FD;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #06B6D4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}

.mobile-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-host {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #0891B2;
  letter-spacing: 0.08em;
}

.mobile-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 14px;
  color: #164E63;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #06B6D4;
  color: #FFFFFF;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.3);
}

.burger-grid {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(2, 4px);
  gap: 3px;
}

.burger-grid span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFFFFF;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 182, 212, 0.96) 0%, rgba(34, 211, 238, 0.92) 100%);
  z-index: 250;
  padding: 90px 32px 40px;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-marquee {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  animation: marqueeSlide 18s linear infinite;
  pointer-events: none;
  letter-spacing: 0.1em;
}

@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-30%); }
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.drawer-link {
  padding: 18px 0;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 28px;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  animation: drawerSlide 0.4s ease both;
}

.drawer-link:nth-child(2) { animation-delay: 0.06s; }
.drawer-link:nth-child(3) { animation-delay: 0.12s; }
.drawer-link:nth-child(4) { animation-delay: 0.18s; }
.drawer-link:nth-child(5) { animation-delay: 0.24s; }
.drawer-link:nth-child(6) { animation-delay: 0.30s; }
.drawer-link:nth-child(7) { animation-delay: 0.36s; }
.drawer-link:nth-child(8) { animation-delay: 0.42s; }
.drawer-link:nth-child(9) { animation-delay: 0.48s; }
.drawer-link:nth-child(10) { animation-delay: 0.54s; }

@keyframes drawerSlide {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.drawer-link:hover {
  color: #164E63;
}

.page-wrap {
  margin-left: 240px;
  position: relative;
  z-index: 1;
}

.kinetic-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 80px 60px;
}

.kinetic-row {
  position: absolute;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 180px;
  color: rgba(6, 182, 212, 0.07);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  line-height: 1;
}

.kinetic-row.r1 { top: 8%; left: -10%; animation: kineticFlow 38s linear infinite; }
.kinetic-row.r2 { top: 28%; left: -25%; animation: kineticFlow 52s linear infinite reverse; color: rgba(34, 211, 238, 0.08); }
.kinetic-row.r3 { top: 48%; left: -15%; animation: kineticFlow 44s linear infinite; }
.kinetic-row.r4 { top: 68%; left: -30%; animation: kineticFlow 60s linear infinite reverse; color: rgba(34, 211, 238, 0.08); }
.kinetic-row.r5 { top: 86%; left: -20%; animation: kineticFlow 48s linear infinite; }

@keyframes kineticFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(60%); }
}

.kinetic-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(186, 230, 253, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 230, 253, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #0891B2;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #06B6D4;
}

.hero-title {
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1;
  margin-bottom: 26px;
  color: #164E63;
}

.hero-title em {
  font-style: normal;
  color: #06B6D4;
}

.hero-subline {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: #0891B2;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-subline strong { color: inherit; }

.hero-art {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #06B6D4 0%, #22D3EE 100%);
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.35);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 78, 99, 0) 40%, rgba(22, 78, 99, 0.55) 100%);
  pointer-events: none;
}

.hero-art-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  color: #FFFFFF;
}

.hero-art-tag .cap-mono {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.hero-art-tag h3 {
  color: #FFFFFF;
  font-size: 22px;
  margin: 0;
}

.section {
  padding: 100px 60px;
  position: relative;
}

.section-head {
  max-width: 1280px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.section-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #0891B2;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 4.5vw, 72px);
  color: #164E63;
}

.section-title em {
  font-style: normal;
  color: #06B6D4;
}

.section-lead {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.section-lead strong { color: inherit; }

.cards-stack {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stack-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.12);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease, z-index 0s;
  display: flex;
  flex-direction: column;
}

.stack-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.25), 0 0 0 3px #06B6D4;
  z-index: 10;
}

.stack-card .photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #BAE6FD 0%, #06B6D4 100%);
  overflow: hidden;
}

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

.stack-card .body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.stack-card h3 {
  font-size: 24px;
  color: #164E63;
}

.stack-card .price {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 22px;
  color: #06B6D4;
}

.stack-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}

.stack-card .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #E0F2FE;
}

.stack-card .meta span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #0891B2;
  background: #E0F2FE;
  padding: 4px 10px;
  border-radius: 10px;
}

.stack-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #0891B2;
  margin-top: 4px;
  transition: color 0.25s ease, gap 0.25s ease;
}

.stack-card .more:hover {
  color: #06B6D4;
  gap: 12px;
}

.workflow-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 4px 30px;
  max-width: 1280px;
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: #06B6D4 transparent;
}

.workflow-strip::-webkit-scrollbar { height: 8px; }
.workflow-strip::-webkit-scrollbar-track { background: rgba(186, 230, 253, 0.4); border-radius: 4px; }
.workflow-strip::-webkit-scrollbar-thumb { background: #06B6D4; border-radius: 4px; }

.flow-step {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 0 14px 34px rgba(6, 182, 212, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease;
  position: relative;
}

.flow-step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 50px rgba(6, 182, 212, 0.25), 0 0 0 3px #06B6D4;
  z-index: 5;
}

.flow-step .num {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 44px;
  color: #06B6D4;
  line-height: 1;
}

.flow-step h3 {
  font-size: 19px;
  color: #164E63;
}

.flow-step p {
  color: #475569;
  font-size: 14px;
}

.flow-step .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #E0F2FE;
  display: grid;
  place-items: center;
  color: #0891B2;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 24px;
  margin-bottom: 4px;
}

.masonry-grid {
  column-count: 3;
  column-gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 28px;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(6, 182, 212, 0.12);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease;
  position: relative;
}

.masonry-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 56px rgba(6, 182, 212, 0.28), 0 0 0 3px #06B6D4;
  z-index: 5;
}

.masonry-item .photo {
  overflow: hidden;
}

.masonry-item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.masonry-item .photo.tall { aspect-ratio: 3/4; }
.masonry-item .photo.med { aspect-ratio: 4/3; }
.masonry-item .photo.sq { aspect-ratio: 1/1; }

.masonry-item .meta {
  padding: 18px 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 30%);
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.masonry-item h3 {
  font-size: 18px;
  color: #164E63;
  margin-bottom: 4px;
}

.masonry-item .sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #0891B2;
  letter-spacing: 0.06em;
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.split-photo {
  position: sticky;
  top: 80px;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.18);
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-photo .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.split-photo .badge .num {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 32px;
  color: #06B6D4;
  line-height: 1;
}

.split-photo .badge .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #0891B2;
  letter-spacing: 0.08em;
}

.split-content h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: #164E63;
  margin-bottom: 24px;
}

.split-content p {
  color: #334155;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

.split-content strong { color: #164E63; font-weight: 700; }

.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.fact-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  background: #FFFFFF;
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(6, 182, 212, 0.1);
}

.fact-list .num {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 30px;
  color: #06B6D4;
  line-height: 1;
}

.fact-list .lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: #164E63;
  font-size: 14px;
}

.fact-list .sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #64748B;
}

.flexgrow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.advantage {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 0 14px 34px rgba(6, 182, 212, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantage:hover {
  transform: scale(1.06);
  box-shadow: 0 26px 50px rgba(6, 182, 212, 0.28), 0 0 0 3px #06B6D4;
  z-index: 5;
}

.advantage::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.advantage .num {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 48px;
  color: #06B6D4;
  line-height: 1;
}

.advantage h3 {
  font-size: 22px;
  color: #164E63;
}

.advantage p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.team-list {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-row {
  position: relative;
  background: #FFFFFF;
  border-radius: 22px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 26px rgba(6, 182, 212, 0.1);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-row:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.22), 0 0 0 3px #06B6D4;
  z-index: 5;
}

.team-row .name {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 26px;
  color: #164E63;
}

.team-row .role {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #0891B2;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

.team-row .exp {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 22px;
  color: #06B6D4;
  text-align: right;
  line-height: 1;
}

.team-row .exp span {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.team-photo {
  position: absolute;
  right: 220px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  width: 240px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s ease;
  z-index: 8;
}

.team-row:hover .team-photo {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.team-photo .pp {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.team-photo .pp img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.team-photo .pinfo strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #164E63;
  font-size: 14px;
}

.team-photo .pinfo span {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #0891B2;
}

.coverflow-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  perspective: 1400px;
}

.coverflow {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 80vw);
  background: #FFFFFF;
  border-radius: 28px;
  padding: 32px 32px 28px;
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.18);
  transition: transform 0.5s cubic-bezier(.34,1.2,.64,1), opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.cf-card.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  pointer-events: auto;
  z-index: 4;
  box-shadow: 0 30px 70px rgba(6, 182, 212, 0.3), 0 0 0 3px #06B6D4;
}

.cf-card.is-left {
  opacity: 0.55;
  transform: translate(-110%, -50%) scale(0.85) rotateY(15deg);
  z-index: 2;
}

.cf-card.is-right {
  opacity: 0.55;
  transform: translate(10%, -50%) scale(0.85) rotateY(-15deg);
  z-index: 2;
}

.cf-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #06B6D4;
  font-size: 18px;
}

.cf-quote {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 22px;
}

.cf-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #E0F2FE;
}

.cf-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.cf-author strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #164E63;
  font-size: 14px;
}

.cf-author span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #0891B2;
}

.cf-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.cf-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #06B6D4;
  border: 3px solid #06B6D4;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cf-btn:hover {
  background: #06B6D4;
  color: #FFFFFF;
  transform: scale(1.08);
}

.accordion {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: none;
}

.acc-item {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(6, 182, 212, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.acc-item.is-open {
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.22), 0 0 0 3px #06B6D4;
}

.acc-q {
  width: 100%;
  background: transparent;
  color: #164E63;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.acc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0891B2;
  display: grid;
  place-items: center;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.acc-item.is-open .acc-icon {
  background: #06B6D4;
  color: #FFFFFF;
  transform: rotate(180deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.acc-item.is-open .acc-a {
  max-height: 600px;
  padding: 0 26px 22px;
}

.acc-a p {
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.14);
}

.contact-card h2 {
  font-size: 36px;
  color: #164E63;
  margin-bottom: 10px;
}

.contact-card .lead {
  color: #475569;
  margin-bottom: 26px;
  font-size: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.field label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #0891B2;
  letter-spacing: 0.06em;
}

.field label strong { color: inherit; }

.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #BAE6FD;
  padding: 12px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  color: #164E63;
  outline: none;
  transition: border-color 0.25s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #94A3B8;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: #06B6D4;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  border: 2px solid #BAE6FD;
  border-radius: 14px;
  padding: 14px 16px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #E0F2FE;
}

.contact-info-row:last-child { border-bottom: none; }

.contact-info-row .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E0F2FE;
  color: #0891B2;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: "Dela Gothic One", sans-serif;
}

.contact-info-row .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #0891B2;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.contact-info-row strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #164E63;
  font-size: 15px;
}

.contact-info-row a {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #0891B2;
  font-size: 15px;
}

.contact-info-row a:hover { color: #06B6D4; }

.footer-shell {
  background: #06B6D4;
  color: #FFFFFF;
  border-radius: 40px 40px 0 0;
  padding: 70px 60px 32px;
  margin-left: 240px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 50px;
}

.footer-brand .mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FFFFFF;
  color: #06B6D4;
  display: grid;
  place-items: center;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 24px;
  margin-bottom: 18px;
}

.footer-brand .title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-brand .host {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #BAE6FD;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  background: #FFFFFF;
  color: #164E63;
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 20px 50px rgba(22, 78, 99, 0.25);
  z-index: 300;
  border: 2px solid #BAE6FD;
}

.cookie-banner.is-hidden { display: none; }

.cookie-banner h4 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 16px;
  color: #164E63;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn-aqua {
  padding: 12px 22px;
  font-size: 13px;
  min-width: 0;
  min-height: 44px;
}

.cookie-actions .btn-ghost {
  padding: 10px 20px;
  font-size: 13px;
  min-width: 0;
  min-height: 44px;
  border-width: 2px;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.thanks-wrap {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 100px 60px;
}

.thanks-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 56px 48px;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.18);
}

.thanks-orb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 40px;
  margin: 0 auto 26px;
  box-shadow: 0 14px 34px rgba(6, 182, 212, 0.4);
}

.thanks-card h1 {
  font-size: 42px;
  color: #164E63;
  margin-bottom: 16px;
}

.thanks-card p {
  color: #475569;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.75;
}

.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 56px 50px;
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.12);
}

.legal-shell h1 {
  font-size: 42px;
  color: #164E63;
  margin-bottom: 12px;
}

.legal-shell .updated {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #0891B2;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
  display: block;
}

.legal-shell h2 {
  font-size: 24px;
  color: #164E63;
  margin: 30px 0 12px;
}

.legal-shell p, .legal-shell li {
  color: #475569;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-shell ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.mini-hero {
  padding: 100px 60px 60px;
  background: linear-gradient(160deg, rgba(6, 182, 212, 0.15) 0%, rgba(186, 230, 253, 0.4) 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 50px;
}

.mini-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.mini-hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  color: #164E63;
  margin-bottom: 14px;
}

.mini-hero h1 em {
  font-style: normal;
  color: #06B6D4;
}

.mini-hero .crumb {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #0891B2;
  letter-spacing: 0.08em;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.mini-hero .crumb a {
  color: #0891B2;
}

.mini-hero .crumb a:hover { color: #06B6D4; }

.cta-strip {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #FFFFFF;
  border-radius: 32px;
  padding: 50px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1280px;
  margin: 80px auto 0;
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.25);
}

.cta-strip h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.cta-strip .actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cta-strip .btn-ghost {
  background: #FFFFFF;
  color: #06B6D4;
  border-color: #FFFFFF;
}

.cta-strip .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.text-white { color: #FFFFFF; }
.bg-cyan { background: #06B6D4; color: #FFFFFF; }
.text-dark-cyan { color: #164E63; }
.bg-white-soft { background: rgba(255, 255, 255, 0.9); }

@media (max-width: 1100px) {
  .floating-rail { display: none; }
  .mobile-bar { display: flex; }
  .page-wrap { margin-left: 0; }
  .footer-shell { margin-left: 0; }
  .kinetic-bg { padding: 120px 30px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 70px 30px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .cards-stack { grid-template-columns: 1fr 1fr; }
  .flexgrow-grid { grid-template-columns: 1fr 1fr; }
  .split-screen { grid-template-columns: 1fr; gap: 30px; }
  .split-photo { position: relative; top: 0; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { column-count: 2; }
  .cta-strip { grid-template-columns: 1fr; padding: 40px 32px; }
  .cta-strip .actions { justify-content: flex-start; }
  .thanks-wrap { padding: 120px 24px 60px; }
  .mini-hero { padding: 90px 30px 40px; }
  .legal-shell { padding: 40px 28px; }
  .team-photo { display: none; }
}

@media (max-width: 720px) {
  .kinetic-bg { padding: 110px 22px 50px; }
  .kinetic-row { font-size: 110px; }
  .section { padding: 60px 22px; }
  .cards-stack { grid-template-columns: 1fr; }
  .flexgrow-grid { grid-template-columns: 1fr; }
  .masonry-grid { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-shell { padding: 60px 24px 28px; }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px; }
  .coverflow-wrap { overflow: hidden; }
  .coverflow { height: 540px; }
  .cf-card { width: min(320px, 88vw); padding: 24px 22px 22px; }
  .cf-card.is-left { transform: translate(-95%, -50%) scale(0.8) rotateY(10deg); }
  .cf-card.is-right { transform: translate(-5%, -50%) scale(0.8) rotateY(-10deg); }
  .flow-step { flex: 0 0 280px; }
  .contact-card { padding: 28px 22px; }
  .team-row { grid-template-columns: 1fr; padding: 20px; }
  .team-row .exp { text-align: left; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .legal-shell { padding: 32px 22px; }
  .legal-shell h1 { font-size: 32px; }
  .btn-aqua, .btn-ghost { min-width: 140px; padding: 12px 20px; font-size: 13px; }
}
