*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #000000;
  color: rgba(255, 255, 255, 0.65);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: #FF9500;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.site-header__name:hover {
  text-decoration: none;
  opacity: 0.8;
}
.site-header__nav {
  display: flex;
  gap: 24px;
}
.site-header__nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.site-header__nav a:hover {
  color: #ffffff;
  text-decoration: none;
}

.hero {
  padding: 96px 0 80px;
  text-align: center;
}
.hero .app-icon {
  margin-bottom: 28px;
}
.hero .app-icon img {
  border-radius: 26px;
  width: 120px;
  height: 120px;
}
.hero__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero__tagline {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 40px;
}

.app-store-wrap {
  display: flex;
  justify-content: center;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
}
.app-store-badge--soon {
  cursor: default;
  opacity: 0.5;
  flex-direction: column;
  gap: 2px;
}
.app-store-badge .badge-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.app-store-badge .badge-store {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.app-store-badge img {
  display: block;
}

.section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.section__heading {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.img-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.img-placeholder--icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  margin: 0 auto;
}
.img-placeholder--phone {
  width: 180px;
  height: 360px;
  border-radius: 32px;
  margin: 0 auto;
}
.img-placeholder--watch {
  width: 160px;
  height: 192px;
  border-radius: 40px;
  margin: 0 auto;
}

.screenshot-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.screenshot-row--watch {
  margin-bottom: 48px;
}

.screenshot {
  display: flex;
  justify-content: center;
}
.screenshot--phone img {
  display: block;
  width: 220px;
  height: auto;
  border-radius: 36px;
  border: 6px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 48px rgba(0, 0, 0, 0.6);
}
.screenshot--watch img {
  display: block;
  width: 160px;
  height: auto;
  border-radius: 20px;
  border: 6px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 48px rgba(0, 0, 0, 0.6);
}

.features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-top: 40px;
}
@media (max-width: 540px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.feature-item__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.watch-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.watch-feature {
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.watch-feature__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.watch-feature__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  max-width: 560px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #FF9500;
}

.btn-submit {
  align-self: flex-start;
  background: #FF9500;
  border: none;
  border-radius: 10px;
  color: #000;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  transition: opacity 0.15s;
}
.btn-submit:hover {
  opacity: 0.85;
}

.contact-fallback {
  margin-top: 24px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__nav {
  display: flex;
  gap: 20px;
}
.site-footer__nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__nav a:hover {
  color: #ffffff;
  text-decoration: none;
}

.page-content {
  padding: 64px 0 80px;
}
.page-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.page-content .page-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
}
.page-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 40px 0 10px;
}
.page-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.page-content ul {
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.page-content ul li {
  margin-bottom: 4px;
}
.page-content a {
  color: #FF9500;
}

/*# sourceMappingURL=style.css.map */