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

/* ================= ROOT / BRAND ================= */

:root {
  --tmi-red: #fe3232;
  --tmi-yellow: #e2ad02;
  --tmi-bg: #090b12;
  --tmi-text: #f9fafb;
  --tmi-muted: #a0a4b8;
  --tmi-card-bg: #141824;
  --tmi-border: #252b3b;
}

/* ================= GLOBAL ================= */

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  overflow-x: hidden !important;
  background: var(--tmi-bg) !important;
  color: var(--tmi-text) !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at top left, #151a2a 0, var(--tmi-bg) 40%, #05060a 100%) !important;
}

/* Limit font override to your custom areas + flow */
.tiemein-exp-page,
.tiemein-exp-page *,
.tiemein-apply-page,
.tiemein-apply-page *,
.tiemein-exp-footer,
.tiemein-exp-footer *,
lightning-flow,
lightning-flow *,
.flowruntimeBody,
.flowruntimeBody *,
.runtime_salesflowFlow,
.runtime_salesflowFlow *,
.flowruntimeFlow,
.flowruntimeFlow *,
.flowRuntimeForFlexipage,
.flowRuntimeForFlexipage * {
  font-family: "Montserrat", Arial, sans-serif !important;
}

/* Experience Cloud outer backgrounds */
.siteforceContentArea,
.comm-page-custom-landing-page,
.comm-page-home,
.forceCommunityThemeLayout,
.themeLayoutStarterWrapper,
.cCenterPanel,
.slds-template_default,
.slds-template__container,
.slds-grid,
.slds-col {
  background: #090b12 !important;
}

/* ================= MAIN LANDING PAGE ================= */

.tiemein-exp-page {
  background:
    radial-gradient(circle at top left, #151a2a 0, var(--tmi-bg) 40%, #05060a 100%) !important;
  color: var(--tmi-text) !important;
  min-height: 100vh;
  padding: 0 20px 64px !important;
  margin: 0 !important;
}

#build,
#role,
#perks,
#earn,
#fit,
#founder,
#apply {
  scroll-margin-top: 100px;
}

/* ================= HEADER ================= */

.tiemein-site-header {
  width: 100%;
  background: rgba(9, 11, 18, 0.72) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.tiemein-site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.tiemein-site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}

.tiemein-site-logo {
  height: 66px;
  width: auto;
  max-width: 150px;
  display: block;
}

.tiemein-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.tiemein-site-nav a {
  position: relative;
  color: var(--tmi-muted) !important;
  text-decoration: none !important;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.tiemein-site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--tmi-yellow), var(--tmi-red));
  opacity: 0;
  transform: scaleX(0.6);
  transition: all 0.2s ease;
}

.tiemein-site-nav a:hover {
  color: var(--tmi-text) !important;
}

.tiemein-site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.tiemein-site-nav .tiemein-site-nav-cta {
  margin-left: 0.3rem;
  padding: 0.6rem 1.5rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--tmi-yellow), var(--tmi-red)) !important;
  color: #000000 !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(226, 173, 2, 0.35) !important;
  text-decoration: none !important;
}

.tiemein-site-nav .tiemein-site-nav-cta:hover {
  color: #000000 !important;
  opacity: 0.95 !important;
}

.tiemein-site-nav .tiemein-site-nav-cta::after {
  display: none !important;
}

/* Hide old injected header if Core theme adds one */
.tiemein-header,
.tiemein-logo-link,
.tiemein-logo-img,
.tiemein-core-tagline {
  display: none !important;
}

/* ================= LANDING HERO ================= */

.tiemein-exp-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.25rem 1.5rem 4.5rem;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at top left, #151a2a 0, var(--tmi-bg) 42%, #05060a 100%);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.02);
}

.tiemein-exp-kicker {
  display: inline-block;
  margin: 0 auto 0.9rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--tmi-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center !important;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.tiemein-exp-hero h1 {
  max-width: 760px;
  margin: 0 auto 1.1rem;
  color: var(--tmi-text);
  font-size: clamp(2.05rem, 3vw, 2.85rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: center !important;
}

.tiemein-exp-hero p {
  max-width: 56rem;
  margin: 0 auto 2rem;
  color: var(--tmi-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 400;
  text-align: center !important;
}

/* ================= BUTTONS ================= */

.tiemein-exp-button,
.tiemein-exp-hero .tiemein-exp-button,
a.tiemein-exp-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  margin-top: 0.4rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0.85rem 2.2rem !important;
  min-height: auto !important;
  border-radius: 999px !important;
  border: none !important;
  background: linear-gradient(135deg, var(--tmi-yellow), var(--tmi-red)) !important;
  color: #000000 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow:
    0 12px 30px rgba(226, 173, 2, 0.35),
    0 0 0 1px rgba(255,255,255,0.06) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease !important;
}

.tiemein-exp-button:hover,
.tiemein-exp-hero .tiemein-exp-button:hover,
a.tiemein-exp-button:hover {
  color: #000000 !important;
  opacity: 0.95 !important;
  transform: translateY(-1px) !important;
  box-shadow:
    0 16px 40px rgba(226, 173, 2, 0.45),
    0 0 0 1px rgba(255,255,255,0.08) !important;
}

/* ================= SECTIONS ================= */

.tiemein-exp-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.tiemein-exp-section h2,
.tiemein-exp-apply h2,
.tiemein-exp-founder-note h2 {
  margin: 0 0 0.6rem;
  color: var(--tmi-text);
  font-size: 1.95rem;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.016em;
}

.tiemein-exp-section-intro,
.tiemein-exp-apply p {
  max-width: 46rem;
  margin: 0 auto 3rem;
  color: var(--tmi-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.tiemein-exp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.tiemein-exp-card {
  min-height: 170px;
  padding: 2.2rem;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--tmi-border);
  background: var(--tmi-card-bg);
  box-shadow: none;
}

.tiemein-exp-card:hover {
  border-color: rgba(255,255,255,0.16);
  background: #171c2a;
}

.tiemein-exp-card h3 {
  margin: 0 0 0.6rem;
  color: var(--tmi-text);
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
}

.tiemein-exp-card p {
  margin: 0;
  color: var(--tmi-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ================= FOUNDER NOTE ================= */

.tiemein-exp-founder-note {
  max-width: 880px;
  margin: 3.5rem auto 2rem;
  padding: 2.8rem;
  border-radius: 22px;
  border: 1px solid var(--tmi-border);
  border-left: 4px solid var(--tmi-yellow);
  background: linear-gradient(180deg, #151a2a, #0e121e);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  text-align: left;
}

.tiemein-exp-founder-note h2 {
  text-align: center;
  margin-bottom: 1.4rem;
}

.tiemein-exp-founder-note p {
  max-width: 720px;
  margin: 0 auto 1rem;
  color: var(--tmi-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}

.tiemein-exp-founder-signature {
  color: var(--tmi-text) !important;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 1.4rem !important;
}

/* ================= APPLY CTA SECTION ON LANDING ================= */

.tiemein-exp-apply {
  max-width: 880px;
  margin: 0 auto 1.5rem;
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================= APPLY PAGE ONLY ================= */

.tiemein-apply-page {
  background:
    radial-gradient(circle at top left, #151a2a 0, #090b12 40%, #05060a 100%) !important;
  color: #f9fafb !important;
  padding: 0 20px 24px !important;
  margin: 0 !important;
  min-height: auto !important;
}

.tiemein-apply-hero {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 3.4rem 1.5rem 2rem !important;
  text-align: center !important;
}

.tiemein-apply-hero h1 {
  max-width: 820px !important;
  margin: 0 auto 0.9rem !important;
  color: #f9fafb !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: clamp(2rem, 3vw, 2.6rem) !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
}

.tiemein-apply-hero p {
  max-width: 720px !important;
  margin: 0 auto !important;
  color: #a0a4b8 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
}

/* ================= FLOW FINAL FIX ================= */

/* General flow font */
.forceCommunityFlowCommunity,
.forceCommunityFlowCommunity *,
.runtime_salesflowFlow,
.runtime_salesflowFlow *,
.flowruntimeBody,
.flowruntimeBody *,
.flowruntimeFlow,
.flowruntimeFlow *,
.flowRuntimeForFlexipage,
.flowRuntimeForFlexipage *,
lightning-flow,
lightning-flow * {
  font-family: "Montserrat", Arial, sans-serif !important;
}

/* Outer flow component area */
.forceCommunityFlowCommunity,
.runtime_salesflowFlow,
.flowruntimeBody,
.flowruntimeFlow,
.flowRuntimeForFlexipage,
lightning-flow {
  display: block !important;
  max-width: 1060px !important;
  margin: 0 auto 3.5rem !important;
  padding: 0 !important;
  background: #090b12 !important;
  border: none !important;
  box-shadow: none !important;
  color: #f9fafb !important;
}

/* Kill white Salesforce card/container around the flow */
.forceCommunityFlowCommunity .slds-card,
.forceCommunityFlowCommunity .slds-card__body,
.forceCommunityFlowCommunity .slds-card__footer,
.runtime_salesflowFlow .slds-card,
.runtime_salesflowFlow .slds-card__body,
.runtime_salesflowFlow .slds-card__footer,
.flowruntimeBody .slds-card,
.flowruntimeBody .slds-card__body,
.flowruntimeBody .slds-card__footer,
.flowruntimeFlow .slds-card,
.flowruntimeFlow .slds-card__body,
.flowruntimeFlow .slds-card__footer,
.flowRuntimeForFlexipage .slds-card,
.flowRuntimeForFlexipage .slds-card__body,
.flowRuntimeForFlexipage .slds-card__footer,
lightning-flow .slds-card,
lightning-flow .slds-card__body,
lightning-flow .slds-card__footer,
.slds-modal__content,
.slds-modal__footer {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Actual form body/card */
.flowruntimeBody form,
.runtime_salesflowFlow form,
.flowruntimeFlow form,
.flowRuntimeForFlexipage form,
lightning-flow form {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 2.5rem 3rem !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #151a2a, #0e121e) !important;
  border: 1px solid #252b3b !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.42) !important;
}

/* Flow title */
.flowruntimeBody h1,
.flowruntimeBody h2,
.flowruntimeBody h3,
.runtime_salesflowFlow h1,
.runtime_salesflowFlow h2,
.runtime_salesflowFlow h3,
.flowruntimeFlow h1,
.flowruntimeFlow h2,
.flowruntimeFlow h3,
.flowRuntimeForFlexipage h1,
.flowRuntimeForFlexipage h2,
.flowRuntimeForFlexipage h3,
lightning-flow h1,
lightning-flow h2,
lightning-flow h3 {
  color: #f9fafb !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 700 !important;
}

/* Labels */
.flowruntimeBody label,
.flowruntimeBody .slds-form-element__label,
.runtime_salesflowFlow label,
.runtime_salesflowFlow .slds-form-element__label,
.flowruntimeFlow label,
.flowruntimeFlow .slds-form-element__label,
.flowRuntimeForFlexipage label,
.flowRuntimeForFlexipage .slds-form-element__label,
lightning-flow label,
lightning-flow .slds-form-element__label {
  color: #f9fafb !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

/* Required asterisk */
.flowruntimeBody abbr,
.flowruntimeBody .slds-required,
.runtime_salesflowFlow abbr,
.runtime_salesflowFlow .slds-required,
.flowruntimeFlow abbr,
.flowruntimeFlow .slds-required,
.flowRuntimeForFlexipage abbr,
.flowRuntimeForFlexipage .slds-required,
lightning-flow abbr,
lightning-flow .slds-required {
  color: #fe3232 !important;
}

/* Inputs */
.flowruntimeBody input,
.flowruntimeBody textarea,
.flowruntimeBody select,
.flowruntimeBody .slds-input,
.flowruntimeBody .slds-textarea,
.flowruntimeBody .slds-combobox__input,
.runtime_salesflowFlow input,
.runtime_salesflowFlow textarea,
.runtime_salesflowFlow select,
.runtime_salesflowFlow .slds-input,
.runtime_salesflowFlow .slds-textarea,
.runtime_salesflowFlow .slds-combobox__input,
.flowruntimeFlow input,
.flowruntimeFlow textarea,
.flowruntimeFlow select,
.flowruntimeFlow .slds-input,
.flowruntimeFlow .slds-textarea,
.flowruntimeFlow .slds-combobox__input,
.flowRuntimeForFlexipage input,
.flowRuntimeForFlexipage textarea,
.flowRuntimeForFlexipage select,
.flowRuntimeForFlexipage .slds-input,
.flowRuntimeForFlexipage .slds-textarea,
.flowRuntimeForFlexipage .slds-combobox__input,
lightning-flow input,
lightning-flow textarea,
lightning-flow select,
lightning-flow .slds-input,
lightning-flow .slds-textarea,
lightning-flow .slds-combobox__input {
  background: #090b12 !important;
  border: 1px solid #252b3b !important;
  border-radius: 10px !important;
  color: #f9fafb !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  min-height: 42px !important;
}

/* Placeholder */
.flowruntimeBody input::placeholder,
.flowruntimeBody textarea::placeholder,
.runtime_salesflowFlow input::placeholder,
.runtime_salesflowFlow textarea::placeholder,
.flowruntimeFlow input::placeholder,
.flowruntimeFlow textarea::placeholder,
.flowRuntimeForFlexipage input::placeholder,
.flowRuntimeForFlexipage textarea::placeholder,
lightning-flow input::placeholder,
lightning-flow textarea::placeholder {
  color: #a0a4b8 !important;
  opacity: 0.75 !important;
}

/* Focus */
.flowruntimeBody input:focus,
.flowruntimeBody textarea:focus,
.flowruntimeBody .slds-input:focus,
.flowruntimeBody .slds-textarea:focus,
.flowruntimeBody .slds-combobox__input:focus,
.runtime_salesflowFlow input:focus,
.runtime_salesflowFlow textarea:focus,
.runtime_salesflowFlow .slds-input:focus,
.runtime_salesflowFlow .slds-textarea:focus,
.runtime_salesflowFlow .slds-combobox__input:focus,
.flowruntimeFlow input:focus,
.flowruntimeFlow textarea:focus,
.flowruntimeFlow .slds-input:focus,
.flowruntimeFlow .slds-textarea:focus,
.flowruntimeFlow .slds-combobox__input:focus,
.flowRuntimeForFlexipage input:focus,
.flowRuntimeForFlexipage textarea:focus,
.flowRuntimeForFlexipage .slds-input:focus,
.flowRuntimeForFlexipage .slds-textarea:focus,
.flowRuntimeForFlexipage .slds-combobox__input:focus,
lightning-flow input:focus,
lightning-flow textarea:focus,
lightning-flow .slds-input:focus,
lightning-flow .slds-textarea:focus,
lightning-flow .slds-combobox__input:focus {
  border-color: #e2ad02 !important;
  box-shadow: 0 0 0 3px rgba(226,173,2,0.14) !important;
  outline: none !important;
}

/* Lookup/search icons */
.flowruntimeBody lightning-icon,
.flowruntimeBody .slds-icon,
.runtime_salesflowFlow lightning-icon,
.runtime_salesflowFlow .slds-icon,
.flowruntimeFlow lightning-icon,
.flowruntimeFlow .slds-icon,
.flowRuntimeForFlexipage lightning-icon,
.flowRuntimeForFlexipage .slds-icon,
lightning-flow lightning-icon,
lightning-flow .slds-icon {
  fill: #a0a4b8 !important;
  color: #a0a4b8 !important;
}

/* Flow navigation/footer area */
.flowruntimeBody footer,
.flowruntimeBody .flowruntimeNavigationBar,
.flowruntimeBody .slds-modal__footer,
.runtime_salesflowFlow footer,
.runtime_salesflowFlow .flowruntimeNavigationBar,
.runtime_salesflowFlow .slds-modal__footer,
.flowruntimeFlow footer,
.flowruntimeFlow .flowruntimeNavigationBar,
.flowruntimeFlow .slds-modal__footer,
.flowRuntimeForFlexipage footer,
.flowRuntimeForFlexipage .flowruntimeNavigationBar,
.flowRuntimeForFlexipage .slds-modal__footer,
lightning-flow footer,
lightning-flow .flowruntimeNavigationBar,
lightning-flow .slds-modal__footer {
  background: transparent !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 1.5rem 0 0 !important;
}

/* Next / Finish button */
.flowruntimeBody .slds-button_brand,
.runtime_salesflowFlow .slds-button_brand,
.flowruntimeFlow .slds-button_brand,
.flowRuntimeForFlexipage .slds-button_brand,
lightning-flow .slds-button_brand {
  background: linear-gradient(135deg, #e2ad02, #fe3232) !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 999px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 600 !important;
  padding: 0.7rem 1.8rem !important;
  box-shadow: 0 12px 30px rgba(226,173,2,0.28) !important;
}

/* Back / neutral buttons */
.flowruntimeBody .slds-button_neutral,
.runtime_salesflowFlow .slds-button_neutral,
.flowruntimeFlow .slds-button_neutral,
.flowRuntimeForFlexipage .slds-button_neutral,
lightning-flow .slds-button_neutral {
  background: #141824 !important;
  color: #f9fafb !important;
  border: 1px solid #252b3b !important;
  border-radius: 999px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 500 !important;
}

/* Error text */
.flowruntimeBody .slds-form-element__help,
.runtime_salesflowFlow .slds-form-element__help,
.flowruntimeFlow .slds-form-element__help,
.flowRuntimeForFlexipage .slds-form-element__help,
lightning-flow .slds-form-element__help {
  color: #ff7b7b !important;
}

/* ================= FOOTER ================= */

.tiemein-exp-footer {
  background: rgba(9,11,18,0.98);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3.5rem 1.5rem 1.5rem;
  color: var(--tmi-muted);
  text-align: center;
}

.tiemein-exp-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.tiemein-exp-footer-brand {
  text-align: center;
}

.tiemein-exp-footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto 0.75rem;
}

.tiemein-exp-footer-brand p {
  margin: 0 0 1.2rem;
  color: var(--tmi-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}

.tiemein-exp-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.tiemein-exp-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tmi-muted) !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  background: transparent;
  padding: 0.25rem 0;
}

.tiemein-exp-footer-links a:hover {
  color: var(--tmi-text) !important;
}

.tiemein-exp-footer-bottom {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--tmi-muted);
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .tiemein-site-header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .tiemein-site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1rem;
  }

  .tiemein-exp-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tiemein-exp-page {
    padding: 0 14px 44px !important;
  }

  .tiemein-site-header {
    padding: 1rem 0;
  }

  .tiemein-site-logo {
    height: 58px;
    max-width: 140px;
  }

  .tiemein-site-nav a {
    font-size: 0.8rem;
  }

  .tiemein-site-nav .tiemein-site-nav-cta {
    padding: 0.55rem 1.25rem !important;
    font-size: 0.8rem !important;
  }

  .tiemein-exp-hero {
    padding: 3rem 1.25rem;
    border-radius: 20px;
  }

  .tiemein-exp-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .tiemein-exp-hero h1 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .tiemein-exp-hero p {
    font-size: 0.9rem;
  }

  .tiemein-exp-button,
  .tiemein-exp-hero .tiemein-exp-button,
  a.tiemein-exp-button {
    padding: 0.75rem 1.8rem !important;
    font-size: 0.88rem !important;
  }

  .tiemein-exp-section {
    padding: 3.5rem 1.25rem;
  }

  .tiemein-exp-section h2,
  .tiemein-exp-apply h2,
  .tiemein-exp-founder-note h2 {
    font-size: 1.6rem;
  }

  .tiemein-exp-section-intro,
  .tiemein-exp-apply p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .tiemein-exp-card {
    padding: 1.7rem;
  }

  .tiemein-exp-card h3 {
    font-size: 1rem;
  }

  .tiemein-exp-card p {
    font-size: 0.88rem;
  }

  .tiemein-exp-founder-note {
    padding: 2rem 1.4rem;
    border-radius: 20px;
  }

  .tiemein-exp-founder-note p {
    font-size: 0.9rem;
  }

  .tiemein-exp-apply {
    padding: 3rem 1.25rem 2rem;
  }

  .tiemein-apply-page {
    padding: 0 14px 20px !important;
  }

  .tiemein-apply-hero {
    padding: 3rem 1.25rem 1.75rem !important;
  }

  .tiemein-apply-hero h1 {
    font-size: 2rem !important;
  }

  .tiemein-apply-hero p {
    font-size: 0.9rem !important;
  }

  .flowruntimeBody form,
  .runtime_salesflowFlow form,
  .flowruntimeFlow form,
  .flowRuntimeForFlexipage form,
  lightning-flow form {
    padding: 1.5rem !important;
    border-radius: 18px !important;
  }

  .tiemein-exp-footer-links {
    flex-direction: column;
    gap: 0.55rem;
  }
}
