/* Wincorp static site */

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

:root {
  --white: #ffffff;
  --paper: #f7f8fb;
  --paper-strong: #eef2f7;
  --ink: #16171b;
  --muted: #5f6673;
  --subtle: #8b93a1;
  --line: rgba(22, 23, 27, 0.1);
  --line-strong: rgba(22, 23, 27, 0.16);
  --indigo: #6457f5;
  --magenta: #e7358b;
  --teal: #0f9f9a;
  --amber: #d7891f;
  --accent-gradient: linear-gradient(135deg, #6457f5 0%, #d93ea5 52%, #ff6948 100%);
  --shadow: 0 18px 60px rgba(24, 31, 45, 0.12);
  --radius: 8px;
  --max-width: 1180px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  color: var(--muted);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.gradient-text {
  color: transparent;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(24, 31, 45, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(24, 31, 45, 0.16);
}

.btn-primary {
  color: var(--white);
  background: var(--accent-gradient);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
}

.navbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  font-size: 1.45rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
}

.is-hidden {
  display: none !important;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 88px;
  background:
    linear-gradient(180deg, #f4f5ff 0%, #ffffff 76%),
    linear-gradient(90deg, rgba(15, 159, 154, 0.08), rgba(215, 137, 31, 0.08));
  text-align: center;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
}

.hero .subtitle {
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-copy-stack {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin: 28px auto 0;
}

.hero-copy-stack p {
  color: #414755;
  font-size: 1.2rem;
  font-weight: 650;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-image,
.wide-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-image {
  max-width: 960px;
  margin: 58px auto 0;
}

.hero-image img {
  width: 100%;
}

.page-hero {
  padding-bottom: 74px;
}

.page-hero .subtitle {
  max-width: 760px;
}

.partner-hero {
  padding-bottom: 58px;
}

.contact-hero {
  padding-bottom: 54px;
}

.section {
  padding: 96px 0;
}

.contact-section {
  padding-top: 68px;
}

.section-alt {
  background: var(--paper);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.capability-card,
.production-card,
.industry-card,
.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 31, 45, 0.05);
}

.capability-card {
  min-height: 310px;
  padding: 30px;
}

.capability-card p {
  margin-top: 14px;
  font-size: 0.96rem;
}

.business-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 159, 154, 0.12), rgba(100, 87, 245, 0.12));
}

.business-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--ink);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.production-card {
  overflow: hidden;
}

.production-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--paper);
}

.production-card-body {
  padding: 26px;
}

.production-card-body p {
  margin-top: 12px;
}

.cta-banner {
  padding: 86px 0;
  color: var(--white);
  background: linear-gradient(120deg, #342f86 0%, #9a2fa8 46%, #d9476d 100%);
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-banner p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.industry-stack,
.feature-stack,
.partner-stack {
  display: grid;
  gap: 28px;
}

.industry-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  min-width: 0;
}

.industry-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.industry-card:nth-child(even) .industry-media {
  order: 2;
}

.industry-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: var(--paper-strong);
}

.industry-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 44px;
  min-width: 0;
}

.industry-copy p {
  margin-top: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--teal);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.feature-panel:last-child {
  border-bottom: none;
}

.feature-number {
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-panel h2 {
  margin-top: 12px;
}

.feature-panel p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.feature-visual {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 159, 154, 0.08), rgba(215, 137, 31, 0.08)),
    var(--paper);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-list {
  margin-top: 20px;
}

.partner-card {
  padding: 42px;
}

.partner-card p {
  margin-top: 14px;
}

.partner-intro-section {
  padding-top: 72px;
}

.partner-intro-card,
.partner-value-card {
  max-width: 980px;
  margin: 0 auto;
}

.partner-intro-card {
  padding: 52px;
  background:
    linear-gradient(135deg, rgba(15, 159, 154, 0.08), rgba(215, 137, 31, 0.07)),
    var(--white);
}

.partner-intro-card p,
.partner-value-card .check-list {
  max-width: 820px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.partner-section {
  padding: 84px 0;
}

.partner-section.section-alt {
  background: var(--paper);
}

.partner-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.partner-contact-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 31, 45, 0.05);
}

.partner-contact-card p {
  margin-top: 14px;
}

.contact-lines {
  display: grid;
  gap: 14px;
  color: var(--ink);
  font-weight: 700;
}

.contact-lines span {
  color: var(--muted);
  font-weight: 500;
}

.story-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.story-text p {
  margin-top: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  min-height: 220px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-card p {
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-info-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  margin-bottom: 16px;
}

.contact-intro {
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item + .info-item {
  margin-top: 22px;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  flex: 0 0 auto;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-item a {
  color: var(--ink);
  font-weight: 750;
}

.contact-response {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer {
  padding: 58px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background: #101217;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 38px;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.footer-col a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .business-grid,
  .production-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .hero {
    padding: 124px 0 64px;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.12rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero .subtitle,
  .hero-copy-stack p {
    font-size: 1rem;
  }

  .business-grid,
  .production-grid,
  .partner-grid,
  .partner-contact-panel,
  .values-grid,
  .story-content {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .industry-card:nth-child(even),
  .feature-panel {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .industry-card:nth-child(even) .industry-media {
    order: 0;
  }

  .industry-copy {
    min-height: auto;
    padding: 32px;
  }

  .industry-media img {
    min-height: 240px;
  }

  .cta-banner .container {
    display: block;
  }

  .cta-banner .btn {
    margin-top: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .business-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .partner-card,
  .contact-info-card {
    padding: 28px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
