/* ---------- RESET / BASE ---------- */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
    /* prevents iOS pin jump */
}

body {
    /*font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;*/
    /*font-family: "Google Sans", sans-serif;*/
    font-family: "Schibsted Grotesk", sans-serif;
    background: #f5f6f7;
    color: #111;
}

/* ---------- GSAP PIN FIX ---------- */
.pin-spacer {
    background: white;
}

/* ---------- HERO & OUTRO ---------- */
.hero {
    min-height: 100vh;
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.outro {
    min-height: 100vh;
    padding: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    padding-bottom: 164px;
}

.divider {
    height: 120px;
    background-color: rgb(255, 255, 255);
    padding-left: 72px;
}

.hero h1,
.outro h1,
.team h1,
.divider h1 {
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
    margin: 0 0 24px;
    font-weight: 700;
}

.hero h2,
.outro h2,
.team h2 {
    font-size: clamp(48px, 8vw, 64px);
    line-height: 0.95;
    margin: 0 0 24px;
    font-weight: 500;
}

.hero p,
.outro p {
    max-width: 640px;
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.intern-story {
    font-weight: 500;
    margin: 0;
}

/* ---------- STACKED SECTIONS ---------- */
.wrapper {
    position: relative;
    background: white;
}

.sections {
    position: relative;
}

.section {
    background: white;
    border-bottom: 3px solid black;
    overflow: hidden;
}

.section:last-child {
    border-bottom: 0;
}

.pin {
    margin-top: 48px;
}

.header {
    height: 96px;
    display: grid;
    grid-template-columns: 130px auto;
    align-items: center;
    padding: 0 72px;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.num {
    font-size: 72px;
}

.content {
    padding: 24px 72px 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

a:not(.icon-twitter):not(.icon-mail):not(.inline-link) {
    display: inline;
    margin-top: 12px;
    width: max-content;

    font-size: 24px;
    font-weight: 500;
    color: #111;
    text-decoration: none;

    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;

    transition: background-size 0.25s ease;
}

a:not(.icon-twitter):not(.icon-mail):hover {
    background-size: 100% 2px;
}

.hero-text .inline-link {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.25s ease;
}

/* put this AFTER your global a:not(.icon-twitter):not(.icon-mail) block */
.slider-card a:not(.icon-twitter):not(.icon-mail) {
    display: block;
    /* or inline-block */
    margin-top: auto;
    width: max-content;
    /* optional, keeps it “shrink to text” */
    font-size: 16px;
}


/* ---------- ARROW ---------- */
.arrow-container {
    display: flex;
    align-items: center;
    margin-left: -30px;
    margin-top: 24px;
}

.scroll-label {
    font-size: 14px;
    letter-spacing: 0.08em;
    /*text-transform: uppercase;*/
    color: #000;
    opacity: 0.7;
    margin-left: -12px;
}

.ico {
    /*margin: 0 auto;*/
    text-align: center;
    width: 100px;
    height: 100px;
    position: relative;
    top: 50%;
    /*transform: translateY(-50%);*/
    filter: url("#goo");
    transform: scale(0.40);
}

.ico .circle {
    background: #000000;
    border-radius: 50%;
    display: inline-block;
    height: 100px;
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transform-origin: 0%;
}

.ico .circle.circle-top {
    height: 33.3333333333px;
    width: 41.6666666667px;
    -webkit-animation: blob-1-anim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    animation: blob-1-anim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    z-index: 0;
    top: 0;
}

.ico .circle.circle-bottom {
    height: 33.3333333333px;
    width: 41.6666666667px;
    -webkit-animation: blob-2-anim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    animation: blob-2-anim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    z-index: 9;
    bottom: 0px;
}

.ico .st-arrow {
    fill: #ffffff;
    -webkit-animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
    animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
    perspective: 9000px;
    transform: translateZ(0);
    transform-origin: bottom;
}

.svg {
    z-index: 9;
    position: relative;
}

@-webkit-keyframes blob-1-anim {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    14% {
        transform: translateX(-50%) translateY(-8px);
    }

    24% {
        transform: translateX(-50%) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes blob-1-anim {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    14% {
        transform: translateX(-50%) translateY(-8px);
    }

    24% {
        transform: translateX(-50%) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

@-webkit-keyframes blob-2-anim {
    0% {
        transform: scale(1) translate(-50%, 10px);
    }

    30% {
        transform: scale(1) translate(-50%, 10px);
    }

    70% {
        transform: scale(1) translate(-50%, 10px);
    }

    95% {
        transform: scale(1) translate(-50%, 26px);
    }

    100% {
        transform: scale(1) translate(-50%, 10px);
    }
}

@keyframes blob-2-anim {
    0% {
        transform: scale(1) translate(-50%, 10px);
    }

    30% {
        transform: scale(1) translate(-50%, 10px);
    }

    70% {
        transform: scale(1) translate(-50%, 10px);
    }

    95% {
        transform: scale(1) translate(-50%, 26px);
    }

    100% {
        transform: scale(1) translate(-50%, 10px);
    }
}

@-webkit-keyframes scrolly {
    0% {
        transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
    }

    30% {
        transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
    }

    70% {
        transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
    }

    95% {
        transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
    }

    100% {
        transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
    }
}

@keyframes scrolly {
    0% {
        transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
    }

    30% {
        transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
    }

    70% {
        transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
    }

    95% {
        transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
    }

    100% {
        transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
    }
}

/* minimal layout addition */
.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-drawing {
    flex: 0.45;
    display: flex;
    justify-content: flex-end;
}

/* ---------- INPUT BOX ---------- */
.question-form{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 96px;
}

.question-form input{
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #000;
  border-radius: 999px;
  font-size: 18px;
  background: #fff;
  outline: none;
  font-family: 'Schibsted Grotesk';
}

.question-form input:focus{
  box-shadow: 0 0 0 4px rgba(0,0,0,0.12);
}

.question-form button{
  font-family: "Schibsted Grotesk", sans-serif;
  align-self: flex-start;
  padding: 10px 18px;
  border: 2px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.125s;
}

.question-form button:hover{
  opacity: 0.9;
  background: white;
  color: black;
}

.apply {
    font-family: "Schibsted Grotesk", sans-serif;
    align-self: flex-start;
    padding: 10px 18px;
    border: 2px solid #000;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.125s;
}

.apply:hover {
    background: white;
    color: black;
}

.link-list{
    display: flex;
    flex-direction: column;
}