:root {
  /* Brand */
  --fox-orange: #B45628;
  --fox-orange-hover: #AF7551;

  /* Neutrals */
  --ink: #000000;
  --white: #FFFFFF;
  --cloud: #E6E7E8;
  --gray: #6D6E70;

  /* Backgrounds */
  --bg-primary: #EFDBBB;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;

  /* Text */
  --text-primary: #5E4E41;
  --text-secondary: #3C4242;
  --text-muted: #6D6E70;

  /* Links */
  --link: #B45628;
  --link-hover: #3C4242;

  /* Buttons */
  --button-bg: #B45628;
  --button-bg-hover: #3C4242;

  /* Borders */
  --border-light: rgba(0, 0, 0, 0.12); /* ≈ #00000030 */
  --border-default: rgba(0, 0, 0, 0.18);

  /* Shadows */
  --shadow-soft: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.08);

  /* Inputs */
  --input-bg: rgba(0, 0, 0, 0.05);        /* ≈ #0000000D */
  --input-bg-hover: #E6E6E6;
  --input-text: #000000;
  --input-border: transparent;
  --input-border-focus: rgba(0, 0, 0, 0.18);
}

/* Layout Base */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  display: block;
}

.split-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}

/* Left Image Panel */
.visual {
  flex: 0.5;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content Panel */
.content {
  flex: 0.5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(90deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 2rem 1rem 2rem 2rem;
  padding-left: clamp(2rem, 4vw, 5rem);
}

.content-inner {
  max-width: 550px;
  text-align: left;
  margin-right: auto;
  margin-left: 0;
}

.logo {
  height: 74.1px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(1.8rem, 2.5vw, 3.12rem);
  margin: 0 0 1rem;
  color: var(--text-primary);
}

p {
  font-size: 1.17rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-enter {
  background: var(--button-bg);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 10.92px 21.84px; /* 30% smaller */
  font-weight: 600;
  font-size: 0.91rem; /* 30% smaller */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

.btn-enter:hover {
  background: var(--button-bg-hover);
  transform: scale(1.03);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .split-layout {
    flex-direction: column;
    height: 100vh;
  }

  .visual {
    flex: none;
    height: 40vh;
  }

  .content {
    flex: 1;
    min-height: 60vh;
    padding: 2rem 1rem;
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .content-inner {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-left: 0;
  }

  .logo {
    height: 54px;
  }

  h1 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  }

  p {
    font-size: 1rem;
  }

  .btn-enter {
    width: 100%;
    font-size: 0.7rem; /* 30% smaller */
    padding: 8.4px 16.8px; /* 30% smaller */
  }
}
