:root {
  --ink: #1d1d1b;
  --ink-2: #343434;
  --muted: #647385;
  --line: rgba(29, 29, 27, 0.12);
  --soft: #f4f7fb;
  --soft-2: #fff1f6;
  --white: #ffffff;
  --primary: #c4014b;
  --primary-dark: #8e0036;
  --accent: #ffb84d;
  --warm: #ffb84d;
  --dark: #1d1d1b;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(16, 32, 50, 0.13);
  --shadow-card: 0 18px 46px rgba(16, 32, 50, 0.1);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

p, h1, h2, h3 { margin-top: 0; }

p { color: var(--muted); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  z-index: 1000;
  background: var(--dark);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 32px rgba(16, 32, 50, 0.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; }
.brand-logo {
  display: block;
  width: clamp(156px, 15vw, 196px);
  height: auto;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 34px rgba(196, 1, 75, 0.25);
  letter-spacing: -0.05em;
}

.brand-name { font-size: 1.14rem; letter-spacing: -0.02em; }

.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 720; color: #343434; }
.site-nav a { transition: color 0.16s ease, transform 0.16s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--primary); }

.nav-cta {
  color: var(--white) !important;
  background: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(16, 32, 50, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 5% 3%, rgba(255, 184, 77, 0.18), transparent 34rem),
    radial-gradient(circle at 95% 20%, rgba(196, 1, 75, 0.14), transparent 28rem),
    linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.orb { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(1px); }
.orb-one { width: 240px; height: 240px; right: 8%; top: 18%; background: rgba(255, 184, 77, 0.22); }
.orb-two { width: 320px; height: 320px; right: -120px; bottom: -160px; background: rgba(196, 1, 75, 0.14); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--accent); }

h1, h2, h3 { color: var(--ink); letter-spacing: -0.045em; line-height: 1.05; }

.hero h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7.2vw, 6.7rem);
  letter-spacing: -0.08em;
  line-height: 0.94;
}

.hero-text { max-width: 710px; margin-bottom: 34px; font-size: clamp(1.08rem, 2vw, 1.28rem); color: #3f5065; }

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 18px 38px rgba(196, 1, 75, 0.24); }
.button-ghost { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.72); color: var(--ink); }
.button-light { background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.18); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  color: var(--muted);
}
.hero-proof span { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; box-shadow: 0 10px 24px rgba(16, 32, 50, 0.05); }
.hero-proof strong { color: var(--ink); }

.hero-visual { position: relative; min-height: 540px; }
.hero-visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18px 30px 30px -18px;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 184, 77, 0.20), rgba(196, 1, 75, 0.14));
}

.floating-panel {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(16, 32, 50, 0.16);
}
.panel-main { left: -32px; bottom: 36px; width: min(320px, 78%); padding: 22px; border-radius: 24px; }
.panel-main strong { display: block; margin-top: 6px; font-size: 1.22rem; line-height: 1.18; letter-spacing: -0.03em; }
.panel-label { color: var(--primary); font-weight: 900; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.panel-mini { right: -16px; top: 34px; display: grid; gap: 8px; padding: 16px; border-radius: 20px; font-weight: 820; color: var(--ink-2); }
.panel-mini span { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--soft); }

.strip { border-block: 1px solid var(--line); background: var(--white); }
.strip-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-around; gap: 18px; flex-wrap: wrap; font-weight: 900; color: var(--ink-2); }
.strip-inner span { position: relative; padding-left: 18px; }
.strip-inner span::before { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; transform: translateY(-50%); border-radius: 999px; background: var(--accent); }

.section { padding: 96px 0; }
.split { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
.split h2, .feature-card h2, .section-heading h2, .cta-card h2, .contact-grid h2 { font-size: clamp(2.35rem, 5vw, 4.6rem); margin-bottom: 18px; }
.content-block { font-size: 1.12rem; }
.content-block p:last-child { margin-bottom: 0; }

.image-feature { background: var(--soft); }
.feature-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: 26px; align-items: stretch; }
.feature-card {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(12, 25, 40, 0.05) 0%, rgba(12, 25, 40, 0.86) 100%),
    url("assets/workspace-detail.webp") center / cover;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.feature-card h2, .feature-card p, .feature-kicker { color: var(--white); }
.feature-kicker { display: inline-flex; width: fit-content; margin-bottom: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.78rem; padding: 8px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.14); }
.feature-card p { max-width: 540px; opacity: 0.86; }

.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.benefit-grid article {
  min-height: 245px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(16, 32, 50, 0.06);
}
.icon { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 32px; border-radius: 16px; color: var(--primary); background: var(--soft-2); font-weight: 900; }
.benefit-grid h3 { margin-bottom: 10px; font-size: 1.45rem; }
.benefit-grid p { margin-bottom: 0; }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { font-size: 1.08rem; }
.section-heading.light h2, .section-heading.light p, .whw-section .eyebrow { color: var(--white); }
.section-heading.light .eyebrow::before { background: var(--warm); }

.labels-section { background: var(--white); }
.label-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.label-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 32, 50, 0.08);
}
.label-card-large { grid-column: span 1; }
.label-image { height: 238px; overflow: hidden; background: var(--soft); }
.label-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.label-card:hover .label-image img { transform: scale(1.045); }
.label-content { padding: 28px; }
.label-number { display: inline-flex; color: var(--primary); font-weight: 950; letter-spacing: 0.08em; margin-bottom: 14px; }
.label-card h3 { margin-bottom: 8px; font-size: clamp(1.65rem, 3vw, 2.2rem); }
.label-subtitle { color: var(--ink); font-weight: 850; margin-bottom: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--primary); font-weight: 900; }
.text-link::after { content: "→"; transition: transform 0.16s ease; }
.text-link:hover::after, .text-link:focus-visible::after { transform: translateX(3px); }

.whw-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 184, 77, 0.25), transparent 28rem),
    radial-gradient(circle at 0% 100%, rgba(196, 1, 75, 0.22), transparent 32rem),
    var(--dark);
}
.whw-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.whw-card { padding: 30px; border-radius: 28px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.13); backdrop-filter: blur(16px); }
.whw-card span { display: inline-flex; margin-bottom: 36px; color: var(--warm); font-weight: 950; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; }
.whw-card h3 { color: var(--white); margin-bottom: 14px; font-size: 1.65rem; }
.whw-card p { color: rgba(255, 255, 255, 0.78); margin-bottom: 0; }

.values-section { background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%); }
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.values-grid article { padding: 26px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(16, 32, 50, 0.06); }
.values-grid h3 { margin-bottom: 10px; font-size: 1.42rem; }
.values-grid p { margin-bottom: 0; }

.cta-section { padding-top: 72px; background: #fff8fb; }
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 48px;
  border-radius: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 1, 75, 0.28), transparent 20rem),
    linear-gradient(135deg, #1d1d1b 0%, #5b0025 100%);
  box-shadow: var(--shadow-soft);
}
.cta-card h2, .cta-card p, .cta-card .eyebrow { color: var(--white); }
.cta-card p { max-width: 650px; opacity: 0.8; margin-bottom: 0; }
.cta-card .eyebrow::before { background: var(--warm); }
.cta-actions { justify-content: flex-end; min-width: 320px; }

.contact-section { background: #fff8fb; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 0.5fr); gap: 46px; align-items: center; }
.contact-grid p { max-width: 610px; }
.contact-card { padding: 34px; border-radius: 30px; background: var(--white); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.contact-card h3 { margin-bottom: 18px; font-size: 1.8rem; }
.contact-card address { margin-bottom: 22px; color: var(--muted); font-style: normal; }
.contact-card a { display: block; color: var(--primary); font-weight: 900; margin-top: 10px; }

.site-footer { padding: 60px 0 28px; color: rgba(255,255,255,0.76); background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.55fr 0.55fr; gap: 44px; align-items: start; }
.footer-brand { width: fit-content; margin-bottom: 18px; padding: 12px 16px; color: var(--ink); background: var(--white); border-radius: 18px; }
.site-footer p { color: rgba(255,255,255,0.68); max-width: 520px; }
.site-footer h3 { margin-bottom: 14px; color: var(--white); font-size: 1.05rem; letter-spacing: -0.02em; }
.site-footer a:not(.brand) { display: block; margin: 9px 0; color: rgba(255,255,255,0.74); }
.site-footer a:not(.brand):hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.95rem; }

@media (max-width: 1040px) {
  .hero-grid, .feature-grid, .split, .cta-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-visual img { height: min(560px, 68vw); }
  .panel-main { left: 24px; }
  .panel-mini { right: 24px; }
  .label-grid, .whw-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-actions { justify-content: flex-start; min-width: 0; }
}

@media (max-width: 790px) {
  .container { width: min(100% - 32px, var(--container)); }
  .header-inner { min-height: 68px; }
  .brand-logo { width: 154px; }
  .menu-toggle { display: block; position: relative; z-index: 70; }
  .site-nav {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 12px 14px; border-radius: 14px; }
  .nav-cta { text-align: center; }
  .hero { padding: 58px 0 56px; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 4.6rem); }
  .hero-actions, .cta-actions { align-items: stretch; }
  .button { width: 100%; }
  .hero-visual img { height: 430px; border-radius: 28px; }
  .floating-panel { position: static; margin-top: 14px; width: 100%; }
  .panel-mini { display: flex; flex-wrap: wrap; }
  .strip-inner { justify-content: flex-start; padding: 20px 0; }
  .section { padding: 70px 0; }
  .feature-card { min-height: 430px; padding: 26px; border-radius: 28px; }
  .benefit-grid, .label-grid, .whw-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
  .label-image { height: 220px; }
  .cta-card { padding: 30px; border-radius: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .hero-visual img { height: 340px; }
  .hero-proof span { width: 100%; }
  .benefit-grid article { min-height: auto; }
  .contact-card, .label-content { padding: 24px; }
}
