@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

.scroll-btn {
  position: relative;
  background: none;
  border: 2px solid #F15A24;
  padding: 10px 24px;
  font-size: 1.2rem;
  color: #F15A24;
  font-weight: 700;
  cursor: pointer;
  margin-top: 18px;
  overflow: hidden;
  z-index: 1;
  font-family: 'Red Hat Display', sans-serif;
  transition: color 0.2s;
}

.scroll-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #F15A24;
  z-index: -1;
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
}

.scroll-btn:hover::before {
  width: 100%;
}

.scroll-btn:hover {
  color: #111;
  outline: none;
}

.team-btn {
  position: relative;
  background: none;
  border: 2px solid #111;
  padding: 10px 24px;
  font-size: 1.2rem;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  margin-top: 18px;
  overflow: hidden;
  z-index: 1;
  font-family: 'Red Hat Display', sans-serif;
}

.team-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #111;
  z-index: -1;
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
}

.team-btn:hover::before {
  width: 100%;
}

.team-btn:hover {
  color: #F15A24;
  outline: none;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Red Hat Display', Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.text-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.main-content {
  width: 100%;
  margin: 60px 0 0 40px; /* Desktop left margin */
  padding: 0;
  box-sizing: border-box;
}

@media (max-width:650px) {
  .text-container,
  .main-content {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .main-content {
    margin-top: 18px;
    margin-bottom: 24px;
    /* Removed margin-left/right for mobile */
  }
}

/* Typography and links */
h1 {
  color: #e5e5e5;
  transition: color 0.3s;
}

.hover-word {
  cursor: pointer;
  transition: color 0.3s, text-shadow 0.3s;
  display: inline-block;
  margin: 0 2px;
  padding: 0 4px;
}

.hover-word.active {
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
}

.hover-word.prompting {
  animation: subtle-nudge 1.5s ease-in-out;
}

@keyframes subtle-nudge {
  0% { transform: translateY(0); }
  10% { transform: translateY(-5px); }
  20% { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* DUST PARTICLES */
.dust {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  animation: dust-move 1.2s cubic-bezier(0.6, 0.1, 0.2, 1) forwards;
  will-change: transform, opacity;
}
@media (max-width: 650px) {
  .dust {
    filter: blur(4px) !important;
  }
}
@keyframes dust-move {
  0% {
    opacity: 0.95;
    transform: scale(1) translateX(0) translateY(0);
  }
  90% {
    opacity: 0;
    transform: scale(1.08) translateX(var(--dust-x)) translateY(var(--dust-y));
  }
  100% {
    opacity: 0;
    transform: scale(1.22) translateX(var(--dust-x)) translateY(var(--dust-y));
  }
}

/* SPARK EFFECT */
.spark {
  position: absolute;
  width: 1px;
  height: 6px;
  background: linear-gradient(180deg, #ff6600 10%, #ff6f00 80%, transparent 100%);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.95;
  animation: spark-float 1.2s linear forwards;
  z-index: 4;
  transform: rotate(var(--spark-rot, 0deg));
  will-change: transform, opacity;
}

@keyframes spark-float {
  0% {
    opacity: 0.85;
    transform: scale(1) translateY(0) translateX(0) rotate(var(--spark-rot, 0deg));
  }
  70% {
    opacity: 1;
    transform: scale(1.18) translateY(-65px) translateX(var(--spark-x, 0px)) rotate(var(--spark-rot, 0deg));
  }
  100% {
    opacity: 0;
    transform: scale(1.28) translateY(-80px) translateX(var(--spark-x, 0px)) rotate(var(--spark-rot, 0deg));
  }
}

.spark.logo-spark {
  width: auto;
  height: 8px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 5;
}
.spark.logo-spark img,
.spark.logo-spark svg {
  height: 8px;
  width: auto;
  display: block;
}

h1.dimmed {
  color: #222;
}
h1.dimmed .hover-word.active {
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

.nothing-hover h1 {
  color: #000 !important;
}
.hero.nothing-hover h1,
.hero.nothing-hover p,
.hero.nothing-hover .hover-word {
  color: #000 !important;
  text-shadow: none !important;
}
.hero.nothing-hover .hover-word.nothing {
  color: #000 !important;
  text-shadow: 0 0 10px #000000 !important;
  font-weight: bold;
}
.something-hover h1,
.story-hover h1 {
  color: #333;
}
.something-hover .hover-word.something,
.story-hover .hover-word.story {
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
}

/* GRADIENT SCALE PULSE */
@keyframes scale-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}
.gradient.pulse {
  animation: scale-pulse 4s ease-in-out infinite;
}

.text-container h1 {
  margin-bottom: 24px;
}

h1, .title-main {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

h2, .title-section {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: #fff;
}

h3 {
  font-weight: 500;
  font-size: 1.35rem;
  color: #f4f4f8;
}

p {
  font-size: 1.08rem;
  color: #e5e5e5;
}

a {
  color: #85aaff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}

.navbar {
  font-weight: 500;
  font-size: 1rem;
}
.navbar {
  position: fixed;
  width: 100%;
  height: 64px;
  min-height: 64px;
  padding: 0 32px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 10;
}
.navbar-left {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.logo-pictorial {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  transform: translateX(10px);
}
.logo-pictorial img,
.logo-pictorial svg {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}
.logo-text img {
  height: 14px !important;
  width: auto;
  display: block;
}
.logo-divider {
  width: 1px;
  background: #333;
  align-self: stretch;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-end;
  margin-right: 16px;
}
.social-icon {
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.social-icon:hover {
  opacity: 0.7;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover, a:focus {
  color: #ff0;
}
@media (max-width: 650px) {
  h1, .title-main {
    font-size: 3rem;
    word-spacing: normal;
  }
  .navbar {
    height: 48px;
    min-height: 48px;
    padding: 0 8px 0 0;
  }
  .navbar-left, .navbar-right {
    align-items: center;
    display: flex;
    gap: 8px;
    height: 100%;
  }
  .logo-pictorial {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    transform: translateX(8px);
    margin-left: 4px;
    margin-right: 4px;
  }
  .logo-pictorial img,
  .logo-pictorial svg {
    width: 80%;
    height: 80%;
  }
  .logo-divider {
    height: 100%;
    align-self: stretch;
  }
  .logo-text img {
    height: 14px !important;
  }
  .navbar-right {
    gap: 18px;
    margin-right: 6px;
  }
}

/* HERO SECTION (keep gradient settings) */
.hero {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.gradient {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 550px;
  height: 1100px;
  border-radius: 24px;
  background-image: linear-gradient(#292929 10%, #ff6600);
  filter: blur(120px);
  transition: all 450ms ease-out;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
  transform: translateZ(0);
}

@media (max-width: 650px) {
  .gradient {
    width: 400px;
    height: 800px;
    border-radius: 24px;
    filter: blur(60px);
    will-change: transform, opacity;
  }
}

.about-section {
  width: 100%;
  background: #F15A24;
  padding: 30px 0 30px 0;
  padding-top: 64px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

html {
  scroll-padding-top: 64px; /* Match your navbar height */
}

.about-container {
  width: 100%;
  max-width: 900px;
  margin: 0 20px;
  padding: 0;
  color: #222;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #222;
}

.about-section p {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #222;
}

@media (max-width: 650px) {
  .about-section {
    padding: 32px 0 24px 0;
  }
  .about-container {
    margin: 0 24px;
    max-width: 100vw;
  }
  .about-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .about-section p {
    font-size: 1.2rem;
    margin-bottom: 11px;
  }
}

.work-section {
  width: 100%;
  background: #000;
  padding: 56px 0 48px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.work-container {
  width: 100%;
  max-width: 900px;
  margin: 0 40px;
  padding: 0;
}

.work-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
}

.work-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-list li {
  color: #e5e5e5;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.work-label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.08em;
}

.work-list li p {
  margin: 0;
  color: #e5e5e5;
  font-size: inherit;
}

@media (max-width: 650px) {
  .work-section {
    padding: 32px 0 24px 0;
  }
  .work-container {
    margin: 0 24px;
    max-width: 100vw;
  }
  .work-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .work-list li {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}

.why-section {
  width: 100%;
  background: #111;
  padding: 30px 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.why-container {
  width: 100%;
  max-width: 900px;
  margin: 0 20px;
  padding: 0;
  color: #F15A24;
}

.why-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #F15A24;
}

.why-section p {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #cbcbcb;
}

.why-bold {
  font-weight: bold;
  color: #F15A24;
}

@media (max-width: 650px) {
  .why-section {
    padding: 32px 0 24px 0;
  }
  .why-container {
    margin: 0 24px;
    max-width: 100vw;
  }
  .why-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .why-section p {
    font-size: 1.2rem;
    margin-bottom: 11px;
  }
}

.manifesto-section {
  width: 100%;
  background: #f7f7f7;
  padding: 56px 0 48px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manifesto-logo {
  width: 60px;
  height: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: left;
  justify-content: left;
}

.spark-logo {
  width: auto;
  height: 24px;
  display: block;
  text-align: left;
  animation: spark-slide 2.2s linear infinite;
}

@keyframes spark-slide {
  0% { opacity: 0.7; transform: translateY(0) scaleX(1); }
  40% { opacity: 1; transform: translateY(-2px) scaleX(1.05);}
  60% { opacity: 1; transform: translateY(2px) scaleX(0.98);}
  100% { opacity: 0.7; transform: translateY(0) scaleX(1);}
}

.manifesto-container {
  width: 100%;
  max-width: 900px;
  margin: 0 20px;
  padding: 0;
}

.manifesto-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #F15A24;
  letter-spacing: -0.01em;
}

.manifesto-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manifesto-point {
  opacity: 0;
  transform: translateX(-40px);
  animation: manifesto-slide-in 1.2s cubic-bezier(0.7, 0.2, 0.2, 1) forwards;
  animation-delay: var(--manifesto-delay, 0s);
  color: #222;
  font-size: 1.15rem;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
}

.manifesto-number {
  font-weight: bold;
  font-size: 1.15em;
  display: inline-block;
  margin-right: 9px;
}

.number-grey {
  color: #bbb;
  font-weight: bold;
}

.number-orange {
  color: #F15A24;
  font-weight: bold;
}

@keyframes manifesto-slide-in {
  0% { opacity: 0; transform: translateX(-40px);}
  60% { opacity: 1; transform: translateX(10px);}
  100% { opacity: 1; transform: translateX(0);}
}

.manifesto-point:nth-child(1) { --manifesto-delay: 0.05s; }
.manifesto-point:nth-child(2) { --manifesto-delay: 0.18s; }
.manifesto-point:nth-child(3) { --manifesto-delay: 0.31s; }
.manifesto-point:nth-child(4) { --manifesto-delay: 0.44s; }
.manifesto-point:nth-child(5) { --manifesto-delay: 0.57s; }
.manifesto-point:nth-child(6) { --manifesto-delay: 0.70s; }
.manifesto-point:nth-child(7) { --manifesto-delay: 0.83s; }
.manifesto-point:nth-child(8) { --manifesto-delay: 0.96s; }
.manifesto-point:nth-child(9) { --manifesto-delay: 1.09s; }
.manifesto-point:nth-child(10) { --manifesto-delay: 1.22s; }
.manifesto-point:nth-child(11) { --manifesto-delay: 1.35s; }

@media (max-width: 650px) {
  .manifesto-section {
    padding: 24px 24px;
  }
  .manifesto-container {
    margin: 0 24px;
    max-width: 100vw;
  }
  .manifesto-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .manifesto-point {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .manifesto-logo {
    margin-bottom: 16px;
    width: 38px;
    height: 18px;
  }
  .spark-logo {
    width: auto;
    height: 24px;
    display: block;
    margin-left: 0;
  }
}

.manifesto-point {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s, transform 0.7s;
}

.manifesto-point.reveal {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s, transform 0.7s;
}

/* Mood Widget Styles */
.touchpoint-responsive-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: linear-gradient(120deg, #f8fafc 60%, #e0e7ef 100%);
  box-sizing: border-box;
  position: relative;
  overflow-x: visible;
  margin: 0;
  padding: 0;
  transition: background 0.7s cubic-bezier(.4,0,.2,1);
  --grad1: #fef9d7;
  --grad2: #f7e7a4;
  background: linear-gradient(120deg, var(--grad1) 0%, var(--grad2) 100%);
  transition: background 0.7s cubic-bezier(.4,0,.2,1);
}

#touchpoint-widget-root {
  width: 100%;
}

.touchpoint-widget-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 180px;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  overflow: visible;
}

.touchpoint-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: inherit;
  letter-spacing: -0.01em;
  text-align: left;
}
.touchpoint-instruction {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 20px;
  color: inherit;
  text-align: left;
}
.touchpoint-result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 70px;
  margin-top: 20px;
}
.touchpoint-result-label {
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 4px;
  opacity: 0.86;
  color: inherit;
  letter-spacing: 0.01em;
  text-align: left;
}
.touchpoint-mood-name {
  font-size: 1.33rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: inherit;
  letter-spacing: 0.01em;
  text-align: left;
}
.touchpoint-mood-quote {
  font-size: 1.09rem;
  font-style: italic;
  max-width: 520px;
  text-align: left;
  opacity: 0.97;
  color: inherit;
  margin-bottom: 0;
}

/* Soft "ripple" for feedback (not for coloring) */
.touchpoint-soft-ripple {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.09) 60%, transparent 100%);
  transform: scale(0);
  animation: soft-ripple-anim 0.6s cubic-bezier(.4,0,.2,1);
  opacity: 0.5;
  z-index: 1;
}

@keyframes soft-ripple-anim {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Looking Ahead Section */
.looking-ahead-section {
  background: #F15A24;
  padding: 40px 80px;
}

.looking-ahead-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

.looking-ahead-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #222;
  letter-spacing: -0.01em;
}

.looking-ahead-section p {
  color: #222;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 650px) {
  .looking-ahead-section {
    padding: 24px 24px;
  }
  .looking-ahead-container {
    margin: 0px 0px;
    max-width: 100vw;
  }
  .looking-ahead-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .looking-ahead-section p {
    font-size: 1.1rem;
  }
}

.team-main {
  width: 100%;
  background: #111;
  padding: 30px 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.team-section {
  width: 100%;
  max-width: 900px;
  margin: 0 20px;
  padding-top: 64px;
  color: #F15A24;
}

.team-section h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #F15A24;
  font-family: 'Red Hat Display', sans-serif;
}

.team-section p {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #cbcbcb;
  font-family: 'Red Hat Display', sans-serif;
}

@media (max-width: 650px) {
  .team-main {
    padding: 32px 0 24px 0;
  }
  .team-section {
    margin: 0 24px;
    max-width: 100vw;
  }
  .team-section h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .team-section p {
    font-size: 1.2rem;
    margin-bottom: 11px;
  }
}


/* Footer */
.site-footer {
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1rem;
  padding: 24px 0 12px 0;
  background: transparent;
  letter-spacing: 0.02em;
}