*{margin:0;padding:0;box-sizing:border-box}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #50c878;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.dot-1 {
    top: 8px;
    left: 8px;
}

.dot-2 {
    top: 8px;
    right: 8px;
}

.dot-3 {
    bottom: 8px;
    left: 13px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: -0.1px;
}

.nav-link:hover {
    color: #50c878;
}

.dropdown-arrow {
    font-size: 10px;
    color: #666;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #0d3d4f 0%, #1a5f7a 30%, #256a8a 70%, #2d7fa0 100%);
    padding: 120px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.decorative-shape {
    position: absolute;
    background-color: #50c878;
    border-radius: 4px;
    opacity: 0.12;
    filter: blur(2px);
}

.shape-1 {
    width: 200px;
    height: 40px;
    top: 100px;
    left: 10%;
    transform: rotate(-15deg);
}

.shape-2 {
    width: 150px;
    height: 35px;
    top: 200px;
    left: 15%;
    transform: rotate(25deg);
}

.shape-3 {
    width: 180px;
    height: 40px;
    top: 300px;
    left: 8%;
    transform: rotate(-20deg);
}

.shape-4 {
    width: 120px;
    height: 30px;
    top: 150px;
    right: 20%;
    transform: rotate(15deg);
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background-color: #256a8a;
    opacity: 0.15;
    filter: blur(1.5px);
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: 250px;
    right: 25%;
}

.circle-2 {
    width: 40px;
    height: 40px;
    top: 350px;
    right: 30%;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    opacity: 0;
    transform: translateX(-40px);
    animation: heroContentFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-title {
    opacity: 0;
    animation: heroTitleFadeIn 1s ease-out 0.4s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: heroSubtitleFadeIn 1s ease-out 0.6s forwards;
}

.hero-tagline {
    opacity: 0;
    animation: heroTaglineFadeIn 1s ease-out 0.8s forwards;
}

.btn-primary {
    opacity: 0;
    animation: heroButtonFadeIn 1s ease-out 1s forwards;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes heroTaglineFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 0.92;
        transform: translateY(0);
    }
}

@keyframes heroButtonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.hero-subtitle {
    font-size: 17px;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-tagline {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 48px;
    letter-spacing: -0.2px;
}

.btn-primary {
    background-color: #50c878;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(80, 200, 120, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: #45b869;
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.35);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 500px;
    background: linear-gradient(135deg, #1a5f7a 0%, #256a8a 100%);
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transform: translateX(40px) scale(1.08);
    animation: heroImageFadeIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
    transition: transform 0.3s ease;
}

.hero-image-main:hover {
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 61, 79, 0.1) 0%, rgba(26, 95, 122, 0.05) 100%);
    pointer-events: none;
}

@keyframes heroImageFadeIn {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(1.08);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.main-content {
    padding: 100px 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-card {
        max-width: 100%;
        padding: 40px;
    }

    .event-format-details {
        grid-template-columns: 1fr;
    }
}

.recordings-section {
    max-width: 600px;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.recordings-section.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-text {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.75;
    letter-spacing: -0.1px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.section-text.visible {
    opacity: 1;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.city-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    min-height: 60px;
    height: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, all 0.3s ease;
}

.city-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.city-item.visible:nth-child(1) { transition-delay: 0.1s; }
.city-item.visible:nth-child(2) { transition-delay: 0.2s; }
.city-item.visible:nth-child(3) { transition-delay: 0.3s; }
.city-item.visible:nth-child(4) { transition-delay: 0.4s; }
.city-item.visible:nth-child(5) { transition-delay: 0.5s; }
.city-item.visible:nth-child(6) { transition-delay: 0.6s; }
.city-item.visible:nth-child(7) { transition-delay: 0.7s; }
.city-item.visible:nth-child(8) { transition-delay: 0.8s; }

.city-item:hover {
    background-color: #f0f0f0;
    border-color: #50c878;
    transform: translateX(4px) translateY(-2px);
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.2);
}

.city-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.city-date {
    font-size: 14px;
    color: #50c878;
    font-weight: 500;
}

.event-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8e8e8;
    width: 100%;
    max-width: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.event-card.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.event-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title-spacing {
    margin-top: 24px;
}

.card-text {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.card-text-green {
    color: #50c878;
    font-weight: 600;
    font-size: 17px;
}

.event-format-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 4px;
}

.format-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    min-height: 70px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease, all 0.3s ease;
}

.format-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.format-item.visible:nth-child(1) { transition-delay: 0.1s; }
.format-item.visible:nth-child(2) { transition-delay: 0.2s; }
.format-item.visible:nth-child(3) { transition-delay: 0.3s; }
.format-item.visible:nth-child(4) { transition-delay: 0.4s; }

.format-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.format-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.expectations-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expectation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #50c878;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease, all 0.3s ease;
}

.expectation-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.event-card.visible .expectation-item.visible:nth-child(1) { transition-delay: 0.1s; }
.event-card.visible .expectation-item.visible:nth-child(2) { transition-delay: 0.2s; }
.event-card.visible .expectation-item.visible:nth-child(3) { transition-delay: 0.3s; }
.event-card.visible .expectation-item.visible:nth-child(4) { transition-delay: 0.4s; }
.event-card.visible .expectation-item.visible:nth-child(5) { transition-delay: 0.5s; }

.expectation-item:hover {
    background-color: #f0f0f0;
    transform: translateX(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left-width: 4px;
}

.expectation-icon {
    color: #50c878;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.btn-card {
    margin-top: 24px;
    width: 100%;
    padding: 14px 28px;
    font-size: 14px;
}

.agenda-section {
    padding: 100px 0;
    background-color: #fafbfc;
    border-top: 1px solid #e8e8e8;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.agenda-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.agenda-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.8px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.agenda-section.visible .agenda-title {
    opacity: 1;
    transform: translateY(0);
}

.agenda-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.75;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: -0.1px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.agenda-section.visible .agenda-text {
    opacity: 1;
}

.conference-agenda-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.agenda-list {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-item {
    display: flex;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.agenda-item:hover {
    background-color: #fafbfc;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-time {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 120px;
    letter-spacing: 0.2px;
}

.agenda-content {
    flex: 1;
}

.agenda-speaker-info {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.speaker-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    border: 2px solid #f0f0f0;
}

.speaker-details {
    flex: 1;
}

.speaker-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.panel-speakers {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    font-weight: 400;
}

.talk-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-left: 64px;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.talk-bullet {
    color: #50c878;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.unique-event-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.unique-event-section.visible {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.event-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.unique-event-card {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 64px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(232, 232, 232, 0.6);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.unique-event-section.visible .unique-event-card {
    opacity: 1;
    transform: scale(1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.unique-event-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.unique-event-section.visible .unique-event-title {
    opacity: 1;
    transform: translateY(0);
}

.unique-event-content {
    margin-bottom: 40px;
}

.unique-event-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 20px;
    letter-spacing: -0.1px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.unique-event-section.visible .unique-event-content p:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.unique-event-section.visible .unique-event-content p:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.unique-event-section.visible .unique-event-content p:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.unique-event-content p:last-child {
    margin-bottom: 0;
}

.btn-register {
    width: 100%;
    max-width: 300px;
}

.speaker-profiles-section {
    padding: 100px 0;
    background-color: #fafbfc;
    border-top: 1px solid #e8e8e8;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.speaker-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.speaker-card-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.speaker-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    border: 3px solid #f0f0f0;
}

.speaker-card-info {
    text-align: center;
}

.speaker-card-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.3px;
}

.speaker-arrow {
    color: #50c878;
    font-size: 16px;
}

.speaker-card-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.speaker-card-divider {
    height: 1px;
    background-color: #e8e8e8;
    margin-bottom: 20px;
}

.speaker-card-company {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.company-logo-growthhackers {
    color: #50c878;
}

.company-logo-ebay {
    color: #0064d2;
}

.company-logo-adobe {
    color: #ed2224;
}

.hiring-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #5a1f47 0%, #6b2c5a 50%, #7d3a6d 100%);
    background-color: #6b2c5a;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hiring-section.visible {
    opacity: 1;
}

.hiring-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hiring-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 120, 80, 0.4) 0%, rgba(255, 80, 50, 0.2) 50%, transparent 70%);
    filter: blur(60px);
    opacity: 0.8;
}

.shape-top-left {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.shape-top-right {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -100px;
}

.shape-bottom-left {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: -120px;
}

.shape-bottom-right {
    width: 320px;
    height: 320px;
    bottom: -80px;
    right: -80px;
}

.hiring-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hiring-text-content {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hiring-section.visible .hiring-text-content {
    opacity: 1;
    transform: translateX(0);
}

.hiring-visual-content {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hiring-section.visible .hiring-visual-content {
    opacity: 1;
    transform: translateX(0);
}

.hiring-text-content {
    color: #ffffff;
}

.hiring-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.hiring-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.75;
    margin-bottom: 24px;
    letter-spacing: -0.1px;
}

.hiring-description:last-of-type {
    margin-bottom: 40px;
}

.btn-hiring {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-hiring:hover {
    background-color: #ffffff;
    color: #6b2c5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.hiring-visual-content {
    position: relative;
}

.hiring-image-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hiring-graphic {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.hiring-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hiring-graphic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 44, 90, 0.1) 0%, rgba(107, 44, 90, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.main-footer {
    background-color: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid #e8e8e8;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.main-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-content {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.main-footer.visible .footer-content {
    opacity: 1;
}

.footer-column {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.main-footer.visible .footer-column:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.main-footer.visible .footer-column:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.main-footer.visible .footer-column:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

.footer-heading-spacing {
    margin-top: 32px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    font-size: 15px;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.1px;
    display: inline-block;
}

.footer-link:hover {
    color: #50c878;
}

.footer-email {
    margin-top: 8px;
}

.footer-email-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-email-link:hover {
    color: #50c878;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 14px;
    color: #4a4a4a;
    letter-spacing: -0.1px;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-policy-link {
    font-size: 14px;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.1px;
}

.footer-policy-link:hover {
    color: #50c878;
}

.footer-policy-separator {
    color: #d0d0d0;
    font-size: 14px;
}

.jobs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jobs-modal.active {
    display: flex;
    opacity: 1;
}

.jobs-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.jobs-modal-content {
    position: relative;
    z-index: 1001;
    background-color: #ffffff;
    border-radius: 16px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    margin: auto;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    animation: modalSlideIn 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.jobs-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 48px;
    border-bottom: 2px solid #f0f0f0;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.jobs-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.8px;
    margin: 0;
}

.jobs-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.jobs-modal-close:hover {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

.jobs-list {
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.job-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 28px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.job-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #50c878;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
    flex: 1;
    line-height: 1.3;
}

.job-type {
    font-size: 12px;
    font-weight: 600;
    color: #50c878;
    background-color: rgba(80, 200, 120, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-department {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.job-description {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    letter-spacing: -0.1px;
}

.job-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.job-tag {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

.job-apply-btn {
    background-color: #50c878;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: auto;
    width: 100%;
    box-shadow: 0 2px 8px rgba(80, 200, 120, 0.2);
}

.job-apply-btn:hover {
    background-color: #45b869;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(80, 200, 120, 0.4);
}

.job-apply-btn:active {
    transform: translateY(0);
}

.footer-decoration {
    height: 3px;
    background: linear-gradient(90deg, #f5c842 0%, #f8d866 100%);
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-card {
        max-width: 100%;
        padding: 40px 32px;
    }

    .event-format-details {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 13px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .agenda-item {
        flex-direction: column;
        gap: 16px;
    }

    .agenda-time {
        min-width: auto;
    }

    .talk-title {
        margin-left: 0;
    }

    .unique-event-card {
        padding: 48px 32px;
    }

    .agenda-item:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hiring-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hiring-title {
        font-size: 42px;
    }

    .hiring-image-placeholder {
        height: 350px;
    }

    .cities-list {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .section-title,
    .agenda-title {
        font-size: 32px;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        justify-content: center;
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .event-card {
        padding: 32px 24px;
    }

    .format-item {
        padding: 12px;
    }

    .expectation-item {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 12px 20px;
        white-space: normal;
        line-height: 1.4;
    }

    .city-item {
        animation-delay: 0s !important;
    }

    .format-item {
        animation-delay: 0s !important;
    }

    .expectation-item {
        animation-delay: 0s !important;
    }

    .footer-column {
        animation-delay: 0s !important;
    }

    .unique-event-content p {
        animation-delay: 0s !important;
    }

    .unique-event-card {
        padding: 40px 24px;
    }

    .hiring-title {
        font-size: 32px;
    }

    .hiring-description {
        font-size: 16px;
    }

    .footer-heading {
        font-size: 14px;
    }

    .footer-link {
        font-size: 14px;
    }

    .jobs-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .jobs-list {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .jobs-modal-header {
        padding: 24px 20px;
    }

    .jobs-modal-title {
        font-size: 24px;
    }

    .job-card {
        padding: 20px;
    }
}
