:root {
  --navy: #16243A;
  --navy-deep: #0F1A2B;
  --orange: #EA5B0C;
  --orange-bright: #F2741F;
  --text: #F5F7FA;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  /* predominantly navy field; orange diagonal lives in the corner accents below */
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}

/* decorative orange diagonal accents echoing the business card's navy/orange
   split, anchored in the corners so they never sit under .hero__content */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
/* bottom-right wedge: outer ~30% corner */
.hero::after {
  right: 0;
  bottom: 0;
  width: 32vw;
  height: 32vw;
  max-width: 360px;
  max-height: 360px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
/* smaller top-left accent */
.hero::before {
  left: 0;
  top: 0;
  width: 18vw;
  height: 18vw;
  max-width: 200px;
  max-height: 200px;
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 90vw);
  text-align: center;
  animation: fadein 0.8s ease-out both;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.brand__logo { width: 56px; height: 56px; flex: none; }
.brand__name {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.slogan {
  color: var(--orange-bright);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: clamp(0.8rem, 2.5vw, 1.05rem);
  margin-bottom: 0;
}

/* mobile: drop the diagonal for a clean solid navy */
@media (max-width: 600px) {
  .hero { background: var(--navy); padding: 1.25rem; }
  .hero::before, .hero::after { display: none; }
  .brand { gap: 0.6rem; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: clamp(1.4rem, 7vw, 1.9rem); letter-spacing: 0.03em; }
}
