@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
      --tt-ink: #011f3d;
      --tt-midnight: #0d245e;
      --tt-ocean: #19248b;
      --tt-cyan: #27f0ff;
      --tt-sand: #d2cfcb;
      --tt-cloud: #eff0f3;
      --tt-text: #1d1d1f;
      --tt-muted: #707070;
      --tt-white: #ffffff;
      --tt-hero: #08004d;
      --tt-gradient-start: #27f0ff;
      --tt-gradient-end: #8a6beb;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Manrope", "Inter Tight", "Inter", "Helvetica Neue", Arial, sans-serif;
      background-color: var(--tt-hero);
      background-image:
        radial-gradient(circle at top right, rgba(39, 240, 255, 0.12), transparent 46%),
        linear-gradient(145deg, var(--tt-hero), var(--tt-hero));
      color: var(--tt-white);
      line-height: 1.6;
    }

    header.hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background-color: #030028;
      background-image:
        url("../Sternenhimmel.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 6vw, 3.5rem);
    }

    header.hero::before,
    header.hero::after {
      content: "";
      position: absolute;
      inset: -25%;
      pointer-events: none;
      z-index: 0;
    }

    header.hero::before {
      filter: blur(80px);
      opacity: 0.8;
    }

    header.hero::after {
      background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
      background-size: 180px 180px, 260px 260px;
      background-position: 0 0, 80px 60px;
      opacity: 0.35;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
      text-align: center;
    }

    .hero-logo-link {
      display: inline-flex;
      margin-bottom: 0.4rem;
    }

    .hero-logo {
      width: clamp(150px, 18vw, 220px);
      display: block;
    }

    .tagline {
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: clamp(1rem, 3vw, 2rem);
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-art {
      position: absolute;
      top: 48%;
      right: max(-1rem, -4vw);
      width: clamp(320px, 55vw, 560px);
      transform: translate(20%, -45%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-art::after {
      content: "";
      position: absolute;
      inset: 18% 8% 8%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(103, 63, 239, 0.6), transparent 65%);
      filter: blur(40px);
    }

    .hero-orbit {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 25px 50px rgba(6, 2, 30, 0.65));
      opacity: 0.9;
    }

    .hero-stars-logo {
      position: absolute;
      width: clamp(170px, 24vw, 270px);
      bottom: clamp(-1rem, -0.5vw, 0.5rem);
      right: clamp(0rem, 2vw, 2.4rem);
      filter: drop-shadow(0 14px 25px rgba(4, 2, 24, 0.85));
      pointer-events: auto;
      cursor: help;
    }

    h1,
    h2,
    h3 {
      background: linear-gradient(180deg, var(--tt-gradient-start), var(--tt-gradient-end));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      line-height: 1.1;
      margin: 0 0 1.4rem;
      letter-spacing: 0.01em;
    }

    .hero-headline {
      font-size: clamp(3rem, 9vw, 5.4rem);
      line-height: 1.05;
      margin: 0 0 1.8rem;
    }

    .hero-headline span {
      background-image: linear-gradient(90deg, #5df9ff 0%, #7dc0ff 60%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 12px 40px rgba(3, 8, 42, 0.4);
    }

    .hero-headline span:last-child {
      background-image: linear-gradient(90deg, #6c9eff 0%, #c38bff 90%);
    }

    .lead {
      font-size: 1.08rem;
      margin: 0 auto 2.6rem;
      max-width: 640px;
      color: rgba(226, 232, 255, 0.9);
      letter-spacing: 0.01em;
    }

    main {
      background-color: #040815;
      background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
      background-size: 180px 180px, 240px 240px;
      background-position: 40px 60px, 120px 20px;
      color: var(--tt-white);
      padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.5rem, 7vw, 5rem);
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    section {
      max-width: 1100px;
      margin: 0 auto 4.6rem;
      background: #00022c;
      border-radius: 1.5rem;
      padding: clamp(2.4rem, 4vw, 3.8rem);
      color: rgba(255, 255, 255, 0.94);
    }

    section:last-of-type {
      margin-bottom: 0;
    }

    section h2 {
      margin-top: 0;
      font-size: clamp(2rem, 3vw, 2.6rem);
      letter-spacing: 0.01em;
    }

    section p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.84);
      margin-bottom: 1.1rem;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
      white-space: nowrap;
    }

    #growapp {
      position: relative;
      overflow: hidden;
    }

    .digital-hero {
      position: relative;
      padding: clamp(1.8rem, 4vw, 3.5rem);
      border-radius: 1.8rem;
    }

    .digital-heading-block {
      position: relative;
      display: inline-flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: clamp(2rem, 5vw, 3.25rem);
      padding-bottom: clamp(2rem, 6vw, 3.5rem);
    }

    .digital-heading {
      margin: 0;
      line-height: 0;
    }

    .digital-wordmark {
      width: clamp(260px, 62vw, 560px);
      filter: drop-shadow(0 25px 55px rgba(2, 6, 40, 0.65));
    }

    .digital-leafs {
      position: absolute;
      top: clamp(-2rem, -4vw, -1rem);
      right: clamp(-4rem, -6vw, -2rem);
      width: clamp(70px, 12vw, 140px);
      filter: drop-shadow(0 18px 30px rgba(0, 5, 30, 0.6));
    }

    .digital-script {
      position: absolute;
      top: clamp(32%, 6vw, 42%);
      right: clamp(-1.5rem, -4vw, -0.25rem);
      width: clamp(190px, 34vw, 320px);
      filter: drop-shadow(0 20px 35px rgba(0, 10, 30, 0.55));
      pointer-events: none;
    }

    .digital-copy {
      max-width: 820px;
      font-size: 1.05rem;
      line-height: 1.9;
      color: rgba(230, 236, 255, 0.9);
    }

    .pill {
      display: inline-block;
      padding: 0.45rem 1.1rem;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.12);
      color: var(--tt-white);
      text-transform: uppercase;
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .experience-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      grid-auto-rows: 1fr;
      gap: clamp(1.5rem, 4vw, 2.6rem);
      margin: clamp(2rem, 5vw, 3rem) 0;
    }

    .experience-card {
      border-radius: 22px;
      padding: clamp(0.8rem, 2vw, 1.6rem);
      border: none;
      background: transparent;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      height: 100%;
    }

    .experience-card-figure {
      flex: 1 1 auto;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: clamp(200px, 28vw, 320px);
    }

    .experience-card-figure img {
      max-width: 100%;
      width: auto;
      border-radius: 16px;
      display: block;
    }

    .experience-card-header {
      display: flex;
      align-items: baseline;
      gap: 0.6rem;
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: var(--tt-white);
      font-weight: 600;
    }

    .experience-step-number {
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      letter-spacing: 0.08em;
    }

    .experience-step-divider {
      flex: 0 0 1px;
      height: 1.4rem;
      background: rgba(255, 255, 255, 0.35);
    }

    .experience-step-title {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.9em;
    }

    .gallery-board {
      background: #00022c;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: clamp(1.5rem, 3vw, 3rem);
      position: relative;
      justify-items: center;
    }

    .polaroid {
      position: relative;
      width: min(260px, 100%);
      padding: 0.35rem;
      border-radius: 32px;
      background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 95%);
      border: 2px solid rgba(1, 13, 46, 0.12);
      box-shadow: 0 18px 38px rgba(1, 8, 40, 0.35);
      transform: rotate(var(--rotation));
      transform-origin: center 6%;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      will-change: transform;
    }

    .polaroid::before {
      display: none;
    }

    .polaroid:hover {
      transform: rotate(var(--rotation)) translateY(-8px);
      box-shadow: 0 28px 48px rgba(1, 8, 40, 0.45);
    }

    .polaroid figure {
      margin: 0;
      border-radius: 24px 24px 0 0;
      overflow: hidden;
      background: var(--tt-white);
      box-shadow: inset 0 0 0 1px rgba(3, 14, 56, 0.05);
    }

    .polaroid img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      display: block;
    }

    .polaroid img.polaroid-image--fallback {
      object-fit: contain;
      background: linear-gradient(180deg, rgba(1, 29, 61, 0.1), rgba(1, 29, 61, 0.02));
    }

    .polaroid footer {
      margin: 0;
      border-radius: 0 0 24px 24px;
      background: linear-gradient(180deg, #012c57 0%, #001635 90%);
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.5;
      padding: 1rem 1.1rem 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      min-height: 130px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .polaroid footer strong {
      font-weight: 700;
      font-size: 1.05rem;
      color: #4ad8ff;
      letter-spacing: 0.01em;
    }

    .polaroid-note {
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.95rem;
    }

    .polaroid footer .upload-meta {
      margin-top: auto;
      padding-top: 0.6rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.78);
    }

    .upload-section form {
      display: grid;
      gap: 1.2rem;
    }

    .upload-section label {
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    .upload-section input[type="file"],
    .upload-section input[type="text"],
    .upload-section input[type="number"],
    .upload-section textarea {
      width: 100%;
      font-size: 1rem;
      padding: 0.85rem 1rem;
      border: 1px solid rgba(1, 31, 61, 0.16);
      border-radius: 12px;
      background: #fbfbfd;
      color: var(--tt-text);
      transition: border-color 0.2s ease;
    }

    .upload-section input[type="file"] {
      width: 100%;
      padding: 0;
      border: none;
      background: transparent;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      cursor: pointer;
      color: rgba(8, 0, 77, 0.8);
    }

    .upload-section input[type="file"]::file-selector-button,
    .upload-section input[type="file"]::-webkit-file-upload-button {
      margin: 0 0.75rem 0 0;
      padding: 0.85rem 2.2rem;
      border: none;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--tt-cyan), #4de8ff);
      color: var(--tt-ink);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .upload-section input[type="file"]::file-selector-button:hover,
    .upload-section input[type="file"]::-webkit-file-upload-button:hover {
      transform: translateY(-2px);
    }

    .upload-section input[type="file"]::file-selector-button:active,
    .upload-section input[type="file"]::-webkit-file-upload-button:active {
      transform: translateY(0);
    }

    .upload-section input[type="text"],
    .upload-section input[type="number"] {
      appearance: none;
      -moz-appearance: textfield;
    }

    .upload-section input[type="number"]::-webkit-outer-spin-button,
    .upload-section input[type="number"]::-webkit-inner-spin-button {
      margin: 0;
      -webkit-appearance: none;
    }

    .upload-section textarea {
      resize: vertical;
      min-height: 140px;
    }

    .upload-section input:focus,
    .upload-section textarea:focus {
      outline: none;
      border-color: rgba(39, 240, 255, 0.55);
    }

    .upload-section button {
      justify-self: start;
      padding: 0.9rem 2.2rem;
      border-radius: 14px;
      border: none;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--tt-midnight);
      color: var(--tt-white);
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .upload-section button:hover {
      transform: translateY(-2px);
    }

    .talent-cta {
      margin-top: clamp(3rem, 9vw, 6rem);
      padding: clamp(2.8rem, 7vw, 4.2rem);
      padding-right: clamp(2.8rem, 9vw, 5.6rem);
      border-radius: 36px;
      background:
        radial-gradient(circle at 15% 20%, rgba(96, 225, 255, 0.35), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(146, 119, 255, 0.25), transparent 45%),
        linear-gradient(135deg, #050238 0%, #0c0a53 55%, #1a0f83 100%);
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid rgba(126, 168, 255, 0.35);
      box-shadow: 0 35px 95px rgba(2, 4, 40, 0.65);
      display: flex;
      flex-direction: column;
      gap: clamp(1.5rem, 4vw, 2.7rem);
    }

    .talent-cta::before {
      content: "";
      position: absolute;
      inset: -10% -5% -5%;
      background-image: url("../Sternenhimmel.png");
      background-size: cover;
      background-position: center;
      opacity: 0.4;
      z-index: -2;
    }

    .talent-cta::after {
      content: "";
      position: absolute;
      inset: auto 10% 0 30%;
      height: 60%;
      background: radial-gradient(circle, rgba(107, 68, 255, 0.6), transparent 65%);
      filter: blur(60px);
      opacity: 0.8;
      z-index: -3;
    }

    .talent-cta__body {
      max-width: 520px;
      z-index: 1;
    }

    .talent-cta__eyebrow {
      margin: 0 0 0.35rem;
      font-size: clamp(2.1rem, 6vw, 3.4rem);
      font-weight: 600;
      color: #6fe0ff;
      letter-spacing: 0.01em;
    }

    .talent-cta__heading {
      margin: 0 0 1.1rem;
      font-size: clamp(1.9rem, 5vw, 2.8rem);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
    }

    .talent-cta__email {
      text-decoration: none;
    }

    .talent-cta__visual {
      position: relative;
      width: min(520px, 100%);
      align-self: flex-end;
      margin-top: clamp(0.5rem, 3vw, 1.5rem);
      z-index: 0;
      pointer-events: none;
    }

    .talent-cta__visual img {
      display: block;
      width: 100%;
      height: auto;
    }

    .talent-cta__arrow {
      position: relative;
      z-index: 0;
      filter: drop-shadow(0 30px 65px rgba(7, 9, 51, 0.75));
    }

    .talent-cta__script {
      position: absolute;
      bottom: -26%;
      right: 4%;
      width: min(360px, 75%);
      z-index: 1;
      filter: drop-shadow(0 20px 40px rgba(3, 5, 34, 0.65));
    }

    .workshop-highlight {
      margin-top: clamp(3rem, 8vw, 5rem);
      padding: clamp(2rem, 6vw, 4rem);
      border-radius: 32px;
      border: 1px solid rgba(126, 168, 255, 0.35);
      background: linear-gradient(135deg, rgba(11, 1, 52, 0.95), rgba(23, 9, 84, 0.95)), url("../Sternenhimmel.png");
      background-blend-mode: overlay;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
      gap: clamp(1.5rem, 4vw, 3rem);
      align-items: center;
      box-shadow: 0 28px 80px rgba(0, 3, 44, 0.7);
    }

    .workshop-highlight__visual {
      margin: 0;
      border-radius: 0 24px 0 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .workshop-highlight__visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .workshop-highlight__content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .workshop-highlight__eyebrow {
      margin: 0;
      font-size: 0.95rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
    }

    .workshop-highlight__heading {
      margin: 0;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
    }

    .workshop-highlight__text {
      margin: 0;
      color: rgba(238, 242, 255, 0.88);
      max-width: 520px;
    }

    .workshop-highlight__button {
      align-self: flex-start;
    }

    .countdown {
      display: inline-grid;
      grid-template-columns: repeat(4, minmax(120px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .time-box {
      padding: 1.5rem 1.1rem;
      background: rgba(1, 31, 61, 0.55);
      border: 1px solid rgba(39, 240, 255, 0.18);
      border-radius: 1rem;
      backdrop-filter: blur(6px);
    }

    .time-box strong {
      display: block;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--tt-cyan);
      letter-spacing: 0.05em;
    }

    .time-box span {
      font-size: 0.95rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
    }

    .countdown-hint {
      margin-bottom: 1.5rem;
      color: rgba(255, 255, 255, 0.72);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-buttons {
      display: inline-flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 1.5rem;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .hero-buttons.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 2.2rem;
      border-radius: 14px;
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .hero-button.primary {
      background: linear-gradient(135deg, var(--tt-cyan), #4de8ff);
      color: var(--tt-ink);
    }

    .hero-button.primary:hover {
      transform: translateY(-2px);
    }

    .hero-button.secondary {
      background: rgba(255, 255, 255, 0.14);
      color: var(--tt-white);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hero-button.secondary:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.22);
    }

    .helper-text {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.72);
    }

    .status-message {
      margin: 0;
      font-size: 0.95rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.86);
    }

    .status-message.error {
      color: #ff6b7a;
    }

    .status-message.success {
      color: #7df0ff;
    }

    .care-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: clamp(1.6rem, 4vw, 2.4rem);
      margin-top: 2.5rem;
    }

    .care-card {
      background: #8684e1;
      border: 1px solid rgba(134, 132, 225, 0.55);
      border-radius: 0 18px 0 18px;
      padding: 1.6rem;
      text-align: left;
      color: #f5f7ff;
    }

    .care-card h3 {
      margin: 1.1rem 0 0.6rem;
      font-size: 1.1rem;
      letter-spacing: 0.01em;
      background: none;
      color: #d9f0ff;
      -webkit-text-fill-color: #d9f0ff;
    }

    .care-card p {
      margin: 0;
      font-size: 0.98rem;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.5;
    }

    .care-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .care-card-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: #f2fbff;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @media (min-width: 900px) {
      .talent-cta {
        padding-right: clamp(4rem, 10vw, 8rem);
      }

      .talent-cta__visual {
        position: absolute;
        top: clamp(0.8rem, 4vw, 2.8rem);
        right: clamp(0.8rem, 6vw, 3.5rem);
        margin-top: 0;
        width: clamp(320px, 38vw, 540px);
      }
    }

    @media (max-width: 1024px) {
      .hero-art {
        width: clamp(320px, 60vw, 480px);
        right: -5vw;
        transform: translate(10%, -35%);
      }
    }

    @media (max-width: 720px) {
      .hero-art {
        position: static;
        width: min(320px, 70vw);
        transform: none;
        margin: 2rem auto 0;
      }

      .hero-orbit {
        display: none;
      }

      .hero-stars-logo {
        display: none;
      }

      .talent-cta {
        text-align: center;
        align-items: center;
      }

      .talent-cta__body {
        max-width: none;
      }

      .talent-cta__visual {
        position: relative;
        order: -1;
        margin: 0 auto;
        width: min(400px, 100%);
        pointer-events: none;
      }

      .talent-cta__script {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -0.8rem auto 0;
        width: min(320px, 80%);
      }

      .workshop-highlight {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .workshop-highlight__content {
        align-items: center;
      }

      .workshop-highlight__button {
        align-self: center;
      }
    }

    footer.site-footer {
      background: #0a0045;
      color: var(--tt-white);
      padding: 1.5rem clamp(1.5rem, 6vw, 4rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-left,
    .footer-right {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-left {
      flex: 1 1 auto;
      min-width: min(240px, 100%);
    }

    .footer-logo {
      width: 42px;
      height: auto;
      flex-shrink: 0;
      filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
    }

    .footer-copy {
      margin: 0;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.85);
    }

    .footer-right {
      justify-content: flex-end;
      gap: 1.25rem;
    }

    .footer-link {
      text-decoration: none;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.9);
      transition: color 0.2s ease;
    }

    .footer-link:hover {
      color: var(--tt-cyan);
    }

    .footer-social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .footer-social img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .footer-social:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
    }

    @media (max-width: 900px) {
      section {
        padding: 2.4rem 1.8rem;
      }

      .digital-hero {
        padding: 2rem 1.6rem 2.4rem;
      }
    }

    @media (max-width: 640px) {
      footer.site-footer {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-right {
        justify-content: flex-start;
      }

      header.hero {
        min-height: auto;
        padding-top: clamp(3rem, 12vw, 4.5rem);
        padding-bottom: clamp(2.5rem, 10vw, 4rem);
      }

      .hero-inner {
        gap: 0.6rem;
      }

      .hero-headline {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
      }

      .lead {
        font-size: 1rem;
        margin-bottom: 2.1rem;
      }

      .digital-heading-block {
        margin-bottom: 1.75rem;
      }

      .digital-leafs {
        position: relative;
        top: auto;
        right: auto;
        align-self: flex-end;
        margin-top: -0.5rem;
      }

      .digital-script {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 0.75rem;
        align-self: flex-end;
      }
    
      .countdown {
        width: 100%;
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 0.8rem;
      }

      .time-box {
        padding: 1.3rem 1rem;
      }

      .hero-buttons {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
      }

      .hero-button {
        display: flex;
        width: 100%;
        justify-content: center;
      }

      main {
        padding: 2.6rem clamp(1rem, 6vw, 1.8rem);
      }

      section {
        padding: 1.9rem 1.3rem;
        border-radius: 1.2rem;
      }

      .experience-steps,
      .care-cards {
        gap: 1.25rem;
      }

      .upload-section button {
        width: 100%;
        justify-self: stretch;
      }
    }

    @media (max-width: 540px) {
      header.hero {
        padding: clamp(2.2rem, 12vw, 3rem) clamp(1rem, 8vw, 1.4rem);
      }

      .hero-headline {
        font-size: clamp(2rem, 10vw, 2.8rem);
      }

      .lead {
        font-size: 0.98rem;
      }

      main {
        padding: 2.2rem clamp(0.9rem, 6vw, 1.2rem);
      }

      section {
        padding: 1.7rem 1.1rem;
        border-radius: 1rem;
      }

      .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .countdown {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 0.6rem;
      }

      .time-box {
        padding: 1.15rem 0.9rem;
      }

      .time-box span {
        font-size: 0.82rem;
      }

      .pill {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
      }

      .upload-section button {
        width: 100%;
      }

      .talent-cta__email {
        width: 100%;
      }

      .talent-cta__visual {
        width: 100%;
      }
    }

    @media (max-width: 420px) {
      .hero-headline {
        font-size: clamp(1.8rem, 12vw, 2.4rem);
      }

      .lead {
        font-size: 0.92rem;
      }

      .countdown {
        grid-template-columns: minmax(0, 1fr);
      }

      .time-box {
        padding: 1rem;
        text-align: center;
      }

      section {
        padding: 1.5rem 1rem;
      }

      .hero-buttons {
        gap: 0.6rem;
      }
    }
