.company-hero {
  background: var(--bg-primary);
  padding: calc(var(--topbar-height) + var(--space-20)) 0 var(--space-16);
  text-align: center;
}

.company-hero-inner {
  max-width: var(--landing-container);
  margin: 0 auto;
  padding: 0 var(--landing-container-padding);
}

.company-hero-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-pink);
  margin-bottom: var(--space-4);
}

.company-hero-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-6);
}

.company-hero-desc {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.company-section {
  max-width: var(--landing-container);
  margin: 0 auto;
  padding: var(--space-20) var(--landing-container-padding);
}

.company-section-grey {
  background: #FFC872;
}

.company-section-grey .company-section {
  padding: var(--space-20) var(--landing-container-padding);
}

.company-section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.company-section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-pink);
  margin-bottom: var(--space-3);
}

.company-section-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
}

.company-section-desc {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.company-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.company-value-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.company-value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.company-value-icon svg {
  width: 36px;
  height: 36px;
}

.company-value-icon-pink { background: #FF74C1; }
.company-value-icon-coral { background: #FF7E7E; }
.company-value-icon-amber { background: #FFC872; }

.company-value-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.company-value-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.company-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.company-story-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.founder-link {
  color: #999;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 150ms ease;
}

.founder-link:hover {
  color: #666;
}

.company-story-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-6);
}

.company-story-body {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.company-story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-story-visual lottie-player {
  width: 100%;
  max-width: 460px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #E8E8E6;
  border: 1px solid #E8E8E6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  cursor: pointer;
  transition: background 150ms ease;
}

.job-card:hover {
  background: #FAFAF8;
}

.job-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-black);
}

.job-meta {
  font-size: var(--text-sm);
  color: #999;
}

.job-arrow {
  width: 20px;
  height: 20px;
  color: #999;
  transition: transform 150ms ease, color 150ms ease;
  flex-shrink: 0;
}

.job-card:hover .job-arrow {
  color: var(--color-black);
  transform: translateX(4px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(16px) scale(0.98);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid #F0F0EE;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.modal-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-role-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
}

.modal-role-meta {
  font-size: var(--text-sm);
  color: #999;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #F5F5F3;
  border-radius: 9999px;
  cursor: pointer;
  color: #666;
  transition: background 150ms ease, color 150ms ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.modal-close:hover {
  background: #E8E8E6;
  color: var(--color-black);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  flex: 1;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 12px;
}

.modal-section-text {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-section-text:last-child {
  margin-bottom: 0;
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.modal-list li {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: #FF38B2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  background: #F5F5F3;
  padding: 4px 12px;
  border-radius: 9999px;
}

.modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #F0F0EE;
  flex-shrink: 0;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-black);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.apply-btn:hover {
  opacity: 0.85;
}

.apply-btn svg {
  width: 14px;
  height: 14px;
}

.modal-divider {
  height: 1px;
  background: #F0F0EE;
  margin: 24px 0;
}

.company-careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.company-careers-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light, #E5E7EB);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.company-careers-role {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-black);
}

.company-careers-meta {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.company-careers-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.company-careers-link {
  color: var(--brand-pink);
  font-weight: var(--font-medium);
  text-decoration: none;
  align-self: flex-start;
}

.company-careers-link:hover {
  opacity: 0.8;
}

.company-careers-note {
  text-align: center;
  margin-top: var(--space-10);
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.company-careers-note a {
  color: var(--brand-pink);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.company-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.company-support-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid var(--border-light, #E5E7EB);
}

.company-support-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.company-support-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.company-support-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.company-support-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.company-support-link {
  color: var(--brand-pink);
  font-weight: var(--font-medium);
  text-decoration: none;
}

.company-support-link:hover {
  opacity: 0.8;
}

.company-contact {
  text-align: center;
}

.company-contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.company-contact-row {
  display: flex;
  gap: var(--space-4);
}

.company-contact-row > * {
  flex: 1;
}

.company-contact-input,
.company-contact-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-light, #E5E7EB);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--color-black);
  background: var(--bg-primary);
  outline: none;
  transition: border-color 0.2s ease;
}

.company-contact-input:focus,
.company-contact-textarea:focus {
  border-color: var(--brand-pink);
}

.company-contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.company-contact-submit {
  align-self: center;
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-3) var(--space-10);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.company-contact-submit:hover {
  opacity: 0.85;
}

.company-contact-alt {
  margin-top: var(--space-6);
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.company-contact-alt a {
  color: var(--brand-pink);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.company-divider {
  border: none;
  border-top: 1px solid var(--border-light, #E5E7EB);
  margin: 0;
}

@media (max-width: 768px) {
  .company-hero-title {
    font-size: var(--text-5xl);
  }

  .company-values-grid,
  .company-support-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .company-careers-grid {
    grid-template-columns: 1fr;
  }

  .company-story {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .company-story-visual {
    order: -1;
  }

  .company-contact-row {
    flex-direction: column;
  }

  .company-section-title {
    font-size: var(--text-4xl);
  }
}
