/* TRIGGER — yapım aşaması (landing) */

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #888888;
  --accent: #ff4500;
  --line-soft: rgba(255, 255, 255, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

/* Hero foto — assets/img/case-mcy-hero.png */
.scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.scene__photo {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image: url("assets/img/case-mcy-hero.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.scene__veil-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 28%,
    rgba(0, 0, 0, 0.92) 46%,
    rgba(0, 0, 0, 0.55) 62%,
    rgba(0, 0, 0, 0.15) 78%,
    transparent 94%
  );
}

.scene__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 82% 50%,
    transparent 42%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 5vw, 72px) clamp(28px, 3vw, 48px);
}

.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(72px, 12vh, 120px);
}

.brand-logo {
  line-height: 0;
}

.brand-logo__img {
  height: clamp(42px, 5.5vw, 58px);
  width: auto;
  max-width: min(280px, 55vw);
  object-fit: contain;
  display: block;
}

.badge-exclusive {
  font-size: clamp(10px, 1.05vw, 12px);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.95;
  white-space: nowrap;
  align-self: center;
}

.core {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: min(760px, 92vw);
}

.hero-title {
  margin: 0;
  padding: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(92px, 18vw, 188px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-title__line {
  display: block;
}

.hero-title__line--with-dot {
  white-space: nowrap;
}

.hero-title .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 0.06em;
  background: var(--accent);
  vertical-align: 0.12em;
}

@media (min-width: 900px) {
  .hero-title .dot {
    width: 13px;
    height: 13px;
    margin-left: 0.08em;
    vertical-align: 0.1em;
  }
}

.hero-line {
  display: block;
  width: 52px;
  height: 2px;
  background: var(--accent);
  margin: clamp(20px, 3vh, 32px) 0 clamp(28px, 4vh, 40px);
}

.hero-sub {
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-sub strong {
  font-weight: 600;
}

/* Footer strip */
.sheet {
  margin-top: clamp(48px, 10vh, 96px);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(24px, 3.5vw, 36px);
}

.sheet__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1.35fr) minmax(0, 1.2fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.mark-t {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark-t span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1;
}

.col-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 28px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.social-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.sheet__rule {
  margin-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(16px, 2vw, 20px);
}

.legal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .badge-exclusive {
    display: none;
  }

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

@media (max-width: 640px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: clamp(48px, 10vh, 80px);
  }

  .badge-exclusive {
    display: block;
    align-self: flex-start;
    margin-top: -8px;
  }

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

  .legal-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
