* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
}
@keyframes float {
 0% { transform: translateY(0px); }
 50% { transform: translateY(-10px); }
 100% { transform: translateY(0px); }
}
@keyframes spin {
 from { transform: rotate(0deg); }
 to { transform: rotate(360deg); }
}
@keyframes pulse {
 0% { transform: scale(1); }
 50% { transform: scale(1.05); }
 100% { transform: scale(1); }
}
@keyframes reveal {
 0% { 
   clip-path: circle(0% at 50% 50%);
   opacity: 0;
 }
 100% { 
   clip-path: circle(150% at 50% 50%);
   opacity: 1;
 }
}
.page-content {
 animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.loader {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #FAFAFA;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 9999;
 animation: fadeOut 0.5s ease forwards 1.5s;
}
@keyframes fadeOut {
 to {
   opacity: 0;
   visibility: hidden;
 }
}
.loader-content {
 text-align: center;
}
.loader-logo {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 font-family: 'Syne', sans-serif;
 font-weight: 600;
 letter-spacing: 0.1em;
 margin-bottom: 1rem;
 opacity: 0;
 animation: fadeInUp 0.5s ease forwards 0.5s;
}
@keyframes fadeInUp {
 from {
   opacity: 0;
   transform: translateY(20px);
 }
 to {
   opacity: 1;
   transform: translateY(0);
 }
}
.loader-logo .logo-dot {
 width: 30px;
 height: 30px;
 background-color: #FFD400;
 border-radius: 50%;
}
.loader-logo .logo-text {
 display: flex;
 flex-direction: column;
 line-height: 1.2;
}
.loader-logo .logo-line {
 font-size: 1.1rem;
 font-weight: 500;
 letter-spacing: 0.05em;
 text-transform: uppercase;
}
.loader-logo .logo-line:first-child {
 font-size: 1.3rem;
 font-weight: 600;
}
.loader-text {
 font-size: 0.875rem;
 color: #666;
 opacity: 0;
 animation: fadeInUp 0.5s ease forwards 0.8s;
}
body {
 font-family: 'Space Grotesk', sans-serif;
 background-color: #FAFAFA;
 color: #1C1C1E;
 line-height: 1.6;
}
header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 2rem;
 background-color: #ffffff;
 border-bottom: 1px solid #e5e5e5;
 position: relative;
}
.header-left {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
}
header a {
 text-decoration: none;
 color: #1C1C1E;
 transition: color 0.3s ease;
}
header a:hover {
 color: #666;
}
.logo {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 font-family: 'Syne', sans-serif;
 cursor: pointer;
 transition: all 0.3s ease;
}
.logo-dot {
 width: 30px;
 height: 30px;
 background-color: #FFD400;
 border-radius: 50%;
}
.logo-text {
 display: flex;
 flex-direction: column;
 line-height: 1.2;
}
.logo-line {
 font-size: 0.9rem;
 font-weight: 500;
 letter-spacing: 0.05em;
 text-transform: uppercase;
}
.logo-line:first-child {
 font-size: 1.1rem;
 font-weight: 600;
}
.logo:hover {
 transform: scale(1.05);
}
.logo:hover .disco {
 animation: spin 1s linear infinite;
}
.disco {
 display: inline-block;
 transition: transform 0.3s ease;
}
nav a {
 margin-left: 1.5rem;
 text-decoration: none;
 color: #1C1C1E;
 font-weight: 400;
 font-size: 0.875rem;
}

nav .apply-button {
 margin-left: 1.5rem;
 padding: 8px 16px;
 font-size: 0.875rem;
 background-color: #FFD400;
 color: #1C1C1E;
 border: none;
 border-radius: 6px;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.3s ease;
 white-space: nowrap;
}

nav .apply-button:hover {
 transform: scale(1.05);
 background-color: #FFE44D;
}

.hero {
 padding: 6rem 2rem 3rem;
 text-align: center;
 max-width: 800px;
 margin: 0 auto;
}
.hero h1 {
 font-family: 'Syne', sans-serif;
 font-size: 1.5rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.1em;
 margin-bottom: 1.5rem;
}
.hero p {
 font-size: 1.125rem;
 color: #555;
 margin-top: 1rem;
 max-width: 540px;
 margin-left: auto;
 margin-right: auto;
}
.section {
 padding: 4rem 2rem;
 max-width: 800px;
 margin: 0 auto;
}
.section h2 {
 font-size: 0.875rem;
 font-family: 'Syne', sans-serif;
 font-weight: 600;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 margin-bottom: 1.5rem;
}
.product-card {
 background: #ffffff;
 border: 1px solid #e5e5e5;
 border-radius: 12px;
 padding: 1.5rem;
 margin-bottom: 1.5rem;
 box-shadow: 0 1px 4px rgba(0,0,0,0.03);
 display: flex;
 gap: 1.5rem;
 position: relative;
 cursor: pointer;
 transition: all 0.3s ease;
}
.product-card:hover {
 box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-icon {
 height: 64px;
 max-width: 69px;
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.product-icon img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.product-content {
 flex: 1;
}
.product-header {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 margin-bottom: 0.5rem;
 flex-wrap: wrap;
}
.badge {
 background: #f5f5f5;
 padding: 0.25rem 0.75rem;
 border-radius: 100px;
 font-size: 0.75rem;
 color: #666;
 font-weight: 500;
 transition: all 0.3s ease;
}
.badge:hover {
 transform: scale(1.1);
}
.badge.users {
 background: #FFD400;
 color: #000;
 cursor: pointer;
}
.badge.users:hover {
 background: #FFE44D;
}
.product-card h3 {
 font-size: 1rem;
 font-weight: 500;
 margin-bottom: 0.5rem;
 font-family: 'Syne', sans-serif;
 text-transform: uppercase;
 letter-spacing: 0.05em;
}
.product-card p {
 color: #444;
 font-size: 0.875rem;
}
.stats {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 1.5rem;
 margin: 2rem 0;
}
.stat-card {
 background: #ffffff;
 padding: 1.5rem;
 border-radius: 12px;
 text-align: center;
 border: 1px solid #e5e5e5;
 transition: all 0.3s ease;
}
.stat-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.stat-card h4 {
 font-size: 1.5rem;
 font-weight: 600;
 margin-bottom: 0.5rem;
 transition: all 0.3s ease;
}
.stat-card:hover h4 {
 color: #FFD400;
}
.stat-card p {
 font-size: 0.875rem;
 color: #666;
}
.distribution {
 background-color: #1C1C1E;
 color: #fff;
 padding: 4rem 2rem;
 border-radius: 16px;
 margin: 3rem auto;
 max-width: 800px;
}
.distribution h2 {
 color: #fff;
 margin-bottom: 2rem;
}
.distribution-card {
 background: rgba(255,255,255,0.05);
 padding: 1.5rem;
 border-radius: 12px;
 margin-bottom: 1.5rem;
 transition: all 0.3s ease;
}
.distribution-card:hover {
 background: rgba(255,255,255,0.08);
 transform: translateY(-5px);
}
.distribution-card h3 {
 font-size: 1rem;
 margin-bottom: 1rem;
 font-family: 'Syne', sans-serif;
}
.distribution-card p {
 color: #ccc;
 font-size: 0.875rem;
 margin-bottom: 1rem;
}
.distribution-image {
 width: 100%;
 border-radius: 8px;
 margin-top: 1rem;
 transition: all 0.3s ease;
}
.distribution-card:hover .distribution-image {
 transform: scale(1.02);
}
.placeholder {
 background: rgba(255,255,255,0.1);
 height: 200px;
 border-radius: 8px;
 margin-top: 1rem;
 display: flex;
 align-items: center;
 justify-content: center;
 color: rgba(255,255,255,0.3);
}
.careers {
 background-color: #1C1C1E;
 color: #fff;
 text-align: center;
 padding: 4rem 2rem;
 border-radius: 16px;
 margin: 3rem 2rem;
}
.careers h2 {
 font-size: 0.875rem;
 font-family: 'Syne', sans-serif;
 text-transform: uppercase;
 letter-spacing: 0.08em;
}
.careers p {
 margin-top: 1rem;
 font-size: 1rem;
 font-weight: 400;
 color: #ccc;
}
.careers a {
 display: inline-block;
 margin-top: 1.5rem;
 padding: 0.6rem 1.25rem;
 background-color: #FFD400;
 color: #000;
 text-decoration: none;
 border-radius: 8px;
 font-size: 0.875rem;
 font-weight: 500;
 transition: all 0.3s ease;
}
.careers a:hover {
 transform: scale(1.05);
 background-color: #FFE44D;
 animation: pulse 1s infinite;
}
.contact {
 text-align: center;
 padding: 4rem 2rem;
}
.contact a {
 color: #1C1C1E;
 text-decoration: none;
 font-weight: 500;
 transition: all 0.3s ease;
 position: relative;
}
.contact a:hover {
 color: #FFD400;
}
.contact a::after {
 content: '';
 position: absolute;
 width: 100%;
 height: 2px;
 bottom: -2px;
 left: 0;
 background-color: #FFD400;
 transform: scaleX(0);
 transition: transform 0.3s ease;
}
.contact a:hover::after {
 transform: scaleX(1);
}
footer {
 padding: 3rem 2rem;
 text-align: center;
 background-color: #ffffff;
 border-top: 1px solid #e5e5e5;
 color: #666;
 font-size: 0.875rem;
}
.footer-links {
 margin-bottom: 1.5rem;
}
.footer-links a {
 color: #666;
 text-decoration: none;
 transition: color 0.3s ease;
}
.footer-links a:hover {
 color: #1C1C1E;
}
.footer-address {
 margin-bottom: 1.5rem;
 line-height: 1.6;
}
.footer-copyright {
 color: #999;
}
.preview-popup {
 position: fixed;
 background: white;
 border-radius: 8px;
 padding: 12px;
 width: 300px;
 box-shadow: 0 4px 12px rgba(0,0,0,0.1);
 border: 1px solid #e5e5e5;
 pointer-events: none;
 z-index: 1000;
 opacity: 0;
 transition: opacity 0.2s ease;
}
.preview-popup.visible {
 opacity: 1;
}
.preview-header {
 display: flex;
 align-items: center;
 gap: 8px;
 margin-bottom: 8px;
}
.preview-favicon {
 width: 16px;
 height: 16px;
}
.preview-url {
 font-size: 0.75rem;
 color: #666;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.preview-description {
 font-size: 0.75rem;
 color: #333;
 line-height: 1.4;
}
.team-preview {
 position: fixed;
 background: white;
 border-radius: 8px;
 padding: 12px;
 width: 300px;
 box-shadow: 0 4px 12px rgba(0,0,0,0.1);
 border: 1px solid #e5e5e5;
 pointer-events: none;
 z-index: 1000;
 opacity: 0;
 transition: opacity 0.2s ease;
}
.team-preview.visible {
 opacity: 1;
}
.team-preview img {
 width: 100%;
 border-radius: 4px;
}

/* Career Page Styles */
.job-page {
  position: relative;
  padding-top: 80px;
  padding-bottom: 100px;
  background: #fff;
  overflow: hidden;
}

.job-page .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  overflow: visible;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1C1C1E;
  text-decoration: none;
  margin-bottom: 32px;
  font-weight: 500;
  transition: transform 0.2s ease;
  font-size: 14px;
}

.back-link:hover {
  color: #1C1C1E;
  transform: translateX(-4px);
}

.back-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.job-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 48px;
  font-family: 'Syne', sans-serif;
}

.job-quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.info-item {
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E2E2E2;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #FFD400;
}

.info-item span {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.info-item h4 {
  color: #1C1C1E;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.job-banner {
  width: 100%;
  margin: 0 auto 48px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  max-width: 100%;
}

.job-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.job-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

/* Job Summary Section */
.job-summary {
  padding: 48px 0;
  border-bottom: 1px solid #E2E2E2;
}

.job-summary:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-summary-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.job-summary h2 {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1E;
  margin: 0;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-summary h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  color: #1C1C1E;
}

.job-summary p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.job-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-summary ul li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.job-summary ul li:last-child {
  margin-bottom: 0;
}

.job-summary ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD400;
}

/* Requirements Section */
.requirements-section {
  padding: 48px 0;
  border-bottom: 1px solid #E2E2E2;
  width: 100%;
  overflow: visible;
}

.requirements-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

.requirements-section h2 {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1E;
  margin: 0;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.requirement-box {
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.requirement-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #FFD400;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.requirement-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.requirement-box:hover::before {
  opacity: 1;
}

.requirement-box:last-child {
  margin-bottom: 0;
}

.requirement-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 8px;
}

.requirement-box h4 {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-bottom: 16px;
}

.requirement-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Tools Section */
.tools-section {
  padding: 48px 0;
  border-bottom: 1px solid #E2E2E2;
}

.tools-section .job-summary-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.tools-section h2 {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1E;
  margin: 0;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.tool-box {
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.tool-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tool-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.tool-box:hover img {
  transform: scale(1.1);
}

.tool-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 12px;
}

.tool-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* What You'll Do Section */
.what-youll-do-section {
  padding: 48px 0;
  border-bottom: 1px solid #E2E2E2;
  width: 100%;
  overflow: visible;
}

.what-youll-do-section .job-summary-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.what-youll-do-section h2 {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1E;
  margin: 0;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tasks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.task-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.task-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #FFD400;
}

.task-box.wide-task {
  grid-column: span 2;
}

.task-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #E2E2E2;
  line-height: 1;
}

.task-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  padding-right: 40px;
}

/* Apply Section */
.apply-section {
  padding: 48px 0;
  text-align: center;
}

.apply-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}

.apply-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apply-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #FFD400;
  color: #1C1C1E;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.apply-button:hover {
  transform: scale(1.05);
  background-color: #FFE44D;
}

/* Careers Hero Section */
.careers-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.careers-hero .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.careers-hero h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 0;
  font-family: 'Syne', sans-serif;
}

.careers-intro {
  padding: 40px 0;
}

.careers-intro .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.intro-text {
  font-size: 24px;
  font-weight: 500;
  color: #1C1C1E;
  margin-bottom: 24px;
  font-family: 'Syne', sans-serif;
}

.careers-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.careers-values {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.careers-values .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.value-item {
  margin-bottom: 40px;
}

.value-item:last-child {
  margin-bottom: 0;
}

.value-item h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}

.value-item p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

/* Open Roles Section */
.open-roles {
  padding: 60px 0;
}

.open-roles .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.open-roles h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 24px;
  font-family: 'Syne', sans-serif;
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: 1px solid #E2E2E2;
  transition: all 0.2s ease;
}

.role-item:hover {
  padding-left: 8px;
}

.role-title {
  font-size: 18px;
  font-weight: 500;
  color: #1C1C1E;
}

.role-meta {
  font-size: 16px;
  color: #666;
}

@media (max-width: 768px) {
  .role-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .role-title {
    font-size: 16px;
  }
  
  .role-meta {
    font-size: 14px;
  }
}

/* Legal Pages Styles */
.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-section h2 {
  font-size: 0.875rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #1C1C1E;
}

.legal-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
  color: #1C1C1E;
  font-family: 'Syne', sans-serif;
}

.legal-content h3:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

.legal-content ul li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: #FFD400;
}

.legal-content a {
  color: #1C1C1E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #FFD400;
}

.email-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.email-popup.visible {
  opacity: 1;
  visibility: visible;
}

.email-popup-content {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.email-popup.visible .email-popup-content {
  transform: translateY(0);
}

.email-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #f6f8fc;
  border-bottom: 1px solid #e5e5e5;
}

.email-header-left h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1C1C1E;
}

.email-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.email-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1C1C1E;
}

.email-body {
  padding: 24px;
}

.email-field {
  margin-bottom: 16px;
  position: relative;
}

.email-field label {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 4px;
}

.email-field input,
.email-field textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: #1C1C1E;
  background: #f9f9f9;
}

.email-field textarea {
  height: 200px;
  resize: none;
}

.copy-button {
  position: absolute;
  right: 8px;
  top: 32px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid #e5e5e5;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  opacity: 1;
  z-index: 2;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.copy-button.copied {
  color: #1a73e8;
  opacity: 1;
  background: rgba(255, 255, 255, 1);
}

.email-field textarea::placeholder {
  color: #999;
  font-size: 0.875rem;
}

.email-guidance {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #999;
  font-style: italic;
  text-align: center;
}

.email-footer {
  padding: 16px 24px;
  background: #f6f8fc;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: flex-end;
}

.email-send {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-send:hover {
  background: #1557b0;
}

@media (max-width: 768px) {
  .email-popup-content {
    width: 95%;
    margin: 20px;
  }
  
  .email-body {
    padding: 16px;
  }
  
  .email-field textarea {
    height: 150px;
  }
  
  .email-field {
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 40px;
  }
  
  .copy-button {
    position: absolute;
    right: 8px;
    top: 32px;
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .email-field {
    padding-bottom: 36px;
  }
  
  .copy-button {
    top: 32px;
  }
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #1C1C1E;
  margin: 5px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }

  header {
    padding: 1rem;
  }

  .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    font-size: 1rem;
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .nav-menu .apply-button {
    margin: 0.5rem auto;
    width: 80%;
    max-width: 200px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .job-quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .info-item {
    padding: 1rem;
  }

  .job-summary {
    padding: 1.5rem 1rem;
  }

  .job-summary-grid {
    padding: 0;
    grid-template-columns: auto;
  }

  .what-youll-do-section .job-summary-grid {
    grid-template-columns: auto;
  }

  .job-summary h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .job-summary h3 {
    font-size: 1.1rem;
  }

  .job-summary p {
    font-size: 0.95rem;
  }

  .requirements-section {
    padding: 1.5rem 1rem;
  }

  .requirements-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .requirement-box {
    padding: 1.25rem;
  }

  .what-youll-do-section {
    padding: 1.5rem 1rem;
  }

  .tasks-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .task-box {
    padding: 1.25rem;
  }

  .task-box.wide-task {
    grid-column: 1;
  }

  .apply-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .apply-section h2 {
    font-size: 1.5rem;
  }

  .apply-section p {
    font-size: 0.95rem;
    margin: 1rem 0;
  }
}

@media (max-width: 480px) {
  .job-quick-info {
    grid-template-columns: 1fr;
  }

  .info-item {
    padding: 0.75rem;
  }

  .job-title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .job-banner img {
    border-radius: 8px;
  }
}