/* v0.9 of CSS stylesheet for the Neocypherpunk Summit - source: https://github.com/web3privacy/events_web */


/* === BRAND COLORS === */
:root {
  --brand-black: #000000;
  --brand-navy: #1b2354;
  --brand-gray: #515679;
  --brand-white: #ffffff;

  /* === TYPOGRAPHY DESIGN TOKENS === */
  /* Display — layout headings */
  --display-lg-size: 56px;
  --display-lg-lh: 64px;
  --display-lg-ls: -2.5%;
  --display-md-size: 44px;
  --display-md-lh: 52px;
  --display-md-ls: -2.5%;
  --display-sm-size: 36px;
  --display-sm-lh: 44px;
  --display-sm-ls: -2.5%;

  /* Headline — high-emphasis headings to divide primary regions */
  --headline-lg-size: 32px;
  --headline-lg-lh: 40px;
  --headline-md-size: 28px;
  --headline-md-lh: 36px;
  --headline-sm-size: 24px;
  --headline-sm-lh: 32px;

  /* Title — medium-emphasis headings to divide secondary regions */
  --title-lg-size: 20px;
  --title-lg-lh: 24px;
  --title-md-size: 16px;
  --title-md-lh: 24px;
  --title-sm-size: 14px;
  --title-sm-lh: 20px;

  /* Body — paragraphs, body copy */
  --body-lg-size: 16px;
  --body-lg-lh: 24px;
  --body-md-size: 14px;
  --body-md-lh: 20px;
  --body-sm-size: 12px;
  --body-sm-lh: 16px;
  --body-sm-ls: 2.5%;

  /* Label — buttons, captions, supporting text */
  --label-lg-size: 16px;
  --label-lg-lh: 24px;
  --label-md-size: 14px;
  --label-md-lh: 20px;
  --label-sm-size: 11px;
  --label-sm-lh: 16px;
  --label-sm-ls: 2.5%;

  /* === SPACING TOKENS === */
  --section-gap: 4.5rem;      /* 72px — vertical gap between major sections */
  --section-title-gap: 2rem;  /* 32px — gap below section titles */
}

/* Global overflow fix */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* === SELF-HOSTED INTER FONT === */
/* Inter Regular (400) - for body text */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
}

/* Inter Medium (500) - for headings, labels, display */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/Inter-Medium.woff2") format("woff2");
}

/* === TYPOGRAPHY UTILITY CLASSES === */
/* Display — layout headings */
.display-lg {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--display-lg-size);
  line-height: var(--display-lg-lh);
  letter-spacing: var(--display-lg-ls);
}
.display-md {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--display-md-size);
  line-height: var(--display-md-lh);
  letter-spacing: var(--display-md-ls);
}
.display-sm {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--display-sm-size);
  line-height: var(--display-sm-lh);
  letter-spacing: var(--display-sm-ls);
}

/* Headline — high-emphasis headings to divide primary regions */
.headline-lg {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-lg-size);
  line-height: var(--headline-lg-lh);
  letter-spacing: 0;
}
.headline-md {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-md-size);
  line-height: var(--headline-md-lh);
  letter-spacing: 0;
}
.headline-sm {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
}

/* Title — medium-emphasis headings to divide secondary regions */
.title-lg {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-lh);
  letter-spacing: 0;
}
.title-md {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-md-size);
  line-height: var(--title-md-lh);
  letter-spacing: 0;
}
.title-sm {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-sm-size);
  line-height: var(--title-sm-lh);
  letter-spacing: 0;
}

/* Body — paragraphs, body copy */
.body-lg {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
}
.body-md {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-md-size);
  line-height: var(--body-md-lh);
  letter-spacing: 0;
}
.body-sm {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-sm-size);
  line-height: var(--body-sm-lh);
  letter-spacing: var(--body-sm-ls);
}

/* Label — buttons, captions, supporting text */
.label-lg {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-lg-size);
  line-height: var(--label-lg-lh);
  letter-spacing: 0;
}
.label-md {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-md-size);
  line-height: var(--label-md-lh);
  letter-spacing: 0;
}
.label-sm {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-sm-size);
  line-height: var(--label-sm-lh);
  letter-spacing: var(--label-sm-ls);
}

/* ! tailwindcss v3.2.6 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
  tab-size: 4; /* 3 */
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: "Inter", sans-serif; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

::backdrop {
}
body {
  bg-opacity: 1;
  background-color: #0e0324;
  background-image:
    url("/img/top left.svg"),
    url("/img/top right.svg"),
    url("/img/bottom-left.svg"),
    url("/img/bottom-right.svg");
  background-size: 50% auto, 50% auto, 50% auto, 50% auto;
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}
@media (max-width: 767px) {
  body {
    background-size: 120% auto, 120% auto, 120% auto, 120% auto;
  }
}
* {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
#header-shade {
  height: 2.5rem;
  background-image: none;
}
footer a,
.markdown a {
  color: #ffffff;
  text-decoration-line: underline;
}
footer a:hover,
.markdown a:hover {
  text-decoration-line: none;
}
.markdown-basic a {
  text-decoration-line: underline;
}
.markdown-basic a:hover {
  text-decoration-line: none;
}
.markdown.multiline > p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.middle-pane-small {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
}

.middle-pane-medium {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media (min-width: 1280px) {
  .middle-pane-medium {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.middle-pane-big {
  margin-left: auto;
  margin-right: auto;
  max-width: 1536px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media (min-width: 1536px) {
  .middle-pane-big {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.button {
  /*@apply px-3 py-1.5 text-black bg-white border border-black cursor-pointer;*/
  cursor: pointer;
  border-width: 1px;
  border-opacity: 1;
  border-color: #ffffff;
  bg-opacity: 1;
  background-color: #000000;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration-line: none;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.button:hover,
.button-inactive {
  border-width: 1px;
  border-opacity: 1;
  border-color: #000000;
  bg-opacity: 1;
  background-color: #ffffff;
  color: #000000;
  text-decoration-line: none;
}
.button:hover.button-inactive {
  cursor: default;
  border-opacity: 1;
  border-color: #4b5563;
  color: #4b5563;
}
.button-inverse {
  cursor: pointer;
  border-width: 1px;
  border-opacity: 1;
  border-color: #000000;
  bg-opacity: 1;
  background-color: #000000;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #ffffff;
}
.button-inverse:hover {
  border-width: 1px;
  border-opacity: 1;
  border-color: #000000;
  bg-opacity: 1;
  background-color: #ffffff;
  color: #000000;
}
.theme-button {
  color: white;
  background: transparent;
  border: 2px solid white;
  padding: 10px 15px;
}

.theme-button:hover {
  background-color: #fff;
  color: #000000;
}
.section-header {
  margin-bottom: 2rem;
  margin-top: 3.5rem;
  text-align: left;
  border-top-width: 2px;
  padding-top: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
  text-transform: none;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
    font-size: var(--headline-md-size);
    line-height: var(--headline-md-lh);
  }
}
.section-subheader {
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
  text-transform: lowercase;
}
@media (min-width: 768px) {
  .section-subheader {
    margin-bottom: 2rem;
  }
}
.text-mild {
  color: #909090;
}
.text-supermild {
  color: #ffffff;
}
table.table-custom {
  font-size: 1rem;
  line-height: 1.5rem;
}
.table-custom td,
.table-custom th {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  vertical-align: top;
}
@media (min-width: 768px) {
  .table-custom td,
  .table-custom th {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.table-custom th {
  color: #909090;
}
.eligible .table-custom th {
  color: #000000;
}

#partners {
  background-color: transparent !important;
}
#partners .cta-partner-btn {
  background-color: transparent !important;
}
#partners .cta-partner-btn:hover {
  background-color: transparent !important;
}
.partner-item .table-custom th {
  color: #ffffff;
}

.table-custom tbody tr:hover td,
.table-custom tbody tr:hover td span {
  bg-opacity: 1;
  background-color: #ffffff;
  color: #000000;
}
.table-custom tbody tr:hover td .description {
  color: #000000;
}
.table-custom td.time {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.person-item img {
  filter: grayscale(0%);
}
.person-item:hover img {
  filter: grayscale(0%);
}
.eligible .text-mild {
  color: #000000;
}
.darker {
  color: #999999;
}
#intro {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
}

/* Desktop background image */
@media (min-width: 768px) {
  #intro::before {
    /* Removed duplicate desktop.png background - using body background instead */
  }
}

#intro > * {
  position: relative;
  z-index: 2;
}
#manifesto {
  background-image: url(/img/manifesto.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
}
.faq-item:hover .desc {
  color: #ffffff;
}
.topic-item,
.topic-item .topic-header {
  cursor: pointer;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.topic-item:hover .topic-header {
  bg-opacity: 1;
  background-color: #ffffff;
  color: #000000;
}
.topic-item:hover .markdown {
  color: #ffffff;
}
.topic-img {
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 83.333333%;
}
.topic-item .topic-header {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-md-size);
  line-height: var(--headline-md-lh);
  letter-spacing: 0;
}
.topic-item:hover .topic-header {
  text-transform: lowercase;
}
.topic-item:hover .topic-img {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.partner-item .partner-img {
  filter: grayscale(0%);
}
.partner-item:hover {
  filter: grayscale(25%);
  cursor: pointer;
  outline: #515679;
}
.partner-item .partner-text {
  color: #ffffff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.partner-item .partner-text .text-mild {
  color: #ffffff;
}
.partner-item:hover .partner-text {
  color: #ffffff;
}
.partner-item:hover .partner-text .text-mild {
  color: #ffffff;
  transition-duration: 1000ms;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}
.z-40 {
  z-index: 40;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.m-1 {
  margin: 0.25rem;
}
.m-auto {
  margin: auto;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-8 {
  margin-left: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-\[16\/11\] {
  aspect-ratio: 16/11;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.min-h-screen {
  min-height: 100vh;
}
.w-2\/5 {
  width: 40%;
}
.w-28 {
  width: 7rem;
}
.w-3\/4 {
  width: 75%;
}
.w-36 {
  width: 9rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.grow {
  flex-grow: 1;
}
.table-auto {
  table-layout: auto;
}
.cursor-help {
  cursor: help;
}
.cursor-pointer {
  cursor: pointer;
}
.list-disc {
  list-style-type: disc;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: end;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-evenly {
  justify-content: space-evenly;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.border {
  border-width: 1px;
}
.border-dashed {
  border-style: dashed;
}
.border-gray-600 {
  border-opacity: 1;
  border-color: #4b5563;
}
.border-white\/30 {
  border-color: #ffffff;
}
.bg-\[\#0e0e0e\] {
  bg-opacity: 1;
  background-color: #0e0e0e;
}
.bg-black {
  bg-opacity: 1;
  background-color: #000000;
}
.bg-white {
  bg-opacity: 1;
  background-color: #ffffff;
}
.object-contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.p-0 {
  padding: 0;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-4 {
  padding-top: 1rem; /* 16px */
  padding-bottom: 1rem; /* 16px */
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.pb-0 {
  padding-bottom: 0.75rem;
}
.pb-0\.5 {
  padding-bottom: 0.125rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-24 {
  padding-bottom: 4rem;
}
.pb-32 {
  padding-bottom: 4rem;
}
.pb-36 {
  padding-bottom: 4rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pt-0 {
  padding-top: 0.5rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-20 {
  padding-top: 4rem;
}
.pt-4 {
  padding-top: 1rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono2 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-5xl {
  font-size: 3rem; /* 48px */
  line-height: 1;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-thin {
  font-weight: 100;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.italic {
  font-style: italic;
}
.leading-6 {
  line-height: 1.5rem;
}
.text-black {
  color: #000000;
}
.text-gray-600 {
  color: #4b5563;
}
.text-white {
  color: #ffffff;
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.hover\:border-white:hover {
  border-opacity: 1;
  border-color: #ffffff;
}

.hover\:bg-white:hover {
  bg-opacity: 1;
  background-color: #ffffff;
}

.hover\:text-black:hover {
  color: #000000;
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

@media (min-width: 640px) {
  .sm\:inline-block {
    display: inline-block;
  }
  .sm\:w-16 {
    width: 4rem;
  }
  .sm\:w-32 {
    width: 8rem;
  }
  .sm\:gap-4 {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .md\:mb-8 {
    margin-bottom: 2rem;
  }
  .md\:w-5\/6 {
    width: 83.333333%;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:gap-16 {
    gap: 4rem;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:py-32 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:w-48 {
    width: 12rem;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:gap-6 {
    gap: 1.5rem;
  }
  .lg\:gap-8 {
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .xl\:mb-0 {
    margin-bottom: 0px;
  }
  .xl\:inline-block {
    display: inline-block;
  }
  .xl\:flex {
    display: flex;
  }
  .xl\:w-36 {
    width: 9rem;
  }
  .xl\:max-w-5xl {
    max-width: 64rem;
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\:gap-12 {
    gap: 3rem;
  }
  .xl\:gap-14 {
    gap: 3.5rem;
  }
  .xl\:gap-4 {
    gap: 1rem;
  }
  .xl\:whitespace-nowrap {
    white-space: nowrap;
  }
}

/* Custom Styles */
/* Applies to WebKit browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #0e0e0e; /* Dark color for the thumb */
  /* border-radius: 4px; */
}

::-webkit-scrollbar-track {
  background-color: #fff; /* White color for the trail */
  /* border-radius: 4px; */
}

/* Optional: Add a hover effect */
::-webkit-scrollbar-thumb:hover {
  background-color: #444; /* Slightly lighter shade for hover */
}

/* Custom Headings */
.highlight-subtext {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
  max-width: 899px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Add text shadow to intro section text for better readability */
#intro .text-white {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#intro .font-mono2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 640px) {
  .highlight-subtext {
    font-size: 14px;
    line-height: 24px;
  }

  .invitation-title {
    font-size: 16px !important;
    line-height: 24px !important;
    padding-top: 20px;
  }
  .invitation-subtext {
    font-size: 14px !important;
    line-height: 24px !important;
  }

  .main-title {
    background-color: black;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 32px;
    justify-content: center;
    height: 400px;
  }

  .highlight-subtext {
    margin-bottom: 20px;
  }

  .section-header {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin-top: 1.5rem;
  }

  .section-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .program-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .highlight-subtext {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  .time-slot {
    font-size: 14px;
    line-height: 20px;
  }

  .program-subtext {
    max-width: 260px;
    text-align: center;
  }

  .ticket-highlight {
    font-size: 14px !important;
    line-height: 24px !important;
    text-align: center !important;
    max-width: 250px;
  }

  .register {
    font-size: 20px !important;
    line-height: 22px !important;
  }

  .ticket-ul {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .bg-gradient-overlay {
    background: linear-gradient(
      180deg,
      #000000 50%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
    left: 2px !important;
    width: 99% !important;
  }

  .free-access {
    margin: 10px 20px;
    height: 490px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .ticket-img {
    width: 328px !important;
    left: 2px !important;
  }

  .give-back,
  .give-back-subtext {
    text-align: center !important;
    font-size: 16px;
    line-height: 24px;
  }

  .crypto-codes {
    font-size: 14px;
    text-align: center;
    line-height: 20px;
  }

  .faqs {
    text-align: center !important;
  }

  .inward-border-access {
    box-shadow: none !important;
  }
  .ticket-button {
    font-size: 12px !important;
    line-height: 18px !important;
  }
}

.ticket-button {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-lg-size);
  line-height: var(--label-lg-lh);
  letter-spacing: 0;
}
.faqs {
  text-align: left;
}

.invitation-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
  text-align: center;
  max-width: 1145px;
}

.invitation-subtext {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  max-width: 800px;
  text-align: center;
}

.program-subtext {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  max-width: 800px;
}
.inward-border {
  box-shadow: inset 0 0 0 2px white; /* Inward shadow with 2px thickness */
}
.inward-border-access {
  box-shadow: inset 0 0 0 2px white; /* Inward shadow with 2px thickness */
}

.program-container {
  display: flex;
  flex-direction: column;
  max-width: 58rem;
}

.ticket-highlight {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
  color: white;
  text-align: left;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.ticket-highlight span {
  text-decoration-line: underline;
}

.ticket-ul {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.ticket-ul a {
  display: flex;
  align-items: center;
}

.white-square {
  width: 12px;
  height: 12px;
  background: white;
  margin-right: 18px;
  display: inline-block;
}

.ticket-img {
  width: 576px;
  height: 486px;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 1;
}

.bg-gradient-overlay {
  background: linear-gradient(90deg, #000000 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
  left: 2px;
  bottom: 2px;
  height: 99%;
  width: 100%;
  top: 2px;
}

.footer-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  text-align: left;
  text-underline-position: from-font;
  text-decoration: none;
  text-decoration-skip-ink: none;
}

/* MASONRY */
.masonry-container {
  display: grid;
  gap: 2px;
}

.person-item3 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: grayscale(0%);
}
.person-item2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* aspect-ratio: 1.4 / 1; */
  height: 200px;

  filter: grayscale(0%);
}

/* Default grid for smaller screens */
@media (min-width: 640px) {
  .masonry-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium screens (md) */
@media (min-width: 768px) {
  .masonry-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large screens (lg) */
@media (min-width: 1024px) {
  .masonry-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra-large screens (xl) - Two rows of 6 images */
@media (min-width: 1280px) {
  .masonry-container {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
  }

  .person-item2:nth-child(1) {
    width: 300px;
  }
}

.menu {
  gap: 20px;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media (min-width: 1024px) {
  /* lg breakpoint */
}

.show-mobile {
  display: none;
}

/* Show on smaller screens, like mobile */
@media (max-width: 768px) {
  /* Adjust as needed */
  .show-mobile {
    display: inline;
  }
}
.show-desk {
  display: none;
}

@media (min-width: 768px) {
  /* Adjust as needed */
  .show-desk {
    display: inline;
  }
}
.privacy-logo {
  height: 56px;
}

.speaker-card {
  position: relative;
  overflow: visible;
}

.speaker-description-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  min-height: 100%;
  background: #fff;
  color: #111;
  z-index: 10;
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 2rem 1.5rem;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.speaker-card:hover .speaker-description-overlay,
.speaker-card:focus-within .speaker-description-overlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.speaker-description-content {
  max-width: 400px;
  margin: 0 auto;
}

/* ===== Hero Section ===== */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
  padding: 0 0 2rem;
  padding-top: 64px; /* Account for navbar height */
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Hero logo styling */
.hero-logo {
  width: 80%;
  height: auto;
  max-width: 680px;
  object-fit: contain;
}

/* Statistics section - keep original desktop, responsive for mobile */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* Responsive adjustments for tablets and mobile */
@media (max-width: 768px) {
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
  }

  .stats-divider-original {
    display: none !important;
  }

  .stats-container .text-3xl {
    font-size: 2rem !important;
  }

  .stats-container .text-sm {
    font-size: 0.8rem !important;
  }

  .stats-container .text-xs {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .hero-tagline {
    font-size: 1.7rem;
    font-weight: 700;
    margin-top: 1rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-container .text-3xl {
    font-size: 1.75rem !important;
  }

  .stats-container .text-sm {
    font-size: 0.75rem !important;
  }

  .stats-container .text-xs {
    font-size: 0.65rem !important;
  }
}

/* Hero content — full-height column */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  flex: 1;
}

/* Top spacer — pushes logo to vertical center */
.hero-spacer {
  flex: 1;
}

/* Hero main group — takes remaining space, content at top */
.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2.25rem;
}

/* Badge wrapper — below the fold */
.hero-badge-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2rem 0 3rem;
}

/* Hero badge with play icon */
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: var(--label-md-size) !important;
  line-height: var(--label-md-lh);
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero main title */
.hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--display-sm-size);
  line-height: var(--display-sm-lh);
  letter-spacing: var(--display-sm-ls);
  text-transform: none;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  max-width: 100%;
}

/* Hero tagline as subtitle */
.hero-tagline {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--headline-sm-size);
  line-height: var(--headline-sm-lh);
  letter-spacing: 0;
  color: #ffffff;
  max-width: 500px;
  margin: 0;
}

.hero-tagline a {
  color: #ffffff;
  text-decoration: none;
}

.hero-tagline a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.venue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.venue-images-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.venue-img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  filter: grayscale(0%);
  transition: filter 0.3s ease;
  object-fit: cover;
  border-radius: 12px;
}

.venue-text {
  text-align: left;
}

@media (max-width: 768px) {
  .venue-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .hero-tagline {
    margin-top: -0.25rem;
  }

  .hero-main {
    gap: 1.5rem;
    padding-top: 3rem;
  }

}

@media (min-width: 1024px) {
  .hero-main {
    gap: 1.75rem;
    padding-top: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .hero-main {
    gap: 2rem;
  }
}

.card-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-sm-size);
  line-height: var(--title-sm-lh);
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-sm-size);
  line-height: var(--body-sm-lh);
  letter-spacing: var(--body-sm-ls);
  color: rgba(255, 255, 255, 0.7);
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.progress-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 0.8);
}

.progress-counter {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-md-size);
  line-height: var(--label-md-lh);
  letter-spacing: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
}

.story-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-md-size);
  line-height: var(--label-md-lh);
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.story-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===== About Section ===== */
#about {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.about-container {
  max-width: 1400px;
  margin: 2rem auto 0 auto;
  padding: 0.2rem 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .about-container {
    padding: 0.3rem 6rem 6rem 6rem;
  }
}

/* About Cards (Mission/Vision) */
.about-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.about-card {
  background: rgba(27, 35, 84, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;
}

@media (min-width: 768px) {
  .about-card {
    width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .about-card {
    width: 300px;
  }
}

/* About Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-headline {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-lg-size);
  line-height: var(--headline-lg-lh);
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 1024px) {
  .about-headline {
    font-size: var(--display-sm-size);
    line-height: var(--display-sm-lh);
    letter-spacing: var(--display-sm-ls);
  }
}

.about-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.about-cta {
  margin-top: 1rem;
  font-family: "Inter", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-container {
    padding: 1rem;
    padding-top: calc(48px + 1rem);
    padding-bottom: 1.5rem;
    height: 100svh;
    min-height: 100svh;
    box-sizing: border-box;
    align-items: stretch;
  }

  .hero-badge-wrap {
    padding: 1.5rem 0 2rem;
  }

  .about-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 500 !important;
    font-size: var(--label-sm-size) !important;
    line-height: var(--label-sm-lh);
    letter-spacing: var(--label-sm-ls);
    border: none;
    width: fit-content;
    margin: 0 auto;
  }

  .hero-logo {
    width: 100%;
    max-width: 560px;
  }

  .hero-container::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .hero-content {
    padding: 0;
    flex: 1;
  }

  .hero-spacer {
    flex: 0.55;
  }

  .hero-main {
    gap: 0.75rem;
    padding-top: 2rem;
  }

  .hero-main .feature-btn {
    margin-top: auto;
  }

  .about-headline {
    font-size: var(--headline-md-size);
    line-height: var(--headline-md-lh);
  }

  .hero-tagline {
    font-size: 1.15rem;
    max-width: 90%;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 1rem 0.75rem;
    padding-top: calc(48px + 1rem);
    padding-bottom: 1rem;
  }

  .hero-logo {
    width: 100%;
    max-width: 560px;
  }

  .hero-container::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .hero-main {
    gap: 0.5rem;
    padding: 1rem 0.75rem 0;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .about-container {
    padding: 0.15rem 1rem 3rem 1rem;
    gap: 3rem;
  }

  .about-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    width: 100%;
    max-width: 280px;
  }

  .about-headline {
    font-size: 1.5rem;
  }

  .about-description {
    font-size: 0.95rem;
  }
}

/* Navbar Styles */
.navbar-background {
  background: linear-gradient(90deg, #202030 0%, #202030 60%, #1a1a1a 100%);
  position: relative;
}

.navbar-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    );
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}

.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #8a8aff;
}

.nav-link.active {
  color: #8a8aff;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #8a8aff;
}

.nav-button {
  background: transparent;
  border: 1px solid #333333;
  border-radius: 9999px;
  color: #8a8aff;
  padding: 8px 16px;
  font-size: 1.125rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  border-color: #8a8aff;
  background-color: rgba(138, 138, 255, 0.1);
}

/* Minimalistic Navbar Styles */
.navbar-minimal {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
}

/* Add margin to all sections except hero and about */
#intro ~ *:not(#about) {
  margin-left: 2rem;
  margin-right: 2rem;
}

@media (min-width: 768px) {
  #intro ~ *:not(#about) {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

@media (min-width: 1024px) {
  #intro ~ *:not(#about) {
    margin-left: 6rem;
    margin-right: 6rem;
  }
}

.nav-link-minimal {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link-minimal:hover {
  color: #515679;
}

.nav-link-minimal.active {
  color: #ffffff;
}

.nav-button-minimal {
  background: transparent;
  border: 1px solid #515679;
  border-radius: 9999px;
  color: #ffffff;
  padding: 8px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-lg-size);
  line-height: var(--label-lg-lh);
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button-minimal a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.text-center.text-xl.mt-10.mb-10 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-lh);
}

.nav-button-minimal:hover {
  background-color: rgba(81, 86, 121, 0.1);
}

/* Mobile Navigation Styles */
.mobile-nav {
  display: none;
}

.mobile-nav-controls {
  position: relative;
  z-index: 50;
}

.mobile-nav {
  z-index: 50;
  position: relative;
}

.mobile-nav-controls label {
  cursor: pointer;
  color: #ffffff;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-nav-controls label:hover {
  color: #515679;
}

.mobile-menu-panel {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 1);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: menuFadeIn 0.2s ease forwards;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2.4rem;
  color: white;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}

@keyframes menuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 0 2.5rem;
}

.mobile-nav-item {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-panel .nav-link-minimal {
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

/* Data-hidden attribute styles */
[data-hidden="true"] {
  display: none !important;
}

[data-hidden="false"] {
  display: block !important;
}

/* Checkbox-based toggle logic */
#mobile-menu-toggle:checked ~ .mobile-menu-panel {
  display: flex !important;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .navbar-minimal {
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(0, 0, 0, 1); /* fully opaque on mobile — no bleed-through */
  }
}

/* Desktop: hide mobile elements */
@media (min-width: 768px) {
  .mobile-nav,
  .mobile-menu-panel {
    display: none !important;
  }
}

/* Vibes and Tickets sections spacing */
.bg-black.text-white.px-4 {
  margin-left: 2rem;
  margin-right: 2rem;
}

@media (min-width: 768px) {
  .bg-black.text-white.px-4 {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .bg-black.text-white.px-4 {
    margin-left: 6rem;
    margin-right: 6rem;
  }
}

/* Feature carousel styles */
.feature-carousel {
  background: transparent;
  position: relative;
  margin-top: 0;
}

@media (max-width: 768px) {
  .feature-carousel {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Removed background overlay for transparent carousel */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 20px;
  padding: 0 !important;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-lh);
  letter-spacing: 0;
  color: white;
  margin-bottom: 0.75rem;
  text-transform: none;
  padding: 0 32px;
  margin-top: 1.25rem;
}

.feature-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  padding: 0 32px 1.5rem;
  flex-grow: 1;
}

.feature-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  color: white;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
}

.feature-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.carousel-nav.prev {
  left: 2rem;
}

.carousel-nav.next {
  right: 2rem;
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* Feature accordion - hidden on desktop, visible on mobile */
.feature-accordion {
  display: none;
}

@media (max-width: 768px) {
  .feature-grid-desktop {
    display: none;
  }

  .feature-accordion {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }

  .feature-accordion .faq-content.active {
    max-height: 800px;
  }

  .carousel-nav {
    display: none;
  }

  /* Fix margin issues on mobile */
  #faq {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .footer {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ========== Theme Cards Section ========== */

.theme-grid-desktop {
  display: block;
}

.theme-accordion {
  display: none;
}

.theme-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-flip-card {
  width: calc((100% - 3rem) / 3);
  cursor: pointer;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.theme-flip-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* Stack front and back on same grid cell */
.theme-flip-inner {
  display: grid;
  padding: 2.5rem 2rem;
  text-align: center;
}

.theme-flip-front,
.theme-flip-back {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}

.theme-flip-front {
  opacity: 1;
}

.theme-flip-back {
  opacity: 0;
}

.theme-flip-card:hover .theme-flip-front {
  opacity: 0;
}

.theme-flip-card:hover .theme-flip-back {
  opacity: 1;
}

.theme-flip-back p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-md-size);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.theme-flip-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-lh);
  color: white;
  margin-bottom: 0.75rem;
  min-height: 3.2em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.theme-flip-question {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .theme-grid-desktop {
    display: none;
  }

  .theme-accordion {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }

  .theme-accordion .faq-question {
    font-size: var(--title-lg-size);
    line-height: var(--title-lg-lh);
  }

  .theme-accordion .faq-answer p em {
    display: block;
    margin-bottom: 1rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #faq {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .footer {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Feature section adjustments for very small screens */

  .feature-card {
    padding: 0 !important;
  }
}

#previous-events {
  background-color: transparent !important;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  color: var(--brand-white);
  padding: 2rem 0;
  margin: var(--section-gap) 2rem 0 2rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 0;
}

.testimonials-badge {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--brand-navy) 0%,
    var(--brand-gray) 100%
  );
  color: var(--brand-white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-sm-size);
  line-height: var(--label-sm-lh);
  letter-spacing: var(--label-sm-ls);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.testimonials-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--headline-lg-size);
  line-height: var(--headline-lg-lh);
  letter-spacing: 0;
  color: var(--brand-white);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  color: var(--brand-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: none;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  border: none;
  text-align: left;
  align-items: left;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-quote {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  color: var(--brand-white);
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand-navy);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-md-size);
  line-height: var(--title-md-lh);
  letter-spacing: 0;
  color: var(--brand-white);
  margin-bottom: 0.25rem;
}

.author-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-sm-size);
  line-height: var(--body-sm-lh);
  letter-spacing: var(--body-sm-ls);
  color: rgba(255, 255, 255, 0.55);
}

/* Testimonials Responsive Design */
@media (max-width: 768px) {
  .testimonials-section {
    margin: var(--section-gap) 1rem 0 1rem;
    padding: 2.5rem 0;
    border-radius: 20px;
  }

  .testimonials-container {
    padding: 0 1.5rem;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  /* Show only first 2 cards on mobile */
  .testimonial-card:nth-child(n+3) {
    display: none;
  }

  .testimonials-grid.testimonials-expanded .testimonial-card:nth-child(n+3):not(.testimonial-hidden) {
    display: block;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .testimonial-quote::before {
    font-size: 2.5rem;
    top: -0.75rem;
    left: -0.25rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    margin: var(--section-gap) 0.5rem 0 0.5rem;
    padding: 3rem 0;
    border-radius: 16px;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonials-subtitle {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    gap: 0.75rem;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
  }
}

/* === TESTIMONIALS SHOW MORE FUNCTIONALITY === */
.testimonial-hidden {
  display: none;
}

.testimonials-show-more-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0 0;
}

.testimonials-show-more-btn {
  background: linear-gradient(
    90deg,
    var(--brand-navy) 0%,
    var(--brand-gray) 100%
  );
  color: var(--brand-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-lg-size);
  line-height: var(--label-lg-lh);
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonials-show-more-btn:hover {
  background: linear-gradient(
    90deg,
    var(--brand-gray) 0%,
    var(--brand-navy) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.testimonials-show-more-btn:active {
  transform: translateY(0);
}

.testimonials-show-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.testimonials-show-more-btn:hover::before {
  left: 100%;
}

/* Responsive design for show more button */
@media (max-width: 768px) {
  .testimonials-show-more-container {
    margin: 2rem 0;
  }

  .testimonials-show-more-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

.language-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--brand-white);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.language-btn:hover,
.language-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  border-color: var(--brand-white);
}

/* === FAQ ACCORDION STYLES === */

/* FAQ and Footer Wrapper */
.faq-footer-wrapper {
  margin-top: var(--section-gap);
  margin-left: 6rem;
  margin-right: 6rem;
}

#faq {
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  z-index: 10;
}

/* Force margins for FAQ section */
body #faq,
html #faq,
#faq[style*="margin"] {
  margin-left: 2rem;
  margin-right: 2rem;
}

.faq-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: none;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-lh);
  letter-spacing: 0;
  color: var(--brand-white);
  text-align: left;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--brand-white);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.faq-icon.active {
  transform: rotate(45deg);
  background: var(--brand-navy);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-content.active {
  max-height: 500px;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

.faq-answer {
  padding: 0.5rem 2rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--brand-white);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--brand-gray);
}

/* FAQ Responsive Design */
@media (max-width: 1200px) {
  .faq-footer-wrapper {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  #faq {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .faq-container {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .faq-footer-wrapper {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  #faq {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .faq-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .faq-header {
    padding: 1.25rem 1.5rem;
  }

  .faq-question {
    font-size: 1.25rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
    font-size: 0.95rem;
  }

  .faq-icon {
    font-size: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

@media (max-width: 480px) {
  .faq-footer-wrapper {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  #faq {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .faq-container {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-header {
    padding: 1rem;
  }

  .faq-question {
    font-size: 1.175rem;
    line-height: 1.3;
  }

  .faq-answer {
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .faq-icon {
    font-size: 1.125rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 360px) {
  .faq-footer-wrapper {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  #faq {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .faq-container {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .faq-header {
    padding: 0.875rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .faq-answer {
    padding: 0 0.875rem;
    font-size: 0.85rem;
  }
}

/* === TEAM SHOWCASE STYLES === */
.team-showcase {
  padding: 2rem 0 2rem 0;
  margin: var(--section-gap) 2rem 0;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.team-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 32px;
}

.team-showcase > * {
  position: relative;
  z-index: 2;
}

.team-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.team-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-showcase-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--display-md-size);
  line-height: var(--display-md-lh);
  letter-spacing: var(--display-md-ls);
  color: var(--brand-white);
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.team-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  padding: 3rem 2rem;
}

.team-avatars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 24px;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  z-index: 2;
}

.team-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(27, 35, 84, 0.2) 0%,
    rgba(81, 86, 121, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.team-avatar:hover::before {
  opacity: 1;
}

.team-avatar:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.team-avatar:hover img {
  transform: scale(1.1);
}

/* Center avatar (featured) */
.team-avatar.featured {
  width: 140px;
  height: 140px;
  border-width: 4px;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Team Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.team-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.team-member .team-name {
  min-height: 2.65em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member .team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.team-member .team-avatar:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.team-member .team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.team-name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--title-md-size);
  line-height: var(--title-md-lh);
  letter-spacing: 0;
  color: var(--brand-white);
  margin: 0 0 0.5rem 0;
}

.team-handle {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--label-md-size);
  line-height: var(--label-md-lh);
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-handle:hover {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.team-handle-no-link {
  cursor: default;
  opacity: 0.7;
}

.team-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--brand-white);
  font-size: 1.25rem;
}

.nav-arrow:hover {
  background: linear-gradient(
    135deg,
    var(--brand-navy) 0%,
    var(--brand-gray) 100%
  );
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-arrow:active {
  transform: translateY(0);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .team-showcase {
    margin: var(--section-gap) 1.5rem 0;
    padding: 2.5rem 0 2.5rem 0;
  }

  .team-grid {
    max-width: 900px;
    gap: 2.5rem 1.5rem;
  }

  .team-showcase-title {
    font-size: 3.25rem;
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .team-showcase {
    margin: var(--section-gap) 1rem 0;
    padding: 2.25rem 0 2.25rem 0;
  }

  .team-showcase-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    max-width: 800px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    max-width: 750px;
    margin: 2.5rem auto;
  }

  .team-member .team-avatar {
    width: 110px;
    height: 110px;
  }

  .team-name {
    font-size: 1rem;
  }

  .team-handle {
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
    max-width: 700px;
    padding: 0 0.5rem;
  }

  .team-member .team-avatar {
    width: 100px;
    height: 100px;
  }

  .team-name {
    font-size: 0.95rem;
  }

  .team-handle {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .team-showcase {
    margin: var(--section-gap) 1rem 0;
    padding: 2rem 0 2rem 0;
    border-radius: 24px;
  }

  .team-showcase::before {
    border-radius: 24px;
  }

  .team-showcase-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    max-width: 500px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .team-member .team-avatar {
    width: 100px;
    height: 100px;
  }

  .team-name {
    font-size: 0.95rem;
  }

  .team-handle {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }

}

@media (max-width: 600px) {
  .team-showcase {
    margin: var(--section-gap) 0.75rem 0;
    padding: 1.75rem 0 1.75rem 0;
    border-radius: 20px;
  }

  .team-showcase-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    max-width: 450px;
    margin: 1.5rem auto;
    padding: 0 0.75rem;
  }

  .team-member .team-avatar {
    width: 90px;
    height: 90px;
  }

  .team-name {
    font-size: 0.9rem;
  }

  .team-handle {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .team-showcase {
    margin: var(--section-gap) 0.5rem 0;
    padding: 1.5rem 0 1.5rem 0;
    border-radius: 16px;
  }

  .team-showcase-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 400px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    max-width: 400px;
    margin: 1.5rem auto;
    padding: 0 0.5rem;
  }

  .team-member .team-avatar {
    width: 80px;
    height: 80px;
  }

  .team-name {
    font-size: 0.85rem;
    min-height: 2.1em;
  }

  .team-handle {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }

}

@media (max-width: 360px) {
  .team-showcase {
    margin: var(--section-gap) 0.25rem 0;
    padding: 1.25rem 0 1.25rem 0;
  }

  .team-showcase-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 340px;
    gap: 1.5rem 0.75rem;
    margin: 1rem auto;
  }

  .team-member .team-avatar {
    width: 70px;
    height: 70px;
  }

  .team-name {
    font-size: 0.8rem;
    min-height: 2em;
  }

  .team-handle {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }
}

/* === GRAYSCALE IMAGES === */
.team-avatar img {
  filter: grayscale(0%);
}

/* === PREVIOUS EVENTS SECTION ROUNDED CORNERS FIX === */
.person-item img.rounded-xl {
  border-radius: 0.75rem !important;
  display: block !important;
}

/* Ensure rounded corners work on all previous events images */
div[class*="bg-black"] .person-item img {
  border-radius: 0.75rem !important;
}

/* === VOLUNTEER SECTION ROUNDED CORNERS === */
.volunteer-section img.rounded-xl,
.volunteer-section .rounded-xl img {
  border-radius: 0.75rem !important;
  display: block !important;
}

#volunteer-section {
  background-color: transparent !important;
  margin-top: var(--section-gap);
}

/* === SPEAKERS & MEMBERS BRAND STYLING === */
.person-item {
  border-radius: 20px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.person-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.partner-item {
  border-radius: 20px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
}

.partner-text a {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  color: var(--brand-white) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.partner-text a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.partner-text .text-xl {
  font-size: var(--title-md-size) !important;
  line-height: var(--title-md-lh);
  letter-spacing: 0;
}

.partner-text .text-sm {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: var(--label-sm-size) !important;
  line-height: var(--label-sm-lh);
  letter-spacing: var(--label-sm-ls);
  color: rgba(255, 255, 255, 0.7) !important;
}

.partner-img {
  border-radius: 15px 15px 0 0 !important;
  transition: all 0.3s ease;
}

.partner-item:hover .partner-img {
  transform: scale(1.02);
}

.speaker-name {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: var(--title-md-size) !important;
  line-height: var(--title-md-lh);
  letter-spacing: 0;
  color: var(--brand-white) !important;
}

.text-mild {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: var(--label-md-size) !important;
  line-height: var(--label-md-lh);
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-mild a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-mild a:hover {
  color: var(--brand-white) !important;
  text-decoration: underline;
}

.markdown-basic {
  font-family: "Inter", sans-serif !important;
  font-weight: 400 !important;
  font-size: var(--body-md-size) !important;
  line-height: var(--body-md-lh);
  letter-spacing: var(--body-md-ls);
  color: rgba(255, 255, 255, 0.8) !important;
  /* Text clamping for speaker descriptions */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(var(--body-md-lh) * 2);
}

.markdown-basic p {
  margin: 0;
}

.markdown-basic a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.markdown-basic a:hover {
  color: var(--brand-white) !important;
  text-decoration: underline;
}

.person-item img {
  border-radius: 15px 15px 0 0 !important;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

@media (max-width: 768px) {
  .speaker-name {
    font-size: 0.9rem !important;
  }

  .text-mild {
    font-size: 0.8rem !important;
  }

  /* Hide Twitter handles on mobile (only when there's an org + handle, hide the handle) */
  .person-item .text-mild + .text-mild {
    display: none !important;
  }

  .markdown-basic {
    font-size: 0.75rem !important;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    max-height: none;
  }

  /* Hide partner text on mobile - show only images */
  .partner-item .partner-text {
    display: none !important;
  }

  /* Adjust partner image border-radius when text is hidden */
  .partner-item .partner-img {
    border-radius: 20px !important;
  }
}

/* === SPEAKER DESCRIPTION TEXT CLAMPING === */
/* Fallback for browsers that don't support -webkit-line-clamp */
@supports not (-webkit-line-clamp: 2) {
  .markdown-basic {
    position: relative;
    max-height: 2.8em;
    overflow: hidden;
  }

  .markdown-basic::after {
    content: "...";
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--brand-black);
    padding-left: 0.5em;
  }
}

/* Mobile fallback */
@media (max-width: 768px) {
  @supports not (-webkit-line-clamp: 2) {
    .markdown-basic {
      max-height: 2.1em;
    }
  }
}

/* === CTA PARTNER STYLES === */
.cta-partner-section {
  padding: 2rem 2rem;
  margin: 1.5rem auto;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border: none;
  width: fit-content;
  max-width: 90vw;
}

.cta-partner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;
}

.cta-partner-container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  background-color: transparent;
}

.cta-partner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-partner-badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  border: 1px solid transparent;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-partner-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-partner-title {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: var(--display-sm-size) !important;
  line-height: var(--display-sm-lh);
  letter-spacing: var(--display-sm-ls);
  color: var(--brand-white);
  margin: 0;
}

.cta-partner-description {
  font-family: "Inter", sans-serif !important;
  font-weight: 400 !important;
  font-size: var(--body-lg-size) !important;
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
  max-width: 600px;
  margin: 0;
}

.cta-partner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  flex-direction: column;
  align-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-partner-btn {
  display: block !important;
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  font-size: var(--label-lg-size) !important;
  line-height: var(--label-lg-lh);
  letter-spacing: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: none;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}

.cta-partner-btn.primary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  border-color: none;
}

.cta-partner-btn.primary:hover {
  background: linear-gradient(90deg, #1b224f 0%, #090c16 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-partner-btn.secondary {
  background: transparent;
  color: var(--brand-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-partner-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cta-partner-section {
    padding: 1.5rem 1.5rem;
    margin: 1rem auto;
  }

  .cta-partner-title {
    font-size: 2rem !important;
  }

  .cta-partner-description {
    font-size: 1rem !important;
  }

  .cta-partner-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-partner-btn {
    width: fit-content;
    margin: 0 auto;
  }
}

/* === MOBILE FOOTER STYLES === */

/* Ensure footer element is always full width */
footer.mobile-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background-color: #000000;
}

/* Footer inner layout */
.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  gap: 2rem;
}

.footer-col-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-col-center {
  flex: 1;
  text-align: center;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.footer-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--body-lg-size);
  line-height: var(--body-md-lh);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 0;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  filter: brightness(0) invert(1);
}

.footer-social-icon:hover {
  opacity: 1;
}

.footer-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile: stack vertically */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .footer-col-right {
    align-items: center;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1.25rem;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .footer-inner {
    padding: 2rem 1.25rem;
  }

  .footer-description {
    font-size: var(--body-md-size);
  }

  .footer-link {
    font-size: var(--body-md-size);
  }
}

/* CUSTOM UPDATES BY DANI */

/* Offset anchor scroll targets so fixed navbar doesn't cover section headings */
#intro, #about, #partners, #tickets, #testimonials, #faq, #speakers, #team {
  scroll-margin-top: 84px;
}

/* Buttons: larger padding + font on mobile for tap targets */
@media (max-width: 768px) {
  .feature-btn,
  .team-badge,
  .cta-partner-badge {
    padding: 0.8rem 2.25rem;
    font-size: var(--label-md-size);
  }
}

