:root {
  --bg: #07111f;
  --bg-2: #0d1a2d;
  --ink: #0f172a;
  --muted: #5f6b7a;
  --line: #e4e8ef;
  --white: #ffffff;
  --light: #f5f8fb;
  --cyan: #67d7f7;
  --cyan-2: #b9f1ff;
  --green: #7ef0b2;
  --green-2: #d9ffe9;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius: 28px;
  --font-ja: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: "Inter", "Noto Sans JP", sans-serif;
  --container-max: clamp(1080px, 86vw, 1480px);
  --container-gutter: clamp(16px, 3vw, 56px);
  --section-y: clamp(72px, 7vw, 112px);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  background: var(--bg);
  line-height: 1.75;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}

.container {
  width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
}
.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  z-index: 9999;
  top: 10px;
  left: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.1);
}
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: clamp(190px, 20vw, 310px);
}
.brand-logo {
  width: clamp(190px, 20vw, 310px);
  height: auto;
  object-fit: contain;
}
.brand-mark {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 12px 24px rgba(103, 215, 247, 0.18));
}
.brand-name {
  display: block;
  font-family: var(--font-en);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.1;
}
.brand-plus {
  position: relative;
  display: inline-block;
  padding-left: 0.01em;
}
.brand-plus::after {
  content: "";
  position: absolute;
  left: 49%;
  top: 50%;
  width: 0.55em;
  height: 0.095em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: translate(-50%, -52%);
  opacity: 0.85;
  pointer-events: none;
}
.brand-sub {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.2;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(15, 23, 42, 0.72);
  font-size: 14px;
  white-space: nowrap;
}
.global-nav a,
.site-footer a {
  transition: color 0.2s ease;
}
.global-nav a:hover {
  color: var(--ink);
}
.site-footer a:hover {
  color: var(--white);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.header-cta:hover {
  transform: translateY(-1px);
  background: #10223a;
}
.nav-toggle {
  display: none;
}

.section-dark {
  color: var(--white);
  background: var(--bg);
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}
.hero-bg::before {
  width: 420px;
  height: 420px;
  left: -110px;
  top: 110px;
  background: rgba(103, 215, 247, 0.22);
}
.hero-bg::after {
  width: 600px;
  height: 600px;
  right: -150px;
  top: -100px;
  background: rgba(126, 240, 178, 0.13);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: center;
  min-height: clamp(640px, 72vh, 820px);
  padding-block: clamp(72px, 8vw, 112px) clamp(56px, 6vw, 88px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 9px 14px;
  border: 1px solid rgba(103, 215, 247, 0.25);
  border-radius: 999px;
  background: rgba(103, 215, 247, 0.1);
  color: #d7fbff;
  font-size: 14px;
  font-weight: 600;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(126, 240, 178, 0.12);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--cyan-2), #fff, var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 2;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: var(--bg);
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 18px 42px rgba(103, 215, 247, 0.2);
}
.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.dashboard-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}
.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(103, 215, 247, 0.28),
    transparent 40%,
    rgba(126, 240, 178, 0.18)
  );
  opacity: 0.8;
}
.dash-top,
.dash-list,
.dash-metrics {
  border-radius: 26px;
  background: rgba(9, 18, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dash-logo-panel {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.dash-logo-panel img {
  width: min(100%, 390px);
  height: auto;
}
.dash-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.dash-top p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}
.dash-top h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.dash-list {
  display: grid;
  gap: 12px;
  padding: 18px 24px 24px;
  border-top: 0;
  border-radius: 0;
}
.dash-row {
  padding: 16px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-row div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
  font-size: 14px;
}
.dash-row strong {
  color: var(--cyan-2);
  font-size: 12px;
}
.dash-row i {
  display: block;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}
.dash-row i::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}
.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 24px 24px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dash-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(103, 215, 247, 0.08);
}
.dash-metrics div + div {
  background: rgba(126, 240, 178, 0.08);
}
.dash-metrics strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
}
.dash-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}
.proof-bar {
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-block: 22px;
}
.proof-grid div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}
.proof-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--font-en);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}
.proof-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 20px;
}

.section {
  padding-block: var(--section-y);
}
.section-light {
  background: var(--light);
}
.section-white {
  background: var(--white);
}
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: #277188;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.section-label.dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cyan-2);
}
.split-heading {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(38px, 5vw, 78px);
  align-items: start;
}
.section h2,
.strength-section h2,
.contact-section h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.section p {
  color: var(--muted);
  font-size: 17px;
}
.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 19px;
  background: var(--bg);
  color: var(--cyan-2);
  font-size: 24px;
}
.card h3,
.solution-card h3,
.process-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.45;
}
.card p,
.solution-card p,
.process-card p {
  margin-bottom: 0;
  font-size: 15.5px;
  line-height: 1.9;
}
.section-head {
  max-width: 770px;
  margin-bottom: 44px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.solution-card {
  position: relative;
  padding: 30px;
  min-height: 232px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fbff, #fff);
  overflow: hidden;
}
.solution-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(103, 215, 247, 0.18), rgba(126, 240, 178, 0.16));
}
.solution-card span,
.process-card span {
  display: block;
  margin-bottom: 22px;
  color: #1786a0;
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: 0.09em;
}
.strength-section {
  padding-block: var(--section-y);
}
.strength-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 88px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.check-item span {
  color: var(--cyan);
  font-weight: 900;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}
.siteplan-panel,
.company-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 36px;
  background: #f7fafc;
  border: 1px solid var(--line);
}
.siteplan-list {
  display: grid;
  gap: 12px;
}
.siteplan-list div {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}
.siteplan-list strong,
.siteplan-list span {
  display: block;
}
.siteplan-list strong {
  margin-bottom: 5px;
}
.siteplan-list span {
  color: var(--muted);
  font-size: 14px;
}
.company-panel {
  background: var(--white);
  box-shadow: var(--shadow);
}
.company-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}
.company-list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--light);
}
.company-list dt {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.company-list dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.75;
}
.company-list a {
  color: #137c95;
}
.company-phone {
  font-family: var(--font-en);
}

/* Solutions number refinement */
#solutions .solution-card span {
  margin-bottom: 18px;
  color: #137c95;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
}

/* Project Approach number refinement */
#process .process-card span {
  margin-bottom: 18px;
  color: #137c95;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.map-link {
  display: inline-block;
  margin-top: 6px;
  color: #137c95;
  font-size: 13px;
  font-weight: 700;
}

.map-link:hover {
  text-decoration: underline;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(103, 215, 247, 0.2), transparent 34%),
    radial-gradient(circle at 90% 15%, rgba(126, 240, 178, 0.13), transparent 38%), var(--bg);
}
.contact-inner {
  max-width: 850px;
  text-align: center;
}
.contact-inner p {
  max-width: 720px;
  margin-inline: auto;
}
.contact-actions {
  justify-content: center;
  margin-top: 32px;
}

.contact-form-panel {
  max-width: 860px;
  margin: 34px auto 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  text-align: left;
}
.lead-form {
  display: grid;
  gap: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}
.form-field span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-field b {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(103, 215, 247, 0.14);
  color: var(--cyan-2);
  font-size: 11px;
  line-height: 1.45;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form-field input {
  min-height: 52px;
  padding: 0 16px;
}
.form-field textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(103, 215, 247, 0.18);
}
.form-full {
  grid-column: 1 / -1;
}
.lead-form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}
.lead-form-actions .btn {
  border: 0;
  cursor: pointer;
}
.phone-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.company-phone {
  color: #137c95;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050c16;
  color: rgba(255, 255, 255, 0.58);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  font-size: 14px;
}
.footer-inner p {
  margin: 0;
}
.footer-inner nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}

@media (min-width: 1600px) {
  :root {
    --container-max: 1560px;
    --container-gutter: 64px;
  }
  .service-grid,
  .solution-grid {
    gap: 22px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  :root {
    --container-max: 1180px;
    --container-gutter: 40px;
  }
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--ink);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    border-radius: 2px;
    background: currentColor;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .global-nav {
    position: absolute;
    inset: 78px 20px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.96);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    transform-origin: top right;
    transform: scale(0.98) translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }
  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }
  .global-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }
  .global-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
  }
  .hero-grid,
  .split-heading,
  .strength-grid,
  .siteplan-panel,
  .company-panel {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: auto;
    padding-block: 72px 56px;
  }
  .dashboard-card {
    max-width: 620px;
  }
  .proof-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --container-gutter: 14px;
    --section-y: 72px;
  }
  .header-inner {
    height: 72px;
  }
  .brand {
    min-width: auto;
  }
  .brand-sub {
    display: none;
  }
  .brand-name {
    font-size: 13px;
    letter-spacing: 0.13em;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .global-nav {
    inset: 72px 14px auto;
  }
  .eyebrow {
    align-items: flex-start;
    border-radius: 18px;
    font-size: 12.5px;
  }
  .hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions,
  .contact-actions,
  .lead-form-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-card {
    padding: 14px;
    border-radius: 28px;
  }
  .dash-top,
  .dash-list,
  .dash-metrics {
    padding-inline: 16px;
  }
  .dash-logo-panel {
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  }
  .dash-logo-panel img {
    width: min(100%, 390px);
    height: auto;
  }
  .dash-top {
    flex-direction: column;
  }
  .dash-metrics {
    grid-template-columns: 1fr;
  }
  .proof-grid,
  .service-grid,
  .solution-grid,
  .check-grid,
  .process-grid,
  .company-list {
    grid-template-columns: 1fr;
  }
  .section {
    padding-block: 72px;
  }
  .strength-section,
  .contact-section {
    padding-block: 72px;
  }
  .siteplan-panel,
  .company-panel {
    padding: 28px;
    border-radius: 28px;
  }
  .company-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 960px) {
  #process .section-head h2 {
    white-space: nowrap;
  }
}
@media (max-width: 520px) {
  .brand-logo {
    width: 180px;
  }
}

/* Premium first-view refinement */
.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero-keywords span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}
.hero-logo-panel {
  padding: 22px 24px;
  background: linear-gradient(180deg, #fff, #f7fafc);
}
.hero-logo-panel img {
  width: min(100%, 440px);
  margin-inline: auto;
}
.architecture-map {
  position: relative;
  min-height: 270px;
  margin-bottom: 18px;
  border: 1px solid rgba(185, 241, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(103, 215, 247, 0.28), transparent 33%),
    radial-gradient(circle at 88% 18%, rgba(126, 240, 178, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 18, 31, 0.98), rgba(7, 17, 31, 0.94));
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}
.architecture-map::before,
.architecture-map::after {
  content: "";
  position: absolute;
  inset: 42px 54px;
  border: 2px solid rgba(185, 241, 255, 0.36);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.architecture-map::after {
  inset: 68px 96px;
  border-color: rgba(126, 240, 178, 0.28);
  transform: rotate(18deg);
}
.arch-center {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 148px;
  height: 116px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.065));
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(103, 215, 247, 0.18);
}
.arch-node {
  position: absolute;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.115);
  border: 1px solid rgba(185, 241, 255, 0.3);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.node-1 {
  left: 46px;
  top: 58px;
}
.node-2 {
  right: 50px;
  top: 50px;
}
.node-3 {
  left: 56px;
  bottom: 48px;
}
.node-4 {
  right: 58px;
  bottom: 48px;
}
.node-5 {
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
}
.premium-dash-top {
  border-radius: 26px 26px 0 0;
}
.premium-dash-top h2 {
  font-size: clamp(20px, 2vw, 25px);
}
.premium-metrics {
  border-radius: 0 0 26px 26px;
}
.nowrap-lg {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nowrap-lg {
    white-space: normal;
  }
  .architecture-map {
    min-height: 238px;
  }
  .arch-node {
    font-size: 12px;
    padding: 8px 12px;
  }
}
@media (max-width: 640px) {
  .hero-keywords {
    gap: 8px;
    font-size: 11px;
  }
  .hero-keywords span {
    padding: 6px 9px;
  }
  .architecture-map {
    min-height: 230px;
  }
  .architecture-map::before {
    inset: 48px 18px;
  }
  .architecture-map::after {
    inset: 74px 34px;
  }
  .arch-center {
    width: 122px;
    height: 96px;
    border-radius: 26px;
    font-size: 15px;
  }
  .arch-node {
    font-size: 11px;
    padding: 7px 9px;
  }
  .node-1 {
    left: 14px;
    top: 42px;
  }
  .node-2 {
    right: 14px;
    top: 42px;
  }
  .node-3 {
    left: 18px;
    bottom: 36px;
  }
  .node-4 {
    right: 18px;
    bottom: 36px;
  }
  .node-5 {
    top: 14px;
  }
}

.no-break-desktop {
  white-space: nowrap;
}
.hero h1 .hero-line {
  display: block;
}
@media (max-width: 900px) {
  .no-break-desktop {
    white-space: normal;
  }
}

/* Final polish */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(103, 215, 247, 0.55);
  outline-offset: 3px;
}

.solution-card,
.process-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.solution-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(19, 124, 149, 0.22);
}

.architecture-map {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 18px 50px rgba(0, 0, 0, 0.18);
}

.proof-grid strong,
.dash-metrics strong {
  letter-spacing: -0.02em;
}

.contact-form-panel {
  border-color: rgba(185, 241, 255, 0.18);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-block: clamp(56px, 8vw, 100px);
  background:
    radial-gradient(circle at 20% 20%, rgba(103, 215, 247, 0.2), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(126, 240, 178, 0.14), transparent 38%), var(--bg);
}
.thanks-card {
  max-width: 760px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  text-align: center;
}
.thanks-logo {
  width: min(100%, 360px);
  margin: 0 auto 28px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
}
.thanks-card h1 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.thanks-card p:not(.section-label) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 2;
}

@media (max-width: 720px) {
  .solution-card:hover,
  .process-card:hover,
  .card:hover {
    transform: none;
  }
  .thanks-card {
    border-radius: 28px;
  }
}

/* Salesforce Partnership section */
.partnership-section {
  background: var(--white);
}

.partnership-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #f7fafc;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.partnership-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.partnership-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.partnership-list {
  display: grid;
  gap: 12px;
}

.partnership-list article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(228, 232, 239, 0.9);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.partnership-list span {
  color: #137c95;
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.partnership-list p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .partnership-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .partnership-panel {
    padding: 28px;
    border-radius: 28px;
  }

  .partnership-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* TOP right visual spacing refinement */
@media (min-width: 981px) {
  .dashboard-card {
    padding: 18px !important;
  }

  .dash-logo-panel.hero-logo-panel {
    margin-bottom: 16px !important;
    padding: 14px 18px !important;
    border-radius: 20px !important;
  }

  .hero-logo-panel img {
    width: min(100%, 420px) !important;
    max-height: 112px;
    object-fit: contain;
  }

  .architecture-map {
    margin-bottom: 16px !important;
  }

  .dash-metrics {
    padding-bottom: 18px !important;
  }
}

@media (max-width: 980px) {
  .dashboard-card {
    padding: 18px !important;
  }

  .dash-logo-panel.hero-logo-panel {
    padding: 14px 16px !important;
  }
}

/* Company contact inline tel/fax */
.company-contact-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
  color: #137c95;
  font-family: var(--font-en);
}

.company-contact-separator {
  color: rgba(19, 124, 149, 0.45);
}

.company-phone,
.company-fax {
  color: #137c95;
  font-family: var(--font-en);
}
