@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:wght@100;200;300;400&family=Figtree:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.floriankarsten.com/fk-grotesk-neue');
@font-face {
  font-family: "Micro Technic Extended Outline Bold";
  src: url("fonts/Micro\ Technic\ Extended\ Outline\ Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue Condensed Bold";
  src: url("fonts/Helvetica\ Neue\ Condensed\ Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Condensed Regular";
  src: url("fonts/Helvetica\ Condensed\ Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Arial Narrow Bold";
  src: url("fonts/Arial\ Narrow\ Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Arial Narrow";
  src: url("fonts/Arial\ Narrow.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Neue Helvetica Condensed BQ Regular";
  src: url("fonts/Neue\ Helvetica\ Condensed\ BQ\ Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/static/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/static/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/static/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Syriac Western";
  src: url("fonts/Noto_Sans_Syriac_Western/static/NotoSansSyriacWestern-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Syriac Western";
  src: url("fonts/Noto_Sans_Syriac_Western/static/NotoSansSyriacWestern-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Syriac Western";
  src: url("fonts/Noto_Sans_Syriac_Western/static/NotoSansSyriacWestern-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Syriac Western";
  src: url("fonts/Noto_Sans_Syriac_Western/static/NotoSansSyriacWestern-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Syriac Western";
  src: url("fonts/Noto_Sans_Syriac_Western/static/NotoSansSyriacWestern-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Syriac Western";
  src: url("fonts/Noto_Sans_Syriac_Western/static/NotoSansSyriacWestern-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "FK Grotesk Neue";
  src: url("fonts/FK Grotesk Neue Trial/FKGroteskNeueTrial-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FK Grotesk Neue";
  src: url("fonts/FK Grotesk Neue Trial/FKGroteskNeueTrial-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "FK Grotesk Neue";
  src: url("fonts/FK Grotesk Neue Trial/FKGroteskNeueTrial-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  font-family: "Neue Helvetica Condensed BQ Regular", sans-serif;
  margin: 0 auto;
  width: min(90em, 100%);
}

header {
  display: block;
  justify-content: space-between;
  align-items: center;
  padding: 0.7em 0;
  font-family: "Arial Narrow Bold", sans-serif;
}

.logo-link {
  display: flex;
  font-family: "Micro Technic Extended Outline Bold", sans-serif;
  justify-content: center;
  gap: 0.2em;
  text-decoration: none;
  color: white;
}

.logo-link h1 {
  font-size: 2.4em;
  font-weight: 300;
}

.logo {
  width: 2em;   /* control image size here */
  height: auto;  /* keeps aspect ratio */
  object-fit: contain;
}


/* nav */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 1em;
  font-size: 1em;
  font-weight: 500;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
}

/* buttons */
.standard-button {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 0.8em 1.2em;
  font-weight: 500;
  transition: all 0.2s ease;   /* smooth hover */
  min-height: 1.2em;
  border: none;
}

.standard-button:hover {
  color: black;
  background-color: white;
}

.standard-button:active {
  opacity: 0.7;
}

.hero-container {
  width: calc(100% - 2em);
  margin: -2em 1em 0 1em;
  aspect-ratio: 1.618;
  position: relative;
  overflow: hidden;
}

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 0;
}

hr, .internal-break {
  border: none;
  height: 1px;
  margin: 1em 0;
}

hr { 
  background: white; 
  margin: 1em;
}
.internal-break { 
  background: gray; 
}

.mission-section {
  margin: 8px;
  padding-top: 24px;
  padding-left: 3em;
  padding-right: 3em;
  padding-bottom: 0;
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  align-items: start;
}

.mission-left {
  color: white;
}

.mission-heading {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  margin-top: 3.2em;
  margin-bottom: 0.5em;
  color: #ccc;
}

.mission-title {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 2.6em;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.mission-left p {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.5em;
}

.mission-right {
  color: white;
}

.mission-right p {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

.mission-link {
  color: white;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.mission-link:hover {
  color: #ccc;
}

.team-section {
  margin: 3em 1em;
  padding: 0 3em;
}

.team-container {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.team-left {
  color: white;
}

.team-heading {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  margin-top: 0.2em;
  margin-bottom: 0.5em;
  color: #ccc;
}

.team-right {
  color: white;
}

.team-right p {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.2em;
}

.team-right a {
  color: white;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.team-right a:hover {
  color: #ccc;
}

.demo-section {
  margin: 3em 1em;
  padding: 0 3em;
}

.demo-container {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.demo-heading {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  margin: 0;
  color: #ccc;
  text-align: center;
}

.video-comparison {
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #333; /* Fallback background to see if videos are there */
}

.video-without, .video-with {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-with {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.comparison-slider {
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 2px black;
  z-index: 2;
}

.video-labels {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 1.5em auto 0 auto;
  padding: 0;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  color: white;
}

.label-with {
  background: rgba(0, 0, 0, 0.7);
  padding: 0.8em 1.2em;
  border-radius: 4px;
  text-align: center;
  min-width: 120px;
  margin-right: 30em;
}

.label-without {
  background: rgba(0, 0, 0, 0.7);
  padding: 0.8em 1.2em;
  border-radius: 4px;
  text-align: center;
  min-width: 120px;
  margin-left: -3em;
}

.external-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  bottom: 63px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.slider-track {
  width: 100%;
  height: 20px;
  background: black;
  border: 2px solid white;
  position: relative;
  cursor: pointer;
}

.slider-thumb {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 30px;
  height: 26px;
  background: black;
  border: 2px solid white;
  border-radius: 3px;
  cursor: grab;
  transform: translateX(-50%);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-thumb::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 8px;
  width: 12px;
  height: 6px;
  background: black;
  border: 2px solid white;
  border-radius: 2px;
  z-index: 1;
}

.slider-thumb::after {
  content: '';
  width: 14px;
  height: 14px;
  background: #333;
  border-radius: 50%;
  border: 2px solid white;
  position: relative;
  z-index: 2;
}

.slider-thumb:active {
  cursor: grabbing;
}

.slider-thumb:hover {
  transform: translateX(-50%) scaleY(1.1);
}

/* Models Demo Section */
.models-demo-section {
  margin: 8px;
  padding-top: 24px;
  padding-left: 3em;
  padding-right: 3em;
  padding-bottom: 2em;
}

/* Remove any default margins from models elements */
.models-demo-section *:not(.stripe-modal *):not(.success-modal *) {
  margin-block-start: 0;
  margin-block-end: 0;
}

.models-demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: center;
}

.models-left {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  transform: translateY(1em);
}

.models-brand {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #ccc;
}

.models-title {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 2.6em;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin: 0;
  margin-top: 0.3em;
}

.models-description {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  margin: 0;
}

.models-link {
  color: white;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.4em;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.2s ease;
  width: fit-content;
}

.models-link:hover {
  color: #ccc;
}

.models-right {
  display: flex;
  flex-direction: column;
  gap: 2em;
  transform: translateY(1em);
}

.demo-container-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-video-background {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.demo-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.demo-video-bg.fade-out {
  opacity: 0;
}


.demo-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 1em;
}

.demo-tab {
  background: black;
  color: white;
  border: none;
  padding: 1em;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.demo-tab:hover {
  background: #333;
}

.demo-tab.active {
  background: #444;
  color: white;
}

.demo-tab:first-child {
  border-bottom-left-radius: 0;
}

.demo-tab:last-child {
  border-bottom-right-radius: 0;
}


/* Preorder Section */
.preorder-section {
  margin: 3em 1em;
  padding: 0 3em 2em 3em;
}

.preorder-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
}

.preorder-left {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.camera-slideshow {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.camera-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.camera-image.active {
  opacity: 1;
  position: relative;
}

/* White color for H-01 heading in camera section */
.preorder-left .mission-title {
  color: white;
}

.preorder-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
}

.preorder-heading {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #ccc;
  text-align: left;
}

.preorder-title {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  color: white;
  margin: 0;
}

.preorder-description {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  margin: 1em 0;
}

.pricing {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 1.5em 0;
}

.original-price {
  font-size: 1.5em;
  color: #888;
  text-decoration: line-through;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.preorder-price {
  font-size: 2.2em;
  color: white;
  font-weight: 600;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.savings {
  background: #e8b4a0;
  color: black;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 500;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.preorder-btn {
  background: white;
  color: black;
  border: 2px solid white;
  padding: 0.8em 1.5em;
  font-size: 1em;
  font-weight: 600;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  width: fit-content;
}

.preorder-btn:hover {
  background: black;
  color: white;
  border: 2px solid white;
}

.comparison-table-container {
  margin: 2em 0 1em 0;
}

.camera-description {
  margin: 1em 0 2em 0;
}

.camera-description p {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  margin: 0 0 1em 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th,
.comparison-table td {
  padding: 0.8em 1em;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.9em;
}

.comparison-table td {
  font-size: 0.9em;
}

.efference-row {
  background: rgba(232, 180, 160, 0.15);
}

.efference-row td {
  color: white;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
  text-align: center;
}

/* Stripe Modal */
.stripe-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.success-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.success-modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2em;
  border: 3px solid black;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  font-family: "Figtree", sans-serif;
}

.success-close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}

.success-close:hover {
  color: #666;
}

.success-modal-content h2 {
  color: black;
  margin: 1em 0 0.5em 0;
  font-size: 1.8em;
  font-weight: 600;
}

.success-modal-content p {
  color: black;
  margin: 0.8em 0;
  font-size: 1.1em;
}

.success-close-btn {
  background-color: black;
  color: white;
  border: 3px solid black;
  padding: 0.8em 2em;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
  margin-top: 1.5em;
}

.success-close-btn:hover {
  background-color: white;
  color: black;
}

.stripe-modal-content {
  background-color: white;
  margin: 2% auto;
  padding: 0;
  border: 3px solid black;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.stripe-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}

.stripe-close:hover {
  color: black;
}

.stripe-header {
  padding: 2em 2em 1em 2em;
  border-bottom: 1px solid #eee;
}

.stripe-header h2 {
  margin: 0 0 0.5em 0;
  color: #333;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.stripe-header p {
  margin: 0;
  color: #666;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.stripe-form {
  padding: 2em;
}

.product-summary {
  background: #f8f9fa;
  padding: 1.5em;
  border: 2px solid black;
  margin-bottom: 2em;
}

.product-info {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 1em;
  width: 100%;
}

.checkout-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.product-details h3 {
  margin: 0;
  color: #333;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.product-details p {
  margin: 0.2em 0 0 0;
  color: #666;
  font-size: 0.9em;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin: 0.5em 0;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.price-line.total {
  border-top: 1px solid #ddd;
  padding-top: 0.5em;
  margin-top: 1em;
  font-weight: 600;
}

.original {
  text-decoration: line-through;
  color: #888;
}

.discount {
  color: #e8b4a0;
}

.total-price {
  color: #333;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5em;
}

.form-group label {
  display: block;
  margin-bottom: 0.5em;
  color: #333;
  font-weight: 500;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.form-input {
  width: 100%;
  padding: 0.8em;
  border: 2px solid black;
  font-size: 1em;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: black;
  box-shadow: 0 0 0 2px black;
}

.card-row {
  display: flex;
  gap: 1em;
  margin-top: 0.5em;
}

.form-input.half {
  width: calc(50% - 0.5em);
}

.stripe-pay-btn {
  width: 100%;
  background: black;
  color: white;
  border: 3px solid black;
  padding: 1em;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  transition: all 0.2s ease;
}

.stripe-pay-btn:hover {
  background: white;
  color: black;
  border-color: black;
}

.shipping-info {
  text-align: center;
  color: #666;
  font-size: 0.9em;
  margin-top: 1em;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.stripe-disclaimer {
  text-align: center;
  color: #888;
  font-size: 0.9em;
  margin-top: 1em;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.camera-section {
  margin: 3em 1em;
  padding: 0 3em;
}

.camera-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}

.camera-heading {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  margin: 0 0 0.5em 0;
  color: #ccc;
  text-align: left;
}

.camera-image-container {
  display: flex;
  justify-content: center;
}

.camera-image {
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

.models-section {
  margin: 3em 1em;
  padding: 0 3em;
}

/* Force mobile override at all screen sizes below 768px */
@media screen and (max-width: 767px) {
  .models-section, .models-demo-section {
    margin: 2em 0.5em !important;
    padding: 0 0.5em !important;
  }
}

/* Comprehensive mobile override for ALL sections and phone sizes */
@media screen and (max-width: 768px) {
  /* Prevent horizontal scrolling */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  /* Ensure all containers fit viewport */
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Target ALL section types */
  .mission-section, 
  .models-section, 
  .models-demo-section, 
  .preorder-section, 
  .team-section,
  section {
    margin: 1.5em 0.5em !important;
    padding: 0 0.5em !important;
    width: auto !important;
    max-width: 100% !important;
  }
  
  /* Remove any inherited margins that could cause the spacing issue */
  .models-demo-section *:not(.stripe-modal *):not(.success-modal *) {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  
  /* Target content containers - align all text with headings */
  .models-left, 
  .models-right,
  .mission-left,
  .mission-right,
  .preorder-left,
  .preorder-right,
  .team-left,
  .team-right {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Ensure models content has consistent sizing */
  .models-description {
    font-size: 1.1em !important;
    line-height: 1.6 !important;
    margin: 0.5em 0 !important;
  }
  
  .models-link {
    font-size: 1.1em !important;
    margin-top: 1em !important;
  }
  
  /* Target demo containers */
  .models-demo-container,
  .demo-container-new {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Ensure videos and images don't overflow */
  video, img, iframe {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }
  
  /* Ensure text doesn't cause overflow */
  h1, h2, h3, h4, h5, h6, p, div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }
  
  /* Ensure hero container doesn't overflow */
  .hero-container {
    margin: -1em 0 0 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  /* Ensure tables are responsive */
  table {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    display: block !important;
  }
}

.models-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.models-heading {
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 2.0em;
  font-weight: 400;
  margin: 0;
  color: #ccc;
  text-align: center;
}

footer {
  text-align: center;
  margin: 0 1em;
  padding-bottom: 1em;
}

footer p {
  color: gray;
  padding-bottom: 0.5em;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.footer-links {
  color: white;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
}

.footer-links a:hover {
  color: gray;
}

.footer-links a:active {
  opacity: 0.7;
}

/* bottom-left tagline */
.video-overlay {
  position: absolute;
  bottom: 2em;
  left: 1em;
  color: #ffffff;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.9em;
  font-weight: 400;       /* same thickness as screenshot */
  letter-spacing: -0.01em; /* decreased spacing */
  word-spacing: -0.1em; /* decreased word spacing */
  line-height: 1.3;
  z-index: 2;
}

.action-link {
  display: block;
  color: #ffffff;
  font-family: "FK Grotesk Neue", "Inter", "Helvetica Neue", sans-serif;
  font-size: 0.6em; /* smaller than main text */
  font-weight: 400;
  letter-spacing: -0.01em;
  word-spacing: -0.1em;
  text-decoration: underline;
  margin-top: 0.09em;
}

.social-icons {
  position: absolute;
  bottom: 4.5em;
  right: 2em;
  display: flex;
  gap: 1em;
  z-index: 2;
}


.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: black;
  border: 3px solid black;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 5px 5px 0 black;
  font-size: 1.1em;
  border-radius: 0;
}

.social-icons a:hover {
  background: black;
  color: white;
  box-shadow: none;
  transform: translate(5px, 5px);
}

.mobile-break {
  display: none;
}

@media (max-width: 900px) {
  .mobile-break {
    display: inline;
  }
}

@media (max-width: 768px) {
  .hero-container {
    margin: -1em 0.5em 0 0.5em;
  }
  
  .social-icons {
    top: 1.5em;
    bottom: auto;
    right: 0.5em;
  }

  /* Reduce section padding on mobile */
  .mission-section {
    margin: 2em 0.5em;
    padding: 0 0.5em;
  }

  .models-section {
    margin: 2em 0.5em !important;
    padding: 0 0.5em !important;
  }

  .preorder-section {
    margin: 2em 0.5em;
    padding: 0 0.5em;
  }

  .team-section {
    margin: 2em 0.5em;
    padding: 0 0.5em;
  }

  /* Reduce video overlay padding */
  .video-overlay {
    bottom: 2em;
    left: 0.5em;
    right: 0.5em;
  }

  /* Models section mobile optimization */
  .models-container {
    flex-direction: column;
    gap: 1em;
    padding: 0;
  }

  .models-left {
    padding: 0 0.5em !important;
  }

  .models-right {
    padding: 0 0.5em !important;
  }

  .demo-container-new {
    margin: 0;
  }

  .models-heading {
    font-size: 1.6em;
    margin-bottom: 0.5em;
  }

  .models-description {
    font-size: 1em;
    margin: 0 0 1em 0;
  }
  
  
  .mission-container {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
.mission-heading {
    margin-top: 1em;
  }
  
  .mission-title {
    font-size: 2.2em;
  }
  
  .team-heading {
    margin-top: 1em;
  }
  
  .label-without {
    margin-left: 5em;
  }
  
  .label-with {
    margin-right: -1em;
  }
  
  .team-right p {
    font-size: 1.1em;
  }
  
  .camera-container {
    gap: 1.5em;
  }
  
  .camera-heading {
    font-size: 1.6em;
  }
  
  .camera-image {
    max-width: 400px;
  }
  
  .demo-section {
    padding: 0 1em;
  }
  
  .video-wrapper {
    max-width: 100%;
  }
  
  .video-labels {
    font-size: 0.9em;
  }
  
  .video-overlay {
    font-size: 1.6em;
    bottom: 1em;
  }
  
  .mobile-break {
    display: inline;
  }

  .preorder-container {
    grid-template-columns: 1fr;
    gap: 2em;
    text-align: left;
  }
  
  .preorder-container {
    display: flex;
    flex-direction: column;
  }
  
  .preorder-left {
    order: 1;
  }
  
  .preorder-btn {
    order: 2;
    margin: 1em auto 0;
    display: block;
    width: fit-content;
  }
  
  .preorder-right {
    order: 3;
    margin-top: 2em;
  }

  .preorder-title {
    font-size: 2em;
  }

  .pricing {
    justify-content: center;
  }

  .stripe-modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .stripe-form {
    padding: 1.5em;
  }
  
  .product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    text-align: left;
  }
  
  .checkout-image {
    width: 80px;
    height: 80px;
    align-self: center;
  }
  
  .product-details {
    width: 100%;
    text-align: center;
  }

  .card-row {
    flex-direction: column;
    gap: 0.5em;
  }

  .form-input.half {
    width: 100%;
  }

  .models-demo-container {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  
  .models-left {
    padding: 0 0 !important;
  }
  
  .models-right {
    transform: none;
    padding: 0 0.5em !important;
  }
  
  .models-title {
    font-size: 2.2em;
  }
  
  .models-description {
    font-size: 1em;
    margin: 0 0 1em 0;
    padding: 0 0;
  }

  .nav-links li {
    display: none;
  }

  .preorder-section {
    margin-top: 5em;
  }

  .logo-link h1 {
    font-size: 1.8em;
  }

  header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7em 1em;
  }

  .logo-link {
    justify-content: center;
  }

  nav {
    display: none;
  }

  .nav-links {
    justify-content: flex-end;
    margin-top: 0;
  }

  .nav-links .standard-button {
    border: 1px solid white;
    font-size: 0.8em;
    padding: 0.6em 1em;
    white-space: nowrap;
    min-width: fit-content;
  }
}